Created
March 26, 2009 14:13
-
-
Save ino46/86119 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dim objWshShell | |
Set objWshShell = WScript.CreateObject("WScript.Shell") | |
objWshShell.Run "control.exe javacpl.cpl" | |
Do Until objWshShell.AppActivate("java コントロールパネル") | |
WScript.Sleep 1000 | |
Loop | |
objWshShell.SendKeys "{LEFT}" | |
WScript.Sleep 500 | |
objWshShell.SendKeys "{TAB}" | |
WScript.Sleep 500 | |
objWshShell.SendKeys "{DOWN 10}" | |
WScript.Sleep 500 | |
objWshShell.SendKeys "{RIGHT}" | |
WScript.Sleep 500 | |
objWshShell.SendKeys "{DOWN 2}" | |
WScript.Sleep 500 | |
objWshShell.SendKeys "^ " | |
WScript.Sleep 500 | |
objWshShell.SendKeys "~" | |
WScript.Quit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment