PowerShell 3 introduced one of my favorite Cmdlet, Out-Gridview. It allows you to pipe your output to a GUI where you can sort, and add criteria to limit what is displayed. But you can’t use CTRL-C to copy the results. Frustrated? There is an easy answer:
gwmi Win32_Process | Out-GridView -PassThru | clip
By using Out-Gridview -PassThru | Clip you get an OK button where the selected results are piped to your clipboard.