Summary: Learn how to use Windows PowerShell 3.0 to identify the zone information of files in a folder.
How can I use Windows PowerShell 3.0 to see which files in a folder have a Zone.Identifier alternate data stream so I can find files that came from the Internet?
Use the Get-Item cmdlet, specify the path for the files, and specify the Zone.Identifier name for the –Stream parameter:
Get-Item c:\fso\* -Stream zone*
Note The –Stream parameter accepts wildcard characters, so you do not have to type the entire Zone.Identifier string.