Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Function Out-Clipboard
- {
- param($text)
- Add-Type -AssemblyName System.Windows.Forms
- $tb = New-Object System.Windows.Forms.TextBox
- $tb.Multiline = $true
- if ($Input -ne $null)
- {
- $Input.Reset()
- $tb.Text = $Input | Out-String
- }
- else
- {
- $tb.Text = $text
- }
- $tb.SelectAll()
- $tb.Copy()
- }
Advertisement
Add Comment
Please, Sign In to add comment