Skip to content

Instantly share code, notes, and snippets.

@luser
Created December 20, 2016 14:10
Show Gist options
  • Save luser/da5ce7e12c6a9591f1a7e9d111743036 to your computer and use it in GitHub Desktop.
Save luser/da5ce7e12c6a9591f1a7e9d111743036 to your computer and use it in GitHub Desktop.
# Get Windows clipboard contents
/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe -command "Add-Type -AssemblyName 'System.Windows.Forms'; [Windows.Forms.Clipboard]::GetText()"
# Set Windows clipboard contents
/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe -command "Add-Type -AssemblyName 'System.Windows.Forms'; [Windows.Forms.Clipboard]::SetText('abc')"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment