I have posted a couple of solutions, one in the
PowerShell forum, and another in the
CMD forum.
Under CMD, you can use
DIR /R to display the alternate data streams of a file.
Under TCC,
DIR /R disables wrap.
To display the alternate data streams of a file in TCC, the switch is
DIR /:
Under TCC, this lists the ADS, but not the parent file name;
Code:
e:\utils>dir /: | find ":$DATA"
339 123.txt:$DATA
72 lll.txt:$DATA
26 Zone.Identifier:$DATA
89 Zone.Identifier:$DATA
Under CMD, it does return the parent file name;
Code:
e:\utils>dir /r | find ":$DATA"
339 ll.btm:123.txt:$DATA
72 ll.btm:lll.txt:$DATA
26 sysutils64.dat:Zone.Identifier:$DATA
89 TcpLogView.chm:Zone.Identifier:$DATA
Joe