Link to home
Start Free TrialLog in
Avatar of alanlam123
alanlam123

asked on

Restore mailbox

How to restore back the delete shared Mallbox by powershell.
Avatar of David Atkin
David Atkin
Flag of United Kingdom of Great Britain and Northern Ireland image

If not visible in EAC please run this command.
Update-StoreMailboxState -Database “Exchange Database Name” -Identity “Mailbox Guid”

Open in new window

If you dont know your mailbox guid. You can update the state of all mailboxes using the below command.
Get-MailboxStatistics -Database “db_name” | ForEach {Update-StoreMailboxState -Database $_.Database -Identity $_.MailboxGuid -Confirm:$False}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of alanlam123
alanlam123

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial