如何将“打印屏幕”键发送到应用程序?

时间:2018-05-29 17:28:36

标签: windows powershell keystroke

我希望将“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

0 个答案:

没有答案