If you like me want to clear BPA errors and you get this on your AD-server:
Title:
All OUs in this domain should be protected from accidental deletionSeverity
WarningDate:
2013-05-21 06:16:50Category:
ConfigurationProblem:
Some organizational units (OUs) in this domain are not protected from accidental deletion.Impact:
If all OUs in your Active Directory domains are not protected from accidental deletion, your Active Directory environment can experience disruptions that might be caused by accidental bulk deletion of objects.Resolution
Make sure that all OUs in this domain are protected from accidental deletion.
Just do:
Get-ADObject -Filter ‘ObjectClass -eq “organizationalUnit”‘ | Set-ADObject -ProtectedFromAccidentalDeletion $true
Easy ![]()

