active directory

  • Welcome to ITBible, we're your #1 resource for enterprise or homelab IT problems (or just a place to show off your stuff).
  1. WizardTux

    PowerShell Enable AD Recycle Bin

    This was quick and dirty / probably needs some more work I'll add it to GitHub later. Import-Module ActiveDirectory if ((Get-ADOptionalFeature -Identity 'Recycle Bin Feature').EnabledScopes) { Write-Host "AD Recycle Bin Enabled" } else { try { $domain = Get-WmiObject...
  2. WizardTux

    PowerShell Hard Link AD Sync User

    The process of hard linking AD objects to AAD objects for when you get errors during an AD Sync. On the domain controller run: Get-ADUser username | Select-Object UserPrincipalName, objectGUID, @{Name = 'ImmutableID'; Expression = {...
  3. WizardTux

    Partner Content AD for Beginners