Link to home
Start Free TrialLog in
Avatar of thisis_it
thisis_itFlag for Netherlands

asked on

Hosted exchange 2010 bulk export mailbox to pst

Anyone a clue of how to bulk export mailboxes from hosted exchange 2010 sp1 to pst ?

After this process I also want to delete the mailboxes without deleting the user account in active directory.
Avatar of djcanter
djcanter
Flag of United States of America image

do you have access to a remote desktop session on the hosted server ? if so you can run the following from exchange shell:

$Export = Get-Mailbox
$Export|%{$_|New-MailboxExportRequest -FilePath "\\yourserver\sharename\$($_.alias).pst"}
Avatar of thisis_it

ASKER

I miss the hosted environment and the cleanup?
Is the Exchange server in your office, or are you subscribing to a Hosted Exchange service like outlook.com or similar ?
It is in my office but it is a hosted environment (multi tenant). So multiple hosted OUs in our  (only shell) environment of Exchange 2010 sp1
ASKER CERTIFIED SOLUTION
Avatar of djcanter
djcanter
Flag of United States of America image

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
Thanks. This works