Link to home
Start Free TrialLog in
Avatar of jnikodym
jnikodym

asked on

Make a copy of an Exchange 2013 mailbox

I need to make a copy of a certain mailbox in our Exchange 2013.  I don't want to export anything because i still want the user to have access to his current mailbox.  I just need to make a copy of the mailbox as it is at this current time.
ASKER CERTIFIED SOLUTION
Avatar of Guy Lidbetter
Guy Lidbetter
Flag of United Kingdom of Great Britain and Northern Ireland 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
Avatar of Scott C
The best way to do this is make a backup with your current solution the restore the mailbox to another user name.
Avatar of Prabhat Kumar
Prabhat Kumar

If you want to take backup of bulk user's mailbox, you can use below command

$Export = Get-Mailbox
$Export|%{$_|New-MailboxExportRequest -FilePath "<<Folderpath>>\$($_.alias).pst"}
$Export = Get-Mailbox
$Export|%{$_|New-MailboxExportRequest -FilePath "<<Folderpath>>\$($_.alias).pst"}

Open in new window