Many of us are using Remote Desktop nowadays. As such, clipboard can sometimes be out of sync when RDP is nested between many hosts. Therefore, we need a quick method to clear clipboard to resolve certain conditions.
Method 1: Set Null as value for the clipboard program
1
|
echo $null | clip.exe |
Method 2: Use DotNet assembly to access clipboard’s Clear() method
1
2
|
Add-Type -AssemblyName System.Windows.Forms [System.Windows.Forms.Clipboard] ::Clear() |
Categories:
Gary
$null | & $env:windir\System32\clip.exe
kimconnect
Thanks for the correct command