I would like to automate the WindowsKey + E (which opens up Windows Explorer) and place the script into an .exe file. Is this possible??

Can I automate the WindowsKey + E
Started by
Lenny
, Mar 14 2004 08:19 PM
1 reply to this topic
#1
-
Posted 14 March 2004 - 08:19 PM

You can only override Win-E if you're using Windows NT/2000/XP+. It's done this way:
#e::
MsgBox, Key is overridden.
return
If you put the above into a file that ends in .ahk, you can then right-click the file and choose "Compile Script" to make it into an EXE.
#e::
MsgBox, Key is overridden.
return
If you put the above into a file that ends in .ahk, you can then right-click the file and choose "Compile Script" to make it into an EXE.
#2
-
Posted 14 March 2004 - 08:49 PM
