Hi,
i want use this command options for all search
i want use only es Mysearch and add options
how can i do ?.
i don't found options command line in everything.ini
this is my command line
es -size -dm -sizecolor 9 -dmcolor 6 -name -name-color 11 -path-column -path-color 1 MYSEARCH
command line options auto
Re: command line options auto
Option 1:
ES has a -save-settings option.
This command will save your settings in ES.ini
From then on you can do ES.exe mysearch1 and ES.exe mysearch2
To remove these settings: (or delete ES.ini)
ES /? For more info: https://www.voidtools.com/support/every ... interface/ or ES /?
Option 2:
Create a batchfile MySearch.cmd:
Start with: mysearch mysearch1 or mysearch mysearch2
ES has a -save-settings option.
This command will save your settings in ES.ini
Code: Select all
es.exe -size -dm -sizecolor 9 -dmcolor 6 -name -name-color 11 -path-column -path-color 1 -save-settings
To remove these settings:
ES.exe -clear-settings
ES /? For more info: https://www.voidtools.com/support/every ... interface/ or ES /?
Option 2:
Create a batchfile MySearch.cmd:
Code: Select all
es.exe -size -dm -sizecolor 9 -dmcolor 6 -name -name-color 11 -path-column -path-color 1 %*
-
- Posts: 2
- Joined: Tue Jul 14, 2020 4:19 pm
Re: command line options auto
You're the best