Active Directory UserAccountControl Details Reference: https://support.microsoft.com/en-us/help/305144/how-to-use-useraccountcontrol-to-manipulate-user-account-properties Continue reading “Active Directory UserAccountControl Details”…
Server 2019 Domain Controller Replication – Unlucky Timing Take a domain running multiple versions of Windows domain controllers across multiple AD sites and replicating just fine, add Server… Continue reading “Server 2019 Domain Controller Replication – Unlucky Timing”…
Domain Controller Granular Event Log Delegation So you’ve combed through 7 year old TechNet forum posts, cursed the limitations of Event Log Readers group when trying… Continue reading “Domain Controller Granular Event Log Delegation”…
Powershell Dynamic Menu from Object Array Ya know what grinds my gears? Getting a CSV of employees without a unique key column – no samaccountname, UPN,… Continue reading “Powershell Dynamic Menu from Object Array”…
Get AD Group Member Details from Trusted Domains The vast majority of active directory powershell cmdlets don’t need any enhancement but there is one in particular that I felt… Continue reading “Get AD Group Member Details from Trusted Domains”…
Add Parent OU in DN and CN Path Format Using Regex Match Yet another solution for grabbing Parent OU paths $userArr = Get-ADuser -f * -prop CanonicalName foreach($user in $userArr) { if($matches){$matches.Clear()}… Continue reading “Add Parent OU in DN and CN Path Format Using Regex Match”…
Discover Circular AD Group Memberships Might as well have a recursive function in the first post eh? I stumbled across this script to discover circular Active… Continue reading “Discover Circular AD Group Memberships”…