I wish to send the "Print Screen"-key to an application. Preferably using Powershell.
I do not wish to capture the screen!
I tried using the SendKeys() method like this
$shell = New-Object -Com wscript.shell
$shell.SendKeys('{PRTSC}')
but this MSDN article states, that "Print Screen" cannot be sent to an application using the SendKeys function and even after trying it did not work.
Is there a way to send this key to an application?