<?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/tag/outlook/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>
		<item>
		<title>Connect to two exchange servers at the same time</title>
		<link>http://www.jasonmohan.com/other/connect-to-two-exchange-servers-at-the-same-time/</link>
		<comments>http://www.jasonmohan.com/other/connect-to-two-exchange-servers-at-the-same-time/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 13:40:43 +0000</pubDate>
		<dc:creator>Jason Mohan</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://netexceed.com/?p=171</guid>
		<description><![CDATA[In this article I show you how to connect to two different exchange servers at the same time. We all know the trick create on profile for one exchange server you need to connect to, and then create another profile for the other exchange server you need to connect to. However the problem is you [...]]]></description>
			<content:encoded><![CDATA[<p>In this article I show you how to connect to two different exchange servers at the same time. We all know the trick create on profile for one exchange server you need to connect to, and then create another profile for the other exchange server you need to connect to. However the problem is you can&#8217;t run the two profiles at the same time. Which is a big problem I had because I had a home exchange server that I connect too, and one at work. There is a solution. First let me explain the downside, this solution runs outlook twice (so twice the memory, and cpu used by outlook). If you&#8217;re ok with that continue below.</p>
<p>1. Create two profiles on your outlook (control panel &gt; mail &gt; show profiles). Label them easily like one work and the other home, or something like that.</p>
<p>2. Then download this lightweight program called <a href="http://www.hammerofgod.com/download/ExtraOutlook.zip">ExtraOutlook</a>.</p>
<p>3. Not unzip the program and place it somewhere.</p>
<p>4. Open a command line prompt and navigate to the directory where you placed extraoutlook.exe.</p>
<p>5. Type in the following command (the outlook path may be different on your computer, right click on your current outlook and find the current path).</p>
<p><em>extraoutlook.exe &#8220;c:\program files\Microsoft Office\Office11\Outlook.exe&#8221; /profile &#8220;Home&#8221;</em></p>
<p>6. The /profile &#8220;Home&#8221; the word in the quotes needs to be what you named your profile. Then type in the command again, but replace the profile &#8220;Home&#8221; with the next profile you created. Now you should have two seperate instances of outlook connecting to two exchange servers.</p>
<p>7. Here is an <a href="http://www.makeuseof.com/tag/open-two-different-instances-of-outlook-with-extraoutlook/">article</a> with more screenshots of the instructions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonmohan.com/other/connect-to-two-exchange-servers-at-the-same-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
