Skip to content

Instantly share code, notes, and snippets.

@gravejester
Last active August 29, 2015 14:07
Show Gist options
  • Save gravejester/c1a426f1cd7d1d23a376 to your computer and use it in GitHub Desktop.
Save gravejester/c1a426f1cd7d1d23a376 to your computer and use it in GitHub Desktop.
Send text to clipboard
function Out-ClipboardText {
[CmdletBinding()]
param (
[Parameter(ValueFromPipeline,Mandatory, Position = 0)]
[string] $Text
)
Add-Type -AssemblyName 'PresentationCore'
[System.Windows.Clipboard]::SetText($Text)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment