if I do run (Winkey + R) and type "C:\", explorer shows up in "C:\".
I'd like to know how to do the same for the My Computer folder in Windows Vista / 7.
Super User is a question and answer site for computer enthusiasts and power users. It only takes a minute to sign up.
Sign up to join this communityif I do run (Winkey + R) and type "C:\", explorer shows up in "C:\".
I'd like to know how to do the same for the My Computer folder in Windows Vista / 7.
You could just press WIN+E and skip the run prompt all together.
The easiest way is to type shell:mycomputerfolder
or Win+E
shell:mycomputerfolder
will not start mycomputerfolder
if it's already open. On the other hand pressing win+e
will open mycomputerfolder
as many times as you press it.
– IGRACH
Sep 19 '16 at 10:41
start shell:mycomputerfolder
raises an existing File Explorer window showing "This PC" as @IGRACH suggested. But both explorer shell:mycomputerfolder
and start explorer shell:mycomputerfolder
open a new window even if "This PC" is already open.
– john v kumpf
Aug 1 '19 at 17:42
Try :
explorer.exe /e,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}
HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}
(look at the sub-keys). For the grand-daddy of them all, use Explorer to create a folder called ControlPanel.{ED7BA470-8E54-465E-825C-99712043E01C}
, then look inside.
– harrymc
Jan 4 '11 at 11:45
The closest I can think of is typing the below into the run dialog;
...
But I believe that only brings up your home folder.
.
always means the current directory, and ..
its parent. Three or more dots has no special meaning; however, since Windows API normally strips off the trailing dots from a filename (foo.bar.
automatically becomes foo.bar
), some programs treat ...
the same way as ..
, and others strip off all dots resulting in empty path.
– user1686
Jan 4 '11 at 13:38
The easiest way:
explorer =
and My Computer window will pop upexplorer c:
and the C drive window will open.This is working fine on Windows 7.
This one
explorer /root,
Yes, the comma is important
I wanted this too, but I've just gotten in the habit of opening the C: drive through the Run dialog then pressing backspace to go up a folder into My Computer.
It's not really the "right" answer but it gets me there in just one additional keystroke so I'm happy with it. Much better than memorizing any GUIDs, anyway.
Try this:
runas /noprofile /user:domain\username explorer
It works for all other command line options as far as I know.