Powershell how to get acls from files/directories recursively also including "[" or "]"

60.3k Views Asked by At

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  
4

There are 4 best solutions below

5
On

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:

$PSPath = (Convert-Path $folder.pspath)

To this:

$PSPath = (Convert-Path -LiteralPath $folder.pspath)

Also, change the Get-Acl -path to Get-Acl -LiteralPath so it looks like this:

Get-Acl -LiteralPath $PSPath | Format-List -property AccessToString | Out-File -append "C:\Powershell\Results\$filename"

If you don't have PowerShell Version 3.0 (where Get-Acl added -LiteralPath support), you can use Get-Item as a workaround:

$item = Get-Item -LiteralPath $PSPath
$item.GetAccessControl() | Format-List -property AccessToString | Out-File -append "C:\Powershell\Results\$filename"

For more information see this article: LiteralPaths

0
On

get-acl support for literalpath wasn't added until Powershell V3.

If you're stuck using an earlier version and for whatever reason can't upgrade to V3, go with @HAL9256 suggestion for convert-path but for the get-acl part this should work instead:

((Get-Item -LiteralPath $PSPath).GetAccessControl()).AccessToString | Out-File -append "C:\Powershell\Results\$filename"
0
On

I made a slight change to @peter's one-liner. it speeds it up quite a bit:

Get-Childitem "C:\windows\temp" -folder -recurse | get-acl | Export-CSV "c:\temp\output.csv" -notype -append

1
On

I'm not sure this does 100% the same thing but I'm using the following one-liner

get-childitem "C:\windows\temp" -recurse | get-acl | Format-List | Out-File "c:\temp\output.txt"