复制以下内容保存为VBS脚本,如583go.vbs 万象解锁密码填入在引号里,Password替换成解锁密码。并设置开机启动就可以自动解锁。 SetoShell=CreateObject("Wscript.Shell")Wscript.Sleep10000oShell.SendKeys" ...
复制以下内容保存为VBS脚本,如583go.vbs 万象解锁密码填入在引号里,Password替换成解锁密码。并设置开机启动就可以自动解锁。
Set oShell=CreateObject("Wscript.Shell")
Wscript.Sleep 10000 oShell.SendKeys "{F3}" Wscript.Sleep 3000 oShell.SendKeys "Password" // 你的万象管理密码(请保留双引号) Wscript.Sleep 3000 oShell.SendKeys "{Enter}" Set oShell = Nothing WScript.Quit |