Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save varunchandak/8d8fe34dbac5c3dc0e8671aacf171683 to your computer and use it in GitHub Desktop.
Save varunchandak/8d8fe34dbac5c3dc0e8671aacf171683 to your computer and use it in GitHub Desktop.
create permanently delete user in powershell
Connect-MsolService

New-MsolUser -DisplayName "User Name" -FirstName User -LastName Name -UserPrincipalName [email protected]

get-msoluser -UserPrincipalName [email protected] | select *immutableid*

set-MsolUser –UserPrincipalName [email protected] -ImmutableId "[email protected]"

get-msoluser -UserPrincipalName [email protected] | select *immutableid*

set-MsolUserPrincipalName -UserPrincipalName [email protected] -NewUserPrincipalName [email protected]

get-msoluser -UserPrincipalName [email protected] | select *immutableid*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment