我希望将“Print Screen”键发送到应用程序。最好使用Powershell。
我不想捕捉屏幕!
我尝试使用像这样的SendKeys()方法
$shell = New-Object -Com wscript.shell
$shell.SendKeys('{PRTSC}')
但是这篇MSDN文章[0]指出,“打印屏幕”无法使用SendKeys功能发送到应用程序,即使在尝试它之后也无效。
有没有办法将此密钥发送到应用程序?
[0] https://msdn.microsoft.com/en-us/vba/language-reference-vba/articles/sendkeys-statement