Set-ACL on AD Computer Object

后端 未结 2 629
隐瞒了意图╮
隐瞒了意图╮ 2021-01-03 04:50

I am attempting to Set-Acl on a Computer Object in AD. Firstly I get the ACL using:

$acl = (Get-Acl AD:\\\'CN=Tester1,OU=Ou1,OU=OU2,OU=OU3,DC=Co         


        
2条回答
  •  南笙
    南笙 (楼主)
    2021-01-03 05:30

    ACE for AD objects you must create with System.DirectoryServices.ActiveDirectoryAccessRule object instead of System.Security.AccessControl.FileSystemAccessRule.

    Good description and example is here: Add Object Specific ACEs using Active Directory Powershell

提交回复
热议问题