如何通过Powershell为所有用户启用OU的固有权限

时间:2016-07-25 18:25:04

标签: powershell active-directory

OU中的某些成员已禁用继承。我怎样才能在Powershell中做到这一点?这是GUI窗口,如果它有助于我想要问... enter image description here

1 个答案:

答案 0 :(得分:1)

要在屏幕截图上自动显示该按钮,请输入代码from there

Function Set-Inheritance { 
    param($ObjectPath) 
    $ACL = Get-ACL -path "AD:\$ObjectPath"
    If( $acl.AreAccessRulesProtected ){ 
        $ACL.SetAccessRuleProtection( $False, $True )
        Set-ACL -AclObject $ACL -path "AD:\$ObjectPath"
        Write-Host "MODIFIED "$ObjectPath
    } #End IF 
 } #End Function Set-Inheritance