I'm trying to write up a quick little script that sends the key combination for the "green button" in all Windows Media Center Edition setups.
The combination is, interestingly enough, [WIN] + [ALT] + [ENTER].
I tried using SendKeys(), but had no luck locating the windows key... is this key combination even possible to perform using a script? Basically I was trying this code in hopes that it can be done painlessly, but had no such luck.
Code:dim oShell set oShell= Wscript.CreateObject("Wscript.shell") oShell.SendKeys "{ ......................? }" WScript.Sleep 100




Reply With Quote