raandree / NTFSSecurity

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.
MIT License
431 stars 61 forks source link

Proposed Solution to #36 #37

Closed AspenForester closed 6 years ago

AspenForester commented 6 years ago

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.

AspenForester commented 6 years ago

Both recorded commits are the exact same change, I accidentally misidentified the issue, and thought I had removed the references to 937c9c3.

raandree commented 6 years ago

Thank for correcting this!