I know that to display alternate data streams of all the files (if any) in command prompt, this is the command dir /R
. But, how do I do it if I only want to display files that have alternate data streams?
dir /s /r | find ":$DATA"
or
dir /r | find ":$DATA"
the first will search in all sub-directories.The second only in current folder. These will show also the ADS assigned to the directory.For only files:
dir /a-d /s /r | find ":$DATA"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With