I have the script below working for most of the files and folders but is not working for files and folders with "[" "]"
#Set variables
$path = $args[0]
$filename = $args[1]
$date = Get-Date
#Place Headers on out-put file
$list = "Permissions for directories in: $Path"
$list | format-table | Out-File "C:\Powershell\Results\$filename"
$datelist = "Report Run Time: $date"
$datelist | format-table | Out-File -append "C:\Powershell\Results\$filename"
$spacelist = " "
$spacelist | format-table | Out-File -append "C:\Powershell\Results\$filename"
#Populate Folders Array
[Array] $folders = Get-ChildItem -path $path -force -recurse
#Process data in array
ForEach ($folder in [Array] $folders)
{
#Convert Powershell Provider Folder Path to standard folder path
$PSPath = (Convert-Path $folder.pspath)
$list = ("Path: $PSPath")
$list | format-table | Out-File -append "C:\Powershell\Results\$filename"
Get-Acl -path $PSPath | Format-List -property AccessToString | Out-File -append "C:\Powershell\Results\$filename"
"-----------------------" | Out-File -FilePath "C:\Powershell\Results\$filename" -Append
} #end ForEach
The problem is with the
Convert-Path
cmdlet trying to "interpret" the path including the square brackets which it "interprets" as wildcard characters. Instead you want to have it use the literal path.Change this line:
To this:
Also, change the
Get-Acl -path
toGet-Acl -LiteralPath
so it looks like this:If you don't have PowerShell Version 3.0 (where Get-Acl added -LiteralPath support), you can use Get-Item as a workaround:
For more information see this article: LiteralPaths