<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Netexceed blog by Jason Mohan&#187; Netexceed by Jason Mohan</title>
	<atom:link href="http://www.jasonmohan.com/category/exchange/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonmohan.com</link>
	<description>I am an IT professional who loves to stay on the leading edge of technology, and tries to tackle most commonly faced issues by computer users, and administrators.</description>
	<lastBuildDate>Mon, 19 Jul 2010 20:18:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to pst a exchange 2007 mailbox</title>
		<link>http://www.jasonmohan.com/exchange/how-to-pst-a-exchange-2007-mailbox/</link>
		<comments>http://www.jasonmohan.com/exchange/how-to-pst-a-exchange-2007-mailbox/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 16:14:22 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
				<category><![CDATA[exchange]]></category>
		<category><![CDATA[mailbox]]></category>
		<category><![CDATA[mailbox to pst]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[pst]]></category>
		<category><![CDATA[pst exchange 2007 mailbox]]></category>

		<guid isPermaLink="false">http://netexceed.com/?p=195</guid>
		<description><![CDATA[In this article I&#8217;ll show you how to pst a exchange 2007 mailbox for backup purposes. First there are a couple of things you need to understand. PST mailboxes is very time consuming, but this is a great way for small organizations to get a brick level backup. I use symantec for my backups, but [...]]]></description>
			<content:encoded><![CDATA[<p>In this article I&#8217;ll show you how to pst a exchange 2007 mailbox for backup purposes. First there are a couple of things you need to understand. PST mailboxes is very time consuming, but this is a great way for small organizations to get a brick level backup. I use symantec for my backups, but I always feel like I need another level of protection for the &#8220;just in case&#8221; of scenario. You can also use the free windows backup utility already in windows also to do backups. For a secondary backup, I do a brick level pst backup and upload to my online backup provider at set intervals. Here&#8217;s what I did to get it to work. I used another machine for the backups, as I didn&#8217;t want to use additional processing power, and disk i/o on my exchange server.</p>
<p><strong>Prerequisites:</strong> Exchange 2007 SP1, Outlook 2003 SP2 (on the backup server), Exchange Management Console and Powershell (on the backup server)</p>
<p><span style="text-decoration: underline;"><strong>Steps to backing up mailboxes automatically to pst</strong></span></p>
<p>In the below scenario you don&#8217;t need to do anything to your exchange server, this is all done on a backup server (that&#8217;s the way I decided to do it, but to each his own).</p>
<p>1. Load Exchange management console on your backup server.</p>
<p>2. Login as administrator (or a backup administrator account if you have one) onto the backup server.</p>
<p>3. Now make sure the administrator has access to <span style="text-decoration: underline;">all</span> the mailboxes you need to backup. If not go to exchange management console &gt; recipient configuration &gt; mailbox &gt; choose the user. Then click on manage full access permission and make sure the administrator (or backup administrator account is added). Now you may be able to change permissions to a certain level to backup without giving full access, but in this article I just gave the admin account full access to the mailbox.</p>
<p>4. Make sure Outlook 2003 SP2 is loaded on the backup server (this process requires it).</p>
<p>5. Open up exchange powershell, and type in the follow command (for the italics replace it with your organization or server information).</p>
<p><span style="color: #ff0000;">Get-Mailbox -Database &#8220;<em>server name</em>\<em>first storage group</em>\<em>mailbox database</em>&#8221; | Export-Mailbox -PSTFolderPath <em>d:</em>\<em>pst_backup</em>\</span></p>
<p><span style="color: #800000;">d:\pst_backup was my backup path but you can change to whatever you like.</span></p>
<p>6. Run the command, and give it a test run (just choose one mailbox for now to pst, just to see if it works).</p>
<p><strong>Now to automate the whole thing.</strong></p>
<p>1. Once you were able to backup one mailbox (from the above command) copy that command somewhere you&#8217;ll need it later.</p>
<p>2. Now create two file, pstbackup.cmd, and pstbackup.ps1, and put them in your pst backup folder (doesn&#8217;t have to be there).</p>
<p>3. Edit the pstbackup.ps1 file and put the following (same as the earlier command except with the -confirm:$false).</p>
<p><span style="color: #ff0000;">Get-Mailbox -Database &#8220;<em>servername</em>\<em>first storage group</em>\<em>mailbox database</em>&#8221; | Export-Mailbox -PSTFolderPath <em>d:</em>\<em>pst_backup</em>\ -confirm:$false</span></p>
<p>4. Save it, and let&#8217;s edit the pstbackup.cmd file now. Put in the following command.</p>
<p><span style="color: #ff0000;">powershell -PSConsoleFile &#8220;<em>d:</em>\<em>Program Files</em>\<em>exchange</em>\<em>bin</em>\<em>exshell.psc1</em>&#8221; -command &#8220;<em>d</em>:\<em>pst_backup</em>\<em>pstbackup.ps1</em>&#8221; &gt; <em>d:</em>\<em>pst_backup</em>\<em>pstbackup-log.txt</em></span></p>
<p><span style="color: #800000;">Now your path for the exshell.psc1 may be different so search your server for the exact path of that file. </span></p>
<p><span style="color: #800000;">The pstbackup-log.txt file will generate a log (you can put it wherever you like).</span></p>
<p>5. Now run the pstbackup.cmd file, and it should starting psting the mailboxes (it only does 4 at a time).</p>
<p>6. Schedule the pstbackup.cmd in your scheduled tasks for your backup, and that&#8217;s it.</p>
<p>If you get errors in your log make sure that that the administrator or the logged in user of the backup server has full permissions to the mailbox.  I&#8217;ve also provided my files that I used in the download section of this website in case you need a reference.</p>
<p><a href="http://jasonmohan.com/download/">Download the exchange 2007 pstbackup files</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonmohan.com/exchange/how-to-pst-a-exchange-2007-mailbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
