exporting ALL maiboxes to PST's

2010-10-28 Thread Jean-Paul natola
Hi all, As I have mentioned one of oue divisions is leaving and I did have the foresight when I upgraded to ex2010 to put thme in their own ex database, now the company that is taking their email have asked to export all their mailboxes to PST's I didnt see exmerge anywhere on 2010 do

Re: exporting ALL maiboxes to PST's

2010-10-28 Thread KenM
powershell and export-mailbox http://www.msexchange.org/articles_tutorials/exchange-server-2010/management-administration/exporting-importing-mailboxes-exchange-server-2010.html

RE: exporting ALL maiboxes to PST's

2010-10-28 Thread Jean-Paul natola
So if I understand this correctly, I have export each users box one at a time? Date: Thu, 28 Oct 2010 13:09:20 -0400 Subject: Re: exporting ALL maiboxes to PST's From: kenmli...@gmail.com To: exchangelist@lyris.sunbelt-software.com powershell and export-mailbox http

Re: exporting ALL maiboxes to PST's

2010-10-28 Thread KenM
13:09:20 -0400 Subject: Re: exporting ALL maiboxes to PST's From: kenmli...@gmail.com To: exchangelist@lyris.sunbelt-software.com powershell and export-mailbox http://www.msexchange.org/articles_tutorials/exchange-server-2010/management-administration/exporting-importing-mailboxes-exchange

RE: exporting ALL maiboxes to PST's

2010-10-28 Thread Jason Gurtz
to PST's So if I understand this correctly, I have export each users box one at a time? Date: Thu, 28 Oct 2010 13:09:20 -0400 Subject: Re: exporting ALL maiboxes to PST's From: kenmli...@gmail.com To: exchangelist@lyris.sunbelt-software.com

Re: exporting ALL maiboxes to PST's

2010-10-28 Thread KenM
at 1:14 PM, Jean-Paul natola jnat...@hotmail.comwrote: So if I understand this correctly, I have export each users box one at a time? -- Date: Thu, 28 Oct 2010 13:09:20 -0400 Subject: Re: exporting ALL maiboxes to PST's From: kenmli...@gmail.com

RE: exporting ALL maiboxes to PST's

2010-10-28 Thread Jean-Paul natola
unfortunatley, scripting is one of my biggest shortfalls, i think it may take me longer to figure out how to script than, than to just run the command against each users mailbox Date: Thu, 28 Oct 2010 13:23:39 -0400 Subject: Re: exporting ALL maiboxes to PST's From: kenmli

RE: exporting ALL maiboxes to PST's

2010-10-28 Thread Dave Wade
[mailto:jnat...@hotmail.com] Sent: 28 October 2010 18:15 To: MS-Exchange Admin Issues Subject: RE: exporting ALL maiboxes to PST's So if I understand this correctly, I have export each users box one at a time? Date: Thu, 28 Oct 2010 13:09:20 -0400

RE: exporting ALL maiboxes to PST's

2010-10-28 Thread Jean-Paul natola
Subject: Re: exporting ALL maiboxes to PST's From: kenmli...@gmail.com To: exchangelist@lyris.sunbelt-software.com Something like this will export all this has not been tested get-mailbox | export-mailbox $_ -pstfolderpath c:\ $($_.name).txt On Thu, Oct 28, 2010 at 1:23 PM, KenM kenmli

Re: exporting ALL maiboxes to PST's

2010-10-28 Thread KenM
:20 -0400 Subject: Re: exporting ALL maiboxes to PST's From: kenmli...@gmail.com To: exchangelist@lyris.sunbelt-software.com powershell and export-mailbox http://www.msexchange.org/articles_tutorials/exchange-server-2010/management-administration/exporting-importing-mailboxes-exchange-server

RE: exporting ALL maiboxes to PST's

2010-10-28 Thread Campbell, Rob
of 10 get-mailbox | export-mailbox $_ -pstfolderpath c:\ $($_.name).txt -maxthreads 10 From: Jean-Paul natola [mailto:jnat...@hotmail.com] Sent: Thursday, October 28, 2010 12:36 PM To: MS-Exchange Admin Issues Subject: RE: exporting ALL maiboxes to PST's thanks for the example , where would i

RE: exporting ALL maiboxes to PST's

2010-10-28 Thread Michael B. Smith
-Exchange Admin Issues Subject: RE: exporting ALL maiboxes to PST's Actually you can do more than one at a time. Export-mailbox, like move-mailbox will multithread if you pipeline a collection of mailbox identities to the cmdlet. By default it will do up to 5 at a time. You can increase

RE: exporting ALL maiboxes to PST's

2010-10-28 Thread Jason Gurtz
Wow, that's pretty slick, learn something new every day. ~JasonG -Original Message- From: Campbell, Rob [mailto:rob_campb...@centraltechnology.net] Sent: Thursday, October 28, 2010 13:44 To: MS-Exchange Admin Issues Subject: RE: exporting ALL maiboxes to PST's Actually you can do

Re: exporting ALL maiboxes to PST's

2010-10-28 Thread James Bensley
We export ours per AD OU; Get-User -OrganizationalUnit Organisational Unit A | Export-Mailbox -PSTFolderPath \\fileserver\Organisation Unit A -Confirm:$false -- Regards, James. http://www.jamesbensley.co.cc/ There are 10 kinds of people in the world; Those who understand Vigesimal, and J

RE: exporting ALL maiboxes to PST's

2010-10-28 Thread Campbell, Rob
That's the first I've heard of it. Sometimes it's amazing to me the things MS chooses not to tell you about. From: Michael B. Smith [mailto:mich...@smithcons.com] Sent: Thursday, October 28, 2010 12:48 PM To: MS-Exchange Admin Issues Subject: RE: exporting ALL maiboxes to PST's Are we talking