VBS运行sendKeys命令到systempropertiesprotection菜单

时间:2017-01-13 23:44:13

标签: vbscript sendkeys

我试图让vbs打开“系统属性保护”窗口。然后运行Sendkeys命令以配置按钮。该脚本打开系统属性保护罚款。但同样没有得到sendkeys发送到。回音框会弹出。但是,没有看到转到配置按钮并打开它。我希望有人可以帮助我。看起来脚本没有访问系统属性保护窗口。

 Option Explicit
 Dim WshShell:Set WshShell=CreateObject("Wscript.Shell")
 WshShell.run "systempropertiesprotection"
    Wscript.Sleep 1000
    WshShell.SendKeys ("{tab}")
    WshShell.SendKeys ("{tab}")
    WshShell.SendKeys ("{~}")
    Wscript.echo "Open"
Wscript.quit

1 个答案:

答案 0 :(得分:0)

尝试从管理命令提示符运行脚本。

运行:

set s=createobject("wscript.shell")
s.run "systempropertiesprotection"
wscript.Sleep 500
s.sendkeys("{tab} 2")
s.sendkeys("{ }")

......以这种方式推出时对我有用。