Quick tip: Saving PowerShell cmdlet output to the clipboard

If you are a PowerShell user, you probably are a big fan of the export-csv when you need to create a CSV file. We can use the same principles to copy the output content of any given PowerShell cmdlet output to the clipboard automatically. You can also move the output of a PowerShell cmdlet to the clipboard directly by adding | clip at the end of your cmdlet.

We can start simple, and get a list of all .exe files from the Windows folder and we are going to list their names and date of creation, as follows:

PowerShell cmdlet to the clipboard

Now, if we add the | clip at the end, we can open notepad and just paste (Ctrl +V), as depicted in the image below. Note that when using clip there is no output in the PowerShell session.

PowerShell cmdlet to the clipboard
Pretty neat, right? This should give you some ideas on how to use this tip in your day-to-day duties.

Featured image: Pixabay / TechGenix Illustration

About The Author

Leave a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Scroll to Top