To inspect Windows Clipboard in PowerShell, first gain access to the Clipboard
class.
Add-Type -AssemblyName System.Windows.Form
To list all the format:
[System.Windows.Forms.Clipboard]::GetDataObject().GetFormats($false)
To inspect Windows Clipboard in PowerShell, first gain access to the Clipboard
class.
Add-Type -AssemblyName System.Windows.Form
To list all the format:
[System.Windows.Forms.Clipboard]::GetDataObject().GetFormats($false)