How to start Windows Explorer with a Drive letter?http://www.autohotkey.com/forum/viewtopic.php?p=53455#53455This was my first post in
Scripts section :
If you hate Win+E to start Windows ExplorerThe following code assigns
26 Hotkeys to all
26 drives.
The "Drive Letter" should be prefixed with
Shift+Win Modifier.
This code opens "
CabinetWClass" Explorer Window for a particular drive
Code:
Loop 26
HotKey % "+#" Chr(A_Index+64), ExploreDrive
Return
ExploreDrive:
StringRight Drv,A_THISHOTKEY,1
ifExist %Drv%:\
Run %Drv%:\
else
Msgbox 16,[HotKey for Drive %Drv%],%Drv%: is NOT Accessible!,5
Return
- Credit: The above is the simplified code of my original version and was posted by Laszlo. His Post.