PowerShell: How to Properly Delete a Msol User Account
# Set the user ObjectID attribute variable$msolUser="6f2fcfcd-...."# Move user account to Recycle BinRemove-MsolUser -ObjectId $msolUser#…
0 Comments