2016-02-12 52 views
0

我與Active Directory測試PowerShell中刪除所有的OU, 已經在特定域中創建OU的名單,但無法從廣告中移除所有的OU,要刪除所有OU除從公元建下面 是我使用的腳本,但它使用給denied- 權限的管理員ID如何從AD通過PowerShell的

Get-ADOrganizationalUnit -Filter {Name -notlike "Domain Controllers"} -SearchBase (Get-ADDomain).Distinguishedname -SearchScope OneLevel | Remove-ADOrganizationalUnit -Recursive -Confirm:$false 
+0

這可能更適合ServerFault。 – Matt

+0

我有我要求serverfault多了一個查詢,如何移動這個問題那邊 – Vino

回答

0

OU的默認保護,則必須在刪除之前刪除標誌:

Set-ADObject -ProtectedFromAccidentalDeletion $false