使用Powershell打开开始菜单


1

我目前正致力于业务流程自动化软件,并且机器人可以模拟用户行为。我需要将一些信息传递给我的Windows 7的开始菜单,我想知道是否可以使用powershell脚本打开Windows开始菜单?由于机器人可以理解打开powershell的信息。请任何建议都很好。

Answers:


2

是的,有可能使用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}")  

2
转换为powershell: $wShell = New-Object -ComObject "wscript.shell"; $wShell.SendKeys("^{ESC}")
Lieven Keersmaekers

2
或缩短为 (New-Object -ComObject "wscript.shell").SendKeys("^{ESC}")
Lieven Keersmaekers

@LievenKeersmaekers你应该把它作为一个答案(简要说明它正在做什么)。 :)
Ƭᴇcʜιᴇ007
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.