-sort-ascending -sort-descending only apply to the name field.

Found a bug in "Everything"? report it here
yahuu
Posts: 27
Joined: Wed Jul 24, 2024 9:56 am

-sort-ascending -sort-descending only apply to the name field.

Post by yahuu »

The following commands did not take effect:

Everything.exe -nomaximized -newwindow -sort-ascending Path
Everything.exe -nomaximized -newwindow -sort-descending Path
Everything.exe -nomaximized -newwindow -sort-ascending "Run Count"
Everything.exe -nomaximized -newwindow -sort-descending "Run Count"
void
Developer
Posts: 19899
Joined: Fri Oct 16, 2009 11:31 pm

Re: -sort-ascending -sort-descending only apply to the name field.

Post by void »

-sort-ascending/-sort-descending do not take parameters.

Please try the following:

Code: Select all

Everything.exe -nomaximized -newwindow -sort Path -sort-ascending
Everything.exe -nomaximized -newwindow -sort Path -sort-descending
Everything.exe -nomaximized -newwindow -sort "Run Count" -sort-ascending
Everything.exe -nomaximized -newwindow -sort "Run Count" -sort-descending
-or-

Code: Select all

Everything.exe -nomaximized -newwindow -sort path-ascending
Everything.exe -nomaximized -newwindow -sort path-descending
Everything.exe -nomaximized -newwindow -sort run-count-ascending
Everything.exe -nomaximized -newwindow -sort run-count-descending


-sort
-sort-ascending
-sort-descending
yahuu
Posts: 27
Joined: Wed Jul 24, 2024 9:56 am

Re: -sort-ascending -sort-descending only apply to the name field.

Post by yahuu »

Thanks a lot.