I often use Win+E to pop up Windows Explorer, then I usually have to navigate down into a few network folders to find my primary directory. Is there a way to set this folder as the default so that W.E. always opens to this folder?
|
|
|||
|
|
|
|
edit the following registry subkey:
If you change this subkey's default value to [ExploreFolder("yourNetworkDrive", yourNetworkDrive, %S)], you force Windows Explorer to start at the drive you specify. Replace yourNetworkDrive with the drive you want. if the drive is mapped as S:, the string would be: [ExploreFolder("S:\", S:\, %S)]. To present a single-pane Windows Explorer view, you can change ExploreFolder to ViewFolder. |
||
|
|
|
To change the default setting so that all top–level drives and folders are shown, follow these steps: 1.Click Start, point to Programs, then Accessories, then right–click Windows Explorer, and click Properties. 2.Under Target field, which reads 3.Click OK. |
||||
|
|
|
I actually use a utility called WinKey to do something similar to this, without rerouting Win+E. I'm sure AutoHotkey could do the same thing. In fact, having said that, I think I just made some work for myself. :) In WinKey (or soon, in AutoHotkey) I mapped Win+W to open a Windows Explorer window rooted at my standard "workspace" (thus, +W). This way I retain the standard Win+E, which I also use extensively, and right beside it is the hotkey to open my workspace. OK, work's done. Here's a simple AutoHotkey script I'm now using for Win+w to open my workspace:
The command's commas are escaped with a backquote. Replace C:\workspace\ with whatever folder you want to view. Replace "/root" with "/select" if you want two-pane instead of single-pane. |
|||
|
|
