|
CmdHere
CmdHere is just a .reg file that adds an
entry to Windows Explorer's shortcut menu for files and folders (local
and remote). Selecting this option opens a console window with the same
path as that of the file or folder.
|
cmdhere.reg
|
Screenshot
|
REGEDIT4
[HKEY_CLASSES_ROOT\*\shell\cmdhere]
@="Cmd&Here"
[HKEY_CLASSES_ROOT\*\shell\cmdhere\command]
@="cmd.exe /c start cmd.exe /k pushd \"%L\\..\""
[HKEY_CLASSES_ROOT\Folder\shell\cmdhere]
@="Cmd&Here"
[HKEY_CLASSES_ROOT\Folder\shell\cmdhere\command]
@="cmd.exe /c start cmd.exe /k pushd \"%L\""
|
|
Here's a tip from Alexander:-
So a non-privileged user can apply it, replace 'HKEY_CLASSES_ROOT' with
'HKEY_CURRENT_USER\Software\Classes' |
|