I seem to be able to exclude any map with powershell using the following command:
Get-ChildItem -Path $folder -Exclude windows,program files -Recurse |
where {$_.Attributes -match 'Directory'} |
ForEach-Object {$_.FullName} > $search_pro
not Program Files (86)
though? any thoughts on why this is.
thank you in advance
I typed the full name of the map but it refused.