Skip to content

Commit 2230dde

Browse files
committed
Fix warning.
1 parent b039f86 commit 2230dde

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Windows/Get-FSEffectiveAccess.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ function Get-FSEffectiveAccess {
6161
}
6262
}
6363
} | # Non-inherited rules take precedence over inherited rules and Deny over Allow
64-
Sort-Object FileSystemRights, IsInherited, @{Expression = { $_.AccessControlType }; Ascending = $false } -Unique |
64+
Sort-Object FileSystemRights, IsInherited, @{
65+
Expression = { $_.AccessControlType }; Ascending = $false
66+
} -Unique |
6567
Group-Object FileSystemRights
6668
$ht = @{}
6769
foreach ($group in $groups) {

0 commit comments

Comments
 (0)