First delete it as you normally do, after you do that it will be moved to the “Deleted Accounts Store”
To see all the users and object that is in this store, log on to your tenant and click on users under management, then click the Deleted on top of the users page that opens.
You can also get a list from PowerShell by typing Get-MsolUser –ReturnDeletedUsers
From this page you can now restore users and rooms that are deleted.
But while the accounts are in this store they are still visible in the address list, and if its lets say a room that you just created and spelled wrong, so you removed it.
It will still show in the Rooms list and people will try to book it.
So how do we delete object from this list?
Well in the web portal there is only one option: to restore. So we need to look at PowerShell which is the only way to remove them as of now.
So start the
And type in
Remove-MsolUser -UserPrincipalName “Gf94d55cf329b43@yourdomain.onmicrosoft.com” –RemoveFromRecycleBin
You can do a Get-MsolUser –ReturnDeletedUsers first and then just copy paste the UPN
Then just answer yes on the confirmation and the account is removed.
A note here that got me failing first is that the -RemoveFromRecycleBin is a new command and if you don’t see it when you tab for the autocomplete you have the old PowerShell module, and need to install the new one. (The newest module can always be found here http://onlinehelp.microsoft.com/en-us/office365-enterprises/ff652560.aspx )
Note: