Managing permissions with PowerShell is only a bit easier than in VBS or the command line as there are no cmdlets for most day-to-day tasks like getting a permission report or adding permission to an item. PowerShell only offers Get-Acl and Set-Acl but everything in between getting and setting the ACL is missing. This module closes the gap.
There are six locations where the Aliases for the "Account" parameter are incorrectly defined as [Alias("IdentityReference, ID")] as detailed in #36 . I've corrected those to be [Alias("IdentityReference", "ID")] making for two aliases, instead of one alias with a strange name.
This PR will give you compatibility in PowerShell 6.1.0 via the WindowsCompatibility module.
There are six locations where the Aliases for the "Account" parameter are incorrectly defined as
[Alias("IdentityReference, ID")]
as detailed in #36 . I've corrected those to be[Alias("IdentityReference", "ID")]
making for two aliases, instead of one alias with a strange name.This PR will give you compatibility in PowerShell 6.1.0 via the WindowsCompatibility module.