Open a file or folder.
Open a path.
Explore a file or folder.
Explore a path.
Changing a command might be useful for opening a third party file browser from Everything.
Total Commander - custom commands
Please share any custom commands here.
Commands can contain any of the following function calls:
$exec(filename)
Opens the specified filename with ShellExecute (as an ITEMIDLIST).
Example: $exec("%1")
$open-path(filename)
Opens the path to the specified filename in the default file browser.
Windows Explorer will also select the specified filename.
Example: $openpath("%1")
$parent(filename)
$path-part(filename)
Returns the path part of the specified filename.
Example: $exec("%SystemRoot%\explorer.exe" "$parent(%1)")
$name-part(filename)
$stem(filename)
Returns the name part (removes the path part and extension) of the specified filename.
$create-process(filename)
Opens the specified filename with CreateProcess.
$explore-in-everything(filename)
Opens the specified filename in the Everything folder sidebar.
$explore-path-in-everything(filename)
Opens the path of the specified filename in the Everything folder sidebar.
$exec-minimized(filename)
Opens the specified filename minimized with ShellExecute.
$exec-maximized(filename)
Opens the specified filename maximized with ShellExecute.
$close()
Close the current Everything window.
$minimize()
Minimize the current Everything window.
$shell-execute(filename)
Opens the specified filename with ShellExecute (as a filename).
$explore(filename)
Opens the specified filename with ShellExecute and the explore verb.
$open(filename)
Opens the specified filename with ShellExecute and the open verb.
%0
%1
The currently selected filename.
$$
A literal $.
$)
A literal ).
Dashes (-) in function names can be omitted.
Environment variables are automatically expanded.
The Everything Preprocessor can be used.
To change one of these actions:
- In Everything, from the Tools menu, click Options.
- Click the Context Menu tab on the left.
- Select an item.
- Set a new Command.
- Click OK.
To restore defaults:
- In Everything, from the Tools menu, click Options.
- Click the Context Menu tab on the left.
- Click Restore Defaults.
- Click OK.
The default commands:
Open (Folders)
$exec("%1")
Open (Files)
$exec("%1")
Open Path
$openpath("%1")
Explore
$exec("%SystemRoot%\explorer.exe" /n,/e,"%1")
Explore Path
$exec("%SystemRoot%\explorer.exe" /n,/e,/select,"%1")