Attributes
Get-ChildItem -Path <path> -Attributes <attributes> -RecurseGet-ChildItem -Path <Path> -File -Recurse | Where-Object { $_.Attributes -match "Attribute" }wmic datafile where Attributes='<attributes>' get Name, FileNameLast updated
Get-ChildItem -Path <path> -Attributes <attributes> -RecurseGet-ChildItem -Path <Path> -File -Recurse | Where-Object { $_.Attributes -match "Attribute" }wmic datafile where Attributes='<attributes>' get Name, FileNameLast updated