How can I search my Windows 7 machine for all files with alternate data streams?

0

I'm interested to see if any files on my system have any ADS (NTFS Alternate Data Stream).

At least the build-in file search on Window 7 Starter doesn't seem to have this option.

Is there a way with standard Win 7 to list all such files? If not what free software should I obtain?

hippietrail

Posted 2012-10-25T08:15:34.753

Reputation: 3 699

1

Software to find all ADS...http://www.nirsoft.net/utils/alternate_data_streams.html

– Moab – 2012-10-25T23:04:01.657

Answers

1

The Microsoft/Sysinternals Streams utility can help you do this easily.

Since dir /r displays ADS, something like dir /r /s | findstr /r "\$" should also display the names of the files with ADS. If the path is also required, I'm sure dir's output can be chopped up appropriately.

Of course, PowerShell should also be able to do this, but I'm not a PS expert.

Karan

Posted 2012-10-25T08:15:34.753

Reputation: 51 857