Hello!
It would be nice to have the option "open command line from here" or similar when right clicking on a result, whether it's a file or folder.
Thanks & best regards
Open command line from here
Re: Open command line from here
You can add a context menu item to open a command prompt for folders by adding the following registry entry:
Save the above as a .reg file and run it.
You can do the same for files with the following:
The option to use additional command line options when running an item from "Everything" is on my "Things to do" list..
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Folder\shell\Command Prompt\command]
@="cmd %1"
You can do the same for files with the following:
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\Command Prompt\command]
@="cmd %1"
-
- Posts: 9
- Joined: Wed Sep 16, 2009 3:11 am
Re: Open command line from here
Thanks David!David wrote:You can add a context menu item to open a command prompt for folders by adding the following registry entry:
Save the above as a .reg file and run it.Code: Select all
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Folder\shell\Command Prompt\command] @="cmd %1"
You can do the same for files with the following:
The option to use additional command line options when running an item from "Everything" is on my "Things to do" list..Code: Select all
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\Command Prompt\command] @="cmd %1"
That's working and is very useful!