Skip to content

Instantly share code, notes, and snippets.

@cbrherms
Created September 11, 2019 23:20
Show Gist options
  • Save cbrherms/194d96ab57ab97284cb10e8a5917b917 to your computer and use it in GitHub Desktop.
Save cbrherms/194d96ab57ab97284cb10e8a5917b917 to your computer and use it in GitHub Desktop.
Undelete all unsynced (deleted) 365 users
$Users = Get-MsolUser -All -ReturnDeletedUsers ;
$Users | ForEach-Object{Restore-MsolUser -ObjectId $_.ObjectId} ;
$Users | ForEach-Object{Set-MsolUser -ObjectId $_.ObjectId -ImmutableId ""}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment