Copy and Paste in powershell for automation of tasks

Asked

Viewed 214 times

1

How to Copy and Paste in powershell for automation of tasks

  • Sorry, I was starting at stackoverflow, not a question, but a statement, I will delete the question. kkkk

  • Thank you! I’ll do

1 answer

1



Older computers, with Powershell in an older version than version 5, use:

"Hello World" | clip

Already in version 5 or later, use:

To Copy

Set-Clipboard -Value "Hello World"

Necklace

Get-Clipboard

Browser other questions tagged

You are not signed in. Login or sign up in order to post.