Active_Directory_Scripts
Active_Directory_Scripts copied to clipboard
FindandFixADObjectswithStaleAdminSDHolder.ps1 re-queries each admin group for every flagged object
Every group in $default_admin_groups are queried via Get-ADGroup for every flagged object in the domain. As a result, with large numbers of admin groups and/or flagged objects, this can take a very long time to run.
It would be more efficient to pull all members of those admin groups into a collection of some sort and that collection queried for presence of the flagged object vs a new call to Get-ADGroup each time.