script to Export the mailboxs in Exchange 2007 from a list of users
Hi, I need a script to Export the mailboxs in Exchange 2007 from a list of users. Kindly help if it is possible through a script. regards Jorge Bautista
July 20th, 2011 1:18am

Create a input.txt file withlist of users (tct file should have user alias) Get-content c:\input.txt | Export-Mailbox -PSTFolderPath C:\PSTFiles Get-content c:\input.txt | Get-mailbox | Export-Mailbox -PSTFolderPath C:\PSTFiles or you can create csv file with users list (list can contain either user e-mail or samacount name (domain\user)) Import-Csv Z:\Book1.csv | %($_.email) {Export-Mailbox -Identity $_.email -PSTFolderPath C:\PSTFiles Thanks, Sandheep
Free Windows Admin Tool Kit Click here and download it now
July 20th, 2011 1:49am

Hi, Here is article about ‘Exchange Server 2007 Export Mailbox task’: http://blogs.technet.com/b/exchange/archive/2006/11/28/3397373.aspx Hope this helps. ThanksSophia Xu
July 21st, 2011 3:40am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics