Answers:
是的,有可能使用a 小VB 。
将此代码复制到记事本中,然后另存为 startmenu.vbs
。 [确保它 不 保存为startmenu.vbs.txt]
set wShell=wscript.createobject("wscript.shell")
wShell.sendkeys "^{ESC}"
Set WshShell = Nothing
然后,你可以运行它 cscript C:\somefilepath\startmenu.vbs
。
(显然,你必须指定保存它的路径)
或者,翻译成一个 电源外壳 解:
$wShell = New-Object -ComObject "wscript.shell"
$wShell.SendKeys("^{ESC}")
哪些可以进一步缩短为:
(New-Object -ComObject "wscript.shell").SendKeys("^{ESC}")
(New-Object -ComObject "wscript.shell").SendKeys("^{ESC}")
$wShell = New-Object -ComObject "wscript.shell"; $wShell.SendKeys("^{ESC}")