command1 | command2Command 2 will be started in its own process. Color information is not passed through (Windows limitation).
Same goes for FOR /F "tokens=1* delims=" %i in ('command2') do ...
Command 2 will be run in its own process.
Instead use the Everything Search Syntax:
Code: Select all
es -parent . count:5 "disk" size:^>10MB -sort sizeAnd instaead of |more , use the built-in -pause:
Code: Select all
es -parent . count:5 -sort size -pause-n 5 vs. count:5
@void:
Suggestion to internally translate -n 5 to count:5 before passing the ES query to Everything.
