Last active
March 23, 2021 19:51
-
-
Save 2XXE-SRA/f97cc86fa40c96ccbabedb4a990018d0 to your computer and use it in GitHub Desktop.
PowerShell function to set a read ACL on an SPN
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# adapted from https://stackoverflow.com/a/6291111 | |
# | |
# TargetObject = account with SPN | |
# $TargeObject = "LDAP://CN=foo,CN=Users,DC=contoso,DC=local" | |
# Identity = identity to be put in ACE | |
# $Identity = [security.principal.ntaccount]"contoso\user" | |
# $Identity = [security.principal.securityidentified]"S-1-1-0" | |
# Deny = deny or allow access | |
Function Set-SpnPermission { | |
param( | |
[adsi]$TargetObject, | |
[Security.Principal.IdentityReference]$Identity, | |
[switch]$Deny | |
) | |
$spnSecGuid = new-object GUID "f3a64788-5306-11d1-a9c5-0000f80367c1" | |
if($Deny){$access = "Deny"} else { $access = "Allow"} | |
$adRight=[DirectoryServices.ActiveDirectoryRights]"ReadProperty" | |
$accessRuleArgs = $identity,$adRight,$access,$spnSecGuid,"None" | |
$spnAce = new-object DirectoryServices.ActiveDirectoryAccessRule $accessRuleArgs | |
$TargetObject.psbase.ObjectSecurity.AddAccessRule($spnAce) | |
$TargetObject.psbase.CommitChanges() | |
return $spnAce | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment