Hello everyone,
I have an OU name. How Can check if specific OU contains Users or Computer Objects,
via LDAP query?
edit:
I should remove an organizational unit if it does not contains users or computer objects
Thanks
Hello everyone,
I have an OU name. How Can check if specific OU contains Users or Computer Objects,
via LDAP query?
edit:
I should remove an organizational unit if it does not contains users or computer objects
Thanks
Assuming this as not a scrip request.
You can use Get-ADObject targeting an OU and use Where-Object to filter by objectcategory.
https://docs.microsoft.com/en-us/powershell/module/addsadministration/get-adobject?view=win10-ps
PS: I’ve posted this without testing.