本帖最后由 Linuxer 于 2014-9-19 12:20 编辑
skey.vbs:- dim wsh
- set wsh=WScript.CreateObject("WScript.Shell")
- wsh.SendKeys "^+%{F6}"
- wsh.SendKeys "^{TAB}"
- wsh.SendKeys "%l"
- wsh.SendKeys "%s"
- wsh.SendKeys "{ENTER}"
复制代码 skey.bat:- @echo off
- start skey.vbs
- exit
复制代码 单独运行VBS也是可以的。 |