<?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>Vishal Vasu&#039;s Blog &#187; Exchange 2007</title>
	<atom:link href="http://www.vishalvasu.com/tag/exchange-2007/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vishalvasu.com</link>
	<description>Thoughts, Passion, Technology</description>
	<lastBuildDate>Wed, 04 Jan 2012 08:23:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Mailbox Report Script for Exchange Server</title>
		<link>http://www.vishalvasu.com/mailbox-report-script-for-exchange-server/</link>
		<comments>http://www.vishalvasu.com/mailbox-report-script-for-exchange-server/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 11:31:53 +0000</pubDate>
		<dc:creator>Vishal Vasu</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.vishalvasu.com/?p=455</guid>
		<description><![CDATA[One of the tasks that every Exchange Server administrator faces as part of their daily or weekly maintenance is getting the mailbox size report of the Exchange Server. The PowerShell commands do help in getting the relevant data, but doing this rudementary task manually everytime is painstaking. Here is a small script which can used [...]]]></description>
			<content:encoded><![CDATA[<p>One of the tasks that every Exchange Server administrator faces as part of their daily or weekly maintenance is getting the mailbox size report of the Exchange Server. The PowerShell commands do help in getting the relevant data, but doing this rudementary task manually everytime is painstaking. Here is a small script which can used to generate the mailbox statistics report and then automatically email the same as an attachment. To automate this further, one can create a Scheduled Task in Task Manager so that it runs at the specified interval.</p>
<pre>###Exchange Mailbox Statistics Script</pre>
<pre>###Modify Variable Data
$FromAddress = "noreply@domain.com"
$ToAddress = "administrator@domain.com"
$MessageSubject = "Exchange Mailbox Report"
$MessageBody = "Mailbox Statistics of Exchange Server is attached with this email."
$SendingServer = "exchangeserver.yourdomain.com"</pre>
<pre>####DO NOT EDIT BELOW THIS LINE</pre>
<pre>###Get Stats and Prepare Text File
Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | ft DisplayName,@{label="TotalItemSize(MB)";expression={$_.TotalItemSize.Value.ToMB()}}, ItemCount, StorageLimitStatus &gt; mailboxes.txt</pre>
<pre>
###Create Email and Attach Report
$SMTPMessage = New-Object System.Net.Mail.MailMessage $FromAddress, $ToAddress,
$MessageSubject, $MessageBody
$Attachment = New-Object Net.Mail.Attachment("mailboxes.txt")
$SMTPMessage.Attachments.Add($Attachment)</pre>
<pre>###Send Email
$SMTPClient = New-Object System.Net.Mail.SMTPClient $SendingServer
$SMTPClient.Send($SMTPMessage)</pre>
<p>Hope the above script helps and saves the administration time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vishalvasu.com/mailbox-report-script-for-exchange-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TMG Managed Control Service, Exchange Edge and FPE</title>
		<link>http://www.vishalvasu.com/tmg-managed-control-service-exchange-edge-and-fpe/</link>
		<comments>http://www.vishalvasu.com/tmg-managed-control-service-exchange-edge-and-fpe/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 10:19:56 +0000</pubDate>
		<dc:creator>Vishal Vasu</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[ISA Server and Forefront]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[ISA Server]]></category>
		<category><![CDATA[Microsoft Forefront]]></category>

		<guid isPermaLink="false">http://www.vishalvasu.com/?p=426</guid>
		<description><![CDATA[Recently I encountered TMG Managed Control Service crashing at a client site where they have been using TMG as a back-end firewall. The same server was also being used as an Exchange 2007 Edge server also running Forefront Protection for Exchange 2010. All server roles were patched with the latest updates and rollups. The connectivity [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I encountered TMG Managed Control Service crashing at a client site where they have been using TMG as a back-end firewall. The same server was also being used as an Exchange 2007 Edge server also running Forefront Protection for Exchange 2010. All server roles were patched with the latest updates and rollups. The connectivity between the Edge and the Hub was implemented successfully and also verified using Test-EdgeSync. TMG also showed Edge and Hub connectivity. Everything looked healthy but the IT administrator was receiving email alerts with the following:</p>
<p><strong><em>&#8220;Email Policy could not be applied. Value does not fall within the expected range.&#8221;</em></strong></p>
<p>Went to the services MMC and tried to start the TMG Managed Control Service manually. The service failed to start. Upon checking the event logs, I found that the <strong>Application Log</strong> showed:</p>
<p> - Event ID 31309: E-mail policy configuration settings cannot be applied.<br />
- Event ID 31308: The Forefront TMG Managed Control service failed to initialize. Error information: The type initializer for &#8216;Microsoft.Isa.Smtp.ExchangeRunspace&#8217; threw an exception.<br />
- Event ID 31307: The Forefront TMG Managed Control service was stopped gracefully.</p>
<p>and the System Log showed Event ID 7023: The Microsoft Forefront TMG Managed Control service terminated with the following error: %%-2146233036</p>
<p>The next step was to check the Edge and Hub communication and as expected it should that the sync was not working. TMG console showed everything configured and all Anti-Spam rules enabled. I had no choice but to pick up the phone and shake someone up in Microsoft technical team for an answer. Sadly, no clue from there too, but one thing that came up in the discussion was to clear all Anti-Spam settings and then give this a reboot. Long process, but to cut things short, here is the solution that worked.</p>
<p>For those facing this issue, open up Exchange Shell on the Edge server and run:</p>
<p><strong><em>Get-IpBlockListEntry</em></strong></p>
<p>This should come up with a list of entries. The next step is to remove these. Run the following command:</p>
<p><em><strong>Get-IpBlockListEntry | RemoveIpBlockListEntry</strong></em></p>
<p>To clear all entries, answer with an &#8220;A&#8221;. Started the service this time and the TMG Managed Control Service started successfully.</p>
<p>Though running the command of <strong>Get-IpBlockListEntry</strong> after 10-15 minutes showed that the list was building up once again and after 30 minutes the TMG managed Control Service crashed once again.</p>
<p>The only workaround that I could implement to fix this permanently was to disable the <strong>Sender Reputation Service</strong> in TMG. It has been more than a week now and the TMG Managed Control Service has not crashed once.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vishalvasu.com/tmg-managed-control-service-exchange-edge-and-fpe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup Exchange Server 2007 on Windows 2008 using NTBackup</title>
		<link>http://www.vishalvasu.com/backup-exchange-server-2007-on-windows-2008-using-ntbackup/</link>
		<comments>http://www.vishalvasu.com/backup-exchange-server-2007-on-windows-2008-using-ntbackup/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 08:40:30 +0000</pubDate>
		<dc:creator>Vishal Vasu</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Microsoft Windows Server]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.vishalvasu.com/?p=226</guid>
		<description><![CDATA[All those System Administrators running their Exchange Server 2007 on a Windows 2003 (64-bit) server have the previlage to get access to the traditional NTBackup utility to backup their exchange stores. But those who are running their Exchange Server 2007 on Windows 2008 (64-bit) must have faced the dilema of which tool to use to [...]]]></description>
			<content:encoded><![CDATA[<p>All those System Administrators running their Exchange Server 2007 on a Windows 2003 (64-bit) server have the previlage to get access to the traditional NTBackup utility to backup their exchange stores. But those who are running their Exchange Server 2007 on Windows 2008 (64-bit) must have faced the dilema of which tool to use to backup their mail stores. This is because Windows Server Backup in Windows Server 2008 no longer supports Exchange-aware backups or restores. In order to back up and restore Exchange Server 2007 Service Pack 1 (SP1) on Windows Server 2008, you must use an Exchange-aware application that supports the Volume Shadow Copy Service (VSS) writer for Exchange 2007, such as Microsoft System Center Data Protection Manager, a third-party Exchange-aware VSS-based application, or a third-party Exchange-aware application that uses the streaming backup APIs locally on the Exchange server to make a backup locally on the Exchange server.</p>
<p>What does all this mean? Nothing but shelling out extra $$$ to invest in a backup solution unless you are interested in a very simple backup solution to assure that the logs get truncated and you have backup copies which you can restore. Here is a basic hack which can help one save a couple of $$$.</p>
<p><strong><span style="text-decoration: underline;">Step #1</span></strong></p>
<p>Get access to a Windows 2003 R2 Server which is running a 64-bit OS. Assuming that you are not running your production Exchange Server 2007 in 32-bit environment, we require the 64-bit version library files. If you do not have a one handy, you can get the source files and then expand the DLL&#8217;s or install one in a virtual environment.</p>
<p><strong><span style="text-decoration: underline;">Step #2</span></strong></p>
<p>Copy the <strong>ntbackup.exe, ntmsapi.dll, and vssapi.dll</strong> files from <strong>C:\windows\system32</strong> into a new folder on your Exchange Server 2007 running on Windows 2008. I created a folder called NTBackup under Program Files and placed them there.</p>
<div class="wp-caption alignnone" style="width: 606px"><img src="http://www.vishalvasu.com/uploaded_images/ntbackup-exchange2007-01.gif" alt="NT Backup Exchange 2007" width="596" height="333" /><p class="wp-caption-text">NT Backup Exchange 2007</p></div>
<p><strong><span style="text-decoration: underline;">Step # 3</span></strong></p>
<p>Right click Ntbackup.exe and choose <strong>&#8220;Run as administrator&#8221;</strong>.</p>
<p><img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/ntbackup-exchange2007-02.gif" alt="" width="596" height="333" /></p>
<p>Your should see the Exchange Server Information Store as part of your backup wizard.</p>
<p><img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/ntbackup-exchange2007-03.gif" alt="" width="641" height="478" /></p>
<p>Select the Information Stores that you want to backup. Choose the Backup media or filename and the path where you want to store your backups. Once you have finished the configuration, click on <strong>Start Backup</strong> and the exchange store backups should start.</p>
<p><img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/ntbackup-exchange2007-04.gif" alt="" width="358" height="397" /></p>
<p>Once the backup is complete, you should see all the transaction logs getting truncated (hope circular logging is not enabled) and also the mail store would be stamped with the Last Full Backup date and time stamp.</p>
<p>One thing to note though: you cannot back up a storage group in a Standby Continuous Replication (SCR) environment. Backups of storage group copies are available for Local Continuous Replication (LCR) or Cluster Continuous Replication only.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vishalvasu.com/backup-exchange-server-2007-on-windows-2008-using-ntbackup/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Moving Mailboxes from Exchange 2003 to Exchange 2007 SP1</title>
		<link>http://www.vishalvasu.com/moving-mailboxes-from-exchange-2003-to-exchange-2007-sp1/</link>
		<comments>http://www.vishalvasu.com/moving-mailboxes-from-exchange-2003-to-exchange-2007-sp1/#comments</comments>
		<pubDate>Fri, 15 May 2009 10:24:16 +0000</pubDate>
		<dc:creator>Vishal Vasu</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.vishalvasu.com/?p=197</guid>
		<description><![CDATA[In the first part of this series, we discussed how to Install Exchange Server 2007 SP1 in a coexistence environment with Exchange 2003. For those who missed the article, they can view the same by clicking here. Now that we have installed the Exchange Server 2007 SP1 in the organization, it’s time to move the [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">In the first part of this series, we discussed how to Install Exchange Server 2007 SP1 in a coexistence environment with Exchange 2003. For those who missed the article, they can view the same by </span><a href="http://www.vishalvasu.com/index.php/2009/05/installing-exchange-server-2007-sp1-on-windows-server-2008-for-coexistence-with-exchange-server-2003/"><span style="font-size: small; font-family: Calibri;">clicking here</span></a><span style="font-size: small; font-family: Calibri;">.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">Now that we have installed the Exchange Server 2007 SP1 in the organization, it’s time to move the user Mailboxes to Exchange 2007. Moving mailboxes is a very easy task and can be accomplished by using the Exchange Management Console or by using the PowerShell commands from command line. In this post I’m going to use the Exchange Management Console.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">So, let’s open the <strong>Exchange Management Console</strong> and in the tree on the left, navigate to the <strong>Recipient Configuration</strong> and expand it. Under the node, select <strong>Mailbox</strong>.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">Here we can see in the results pane that now we are able to see all the mailboxes that we have on our Exchange 2003 server and they are all marked as <strong>Legacy Mailboxes</strong>. This means that all the mailboxes are still on the Exchange 2003 Server and need to be moved to Exchange 2007.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">In this example, we will move the Administrator mailbox. So we choose the account, right-click it and choose <strong>Move Mailbox</strong>.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="mso-no-proof: yes;"></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;"><img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/mm-exch-07-01.jpg" alt="" width="457" height="456" /></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">The next screen provides us options as to where we want to move the mailbox and here we need to choose the mailbox database. I assume here that the Storage Groups and Mailbox Database are already created on Exchange Server 2007. If not, then that’s the first thing that you need to do.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"> </p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;"><img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/mm-exch-07-02.jpg" alt="" width="637" height="556" /></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">In my example, I’m going to move the <strong>Administrator</strong> mailbox to the <strong>General</strong> Mailbox Database.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"> </p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;"><img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/mm-exch-07-03.jpg" alt="" width="637" height="556" /></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">There now that we have selected the Mailbox Database, Exchange 2007 automatically appends it with the Server Name and the Storage Group. Click <strong>Next</strong> to proceed.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"> </p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;"><img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/mm-exch-07-04.jpg" alt="" width="637" height="556" /></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">On the next screen we are presented with lot of options as what should be done if the Move Mailbox process encounters any errors or finds any corrupt messages in the mailbox. Either we can <strong>Skip the entire mailbox</strong> move or we can allow Exchange Server to move the mailbox and simply <strong>Skip the corrupted messages</strong>. Moreover, if we go ahead with that option, we can even define how many corrupted messages should be skipped before the Move Mailbox stops the process. Since, I would not like to skip any messages, I’ll choose <strong>“Skip the Mailbox”</strong> and move further.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"> </p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;"><img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/mm-exch-07-05.jpg" alt="" width="637" height="556" /></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">Next we are presented with the scheduling screen which allows us to schedule the Move Mailbox process. This helps in particular when you are in a production environment with heavy traffic and want to schedule this unattended during off-peak hours. Moving mailboxes does not take much time and is entirely dependent on the number of items in the mailbox. Even in a production environment, while moving mailboxes, the user will hardly notice any issues and after moving the mailbox, the user may simply need to restart Outlook to get everything working again.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">In the scheduling option, you can choose to move the mailboxes during off peak hours and also you have a choice to cancel the running task if the move mailbox task runs for certain hours. I’ll chose <strong>“Immediately”</strong> and move ahead in this example.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"> </p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;"><img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/mm-exch-07-06.jpg" alt="" width="637" height="556" /></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">That’s the last screen that we see before we actually tell exchange to move the mail box. It allows you to do a quick round up of what we have selected and what options have been set. Once we have reviewed the options, click on <strong>“Move”.</strong></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">While the mailbox is being moved, we can see the progress, the number of items found, the number of items moved, etc. If you select multiple mailboxes, note that by default Exchange 2007 moves only 4 mailboxes at a time. The remaining mailboxes will be shown as <strong>“Pending”</strong>. <span style="mso-spacerun: yes;"> </span>Lot of checks are performed in the background by the Exchange Server during this process.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;"> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/mm-exch-07-07.jpg" alt="" width="637" height="556" /></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"> </p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">If all goes well, the final screen that we see is the confirmation showing us the status of the Move Mailbox process. Click on <strong>“Finish”</strong> to close the wizard. That’s it to Moving Mailboxes from Exchange 2003 to Exchange 2007.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vishalvasu.com/moving-mailboxes-from-exchange-2003-to-exchange-2007-sp1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Exchange Server 2007 SP1 on Windows Server 2008 for coexistence with Exchange Server 2003</title>
		<link>http://www.vishalvasu.com/installing-exchange-server-2007-sp1-on-windows-server-2008-for-coexistence-with-exchange-server-2003/</link>
		<comments>http://www.vishalvasu.com/installing-exchange-server-2007-sp1-on-windows-server-2008-for-coexistence-with-exchange-server-2003/#comments</comments>
		<pubDate>Sat, 09 May 2009 10:24:46 +0000</pubDate>
		<dc:creator>Vishal Vasu</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Microsoft Windows Server]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.vishalvasu.com/?p=183</guid>
		<description><![CDATA[In this article I&#8217;ve tried to explain how to install or upgrade an organization running on Exchange Server 2003 to Exchange Server 2007 SP1 on a Windows 2008 Server. In the next post I&#8217;ll be talking about some post install configurations and then after how to remove Exchange 2003 from the organization once everything is migrated [...]]]></description>
			<content:encoded><![CDATA[<p>In this article I&#8217;ve tried to explain how to install or upgrade an organization running on Exchange Server 2003 to Exchange Server 2007 SP1 on a Windows 2008 Server. In the next post I&#8217;ll be talking about some post install configurations and then after how to remove Exchange 2003 from the organization once everything is migrated to Exchange 2007.</p>
<p>There is no in-place upgrade supported with Exchange 2007 and so the only option is to upgrade to Exchange Server 2007 by adding it to the current Exchange 2003 organization and then moving all the resources from Exchange 2003 to Exchange 2007 and thereafter removing the Exchange 2003 Server. This means that we have no option but to perform a migration. So let&#8217;s get on with it.</p>
<p><strong><span style="text-decoration: underline;">Prerequisites</span></strong></p>
<p>The first step is to prepare our new Windows 2008 server so that it is ready for Exchange Server 2007 installation. Please note that we are talking about the 64-bit version of Exchange Server 2007 SP1 as the 32-bit version is not supported in production environment.</p>
<p>We will need the following components installed before we proceed:</p>
<ul>
<li>.Net Framework version 2.0 and 3.0</li>
<li>.Net Framework version 2.0 update or Service Pack 1</li>
<li>IIS 7 (various components)</li>
</ul>
<p><img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-01.jpg" alt="" width="519" height="281" /> </p>
<ul>
<li>Windows PowerShell</li>
<li> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-02.jpg" alt="" width="549" height="192" /></li>
<li>MMC -Microsoft Management Console 3.0 (installed by default so can be skipped)</li>
</ul>
<p>The following components should not be installed (were required in Exchange 2003):</p>
<ul>
<li>Network News Transfer Protocol (NNTP)</li>
<li>Simple Mail Transfer Protocol (SMTP)</li>
</ul>
<p>Once we have installed the prerequisites, let&#8217;s proceed towards the installation.</p>
<p><strong><span style="text-decoration: underline;">Installation Process</span></strong></p>
<p>We are going to install all Exchange Server Roles (HUB, CAS and MAILBOX) on one single box except for the Edge Transport Role. Let&#8217;s start by first preparing the Active Directory for Exchange 2007. Actually, the installer would do this automatically, but I like to perform this manually so that we can see what&#8217;s happening and understand it better. Here is what we will do before we run the installer of Exchange 2007:</p>
<ul>
<li>Prepare the schema for legacy Exchange permissions. This is because we are migrating from Exchange 2003 in the current organization.</li>
<li>Prepare Schema</li>
<li>Prepare Active Directory</li>
<li>Prepare the Domain</li>
</ul>
<p>The first thing that we do is to update the schema for legacy permissions. In order to do this we must login to the Domain Controller which is the Schema Master at the forest root and run the command from there.</p>
<p>Type <span style="color: #3366ff;"><strong><em>Setup /PrepareLegacyExchangePermissions</em></strong> </span>and press <strong>Enter</strong>.</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-03.jpg" alt="" width="550" height="203" /></p>
<p>This must be run as an Exchange Admin account and also ensure that you are in the local server&#8217;s Administrator group. The safest thing to do is to add the user account you are logged in with to the Enterprise Administrators Group, Schema Administrator Group and Domain Administrators Group. Also, the domain should be able to communicate with all other domains in the forest and we should all ample time for the replication to finish once this command is run.</p>
<p>Next, we will proceed towards updating the Schema from the Windows 2008 Server.  Type <strong><em><span style="color: #3366ff;">Setup /PrepareSchema</span> </em></strong>and press <strong>Enter</strong>.</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-04.jpg" alt="" width="550" height="262" /></p>
<p>We can see that the task failed with an error on the server. This is because the Remote Server Administration Tools were not installed. We can do this using the GUI but I&#8217;ve used the command line. Type <strong><em><span style="color: #3366ff;">ServerManagerCmd -I RSAT-ADDS</span></em></strong> and press <strong>Enter</strong>.</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-05.jpg" alt="" width="550" height="273" /></p>
<p>Here we go, the Remote Server Administration Tools have been installed and we need to reboot our Windows 2008 server before proceeding further.</p>
<p>Once the server has rebooted, let&#8217;s try preparing the Schema once again. Type the command that we used earlier &#8211; <strong><em><span style="color: #3366ff;">Setup /PrepareSchema</span></em></strong> and press <strong>Enter</strong>.</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-06.jpg" alt="" width="550" height="273" /></p>
<p>This time the task completed without error. Let&#8217;s move on.</p>
<p>Type <em><strong><span style="color: #3366ff;">Setup /PrepareAD</span></strong></em> to proceed with the Active Directory preparation.</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-07.jpg" alt="" width="550" height="273" /></p>
<p>Once this is completed, move on with preparing the domain.</p>
<p>Type <strong><em><span style="color: #3366ff;">Setup /PrepareDomain</span></em></strong> and press <strong>Enter</strong>.<br />
<span style="color: #ff0000;"><strong>Note:</strong> this setup can be skipped if you do not have multiple domains within the forest.</span></p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-08.jpg" alt="" width="550" height="273" /></p>
<p>Great, we are done with preparing our Active Directory for Exchange Server 2007 SP1 installation and now we can run the installer. If you have geographically dispersed domains, please allow enough time for replication to happen over the WAN links.</p>
<p>So, with the Active Directory now ready, we are ready to complete the installation. Start the setup. The first screen that we see is as under:</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-09.jpg" alt="" width="550" height="413" /></p>
<p>Since we have already taken care of the prerequisites, we can directly proceed to Step-4 i.e. Install Microsoft Exchange Server 2007 SP1. <strong>Click</strong> on it and we will be presented with the standard EULA.</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-010.jpg" alt="" width="550" height="480" /></p>
<p>Accept the License Agreement and click <strong>Next</strong>.</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-011.jpg" alt="" width="550" height="480" /></p>
<p>We now have a choice of a Typical Installation or a Custom Installation. Since I like to see what configuration options are available, I always tend to choose the Custom option. Also, for this example, we are going to install the Exchange server in the <strong>D:</strong> drive instead of the <strong>C:</strong> drive. You can change the path to your liking here. Once the selections are done, click <strong>Next</strong>.</p>
<p>The next screen allows us to choose which roles we want to install.</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-012.jpg" alt="" width="550" height="480" /></p>
<p>We will choose all the three main roles i.e. Mailbox Role, Client Access Role (CAS) and Hub Transport Role (HUB). I&#8217;m not choosing the Unified Messaging Role (UM) as I intend to do a separate article on this in the near future.</p>
<p>Once the selections have been done, click <strong>Next</strong>.</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-013.jpg" alt="" width="550" height="480" /></p>
<p>Here we go. The installer now prompts for the Mail Flow setting. Since we have an Exchange 2003 server we will need to browse and select the same so as to enable it as a Bridgehead server in the routing group. Once selected, click <strong>Next</strong>.</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-015.jpg" alt="" width="550" height="480" /></p>
<p>In the Readiness Check page, wait for all the readiness checks to complete and then click <strong>Install</strong>.</p>
<p>The installation process takes some time so it would be a good idea to sit back and relax over a cup of coffee. During the installation process, if we open up the System Manager on Exchange Server 2003, we will notice a new routing group.</p>
<p> <img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-014.jpg" alt="" width="339" height="133" /></p>
<p>Once the installation process completes, we now have a working environment of the new Exchange Server 2007 SP1. The process of installing Exchange 2007 on a Windows 2008 server is fairly simple.</p>
<p><img class="alignnone" src="http://www.vishalvasu.com/uploaded_images/exch-07-016.jpg" alt="" width="550" height="480" /></p>
<p>To verify the installation, open the new Exchange Management Shell and type <strong><em><span style="color: #3366ff;">Get-ExchangeServer</span></em></strong>. A list of all Exchange 2007 server roles that we installed would be displayed. It is a good idea now to open up the Management Console of Exchange and run the Exchange Best Practices Analyzer. It will give a good idea about the deployment and would help in determining if the configuration has been done in accordance to the Microsoft best practices.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vishalvasu.com/installing-exchange-server-2007-sp1-on-windows-server-2008-for-coexistence-with-exchange-server-2003/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.vishalvasu.com/tag/exchange-2007/feed/ ) in 1.16248 seconds, on Feb 6th, 2012 at 3:28 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 6th, 2012 at 4:28 pm UTC -->
