Summary: Use Windows PowerShell to easily send output to the clipboard.
How can I easily capture output from the Windows PowerShell console and send it to the Windows Clipboard
so I can paste it into another program?
The standard Windows utility clip.exe accepts pipeline output, for example:
Get-EventLog application -Newest 1 | clip