<?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; Windows Server 2008</title>
	<atom:link href="http://www.vishalvasu.com/tag/windows-server-2008/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>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>Remove index.php from URL for WordPress</title>
		<link>http://www.vishalvasu.com/remove-indexphp-from-url-for-wordpress/</link>
		<comments>http://www.vishalvasu.com/remove-indexphp-from-url-for-wordpress/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 07:04:57 +0000</pubDate>
		<dc:creator>Vishal Vasu</dc:creator>
				<category><![CDATA[Websites & Web Marketing]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.vishalvasu.com/?p=210</guid>
		<description><![CDATA[Many WordPress uses prefer to host their web sites on a Linux server so that they can get rid of the index.php that get’s in to the URL by using mod_rewrite module on Linux. This is not supported on Windows Server’s IIS. The main idea is to make the URL more simple and SEO friendly. [...]]]></description>
			<content:encoded><![CDATA[<p>Many WordPress uses prefer to host their web sites on a Linux server so that they can get rid of the index.php that get’s in to the URL by using mod_rewrite module on Linux. This is not supported on Windows Server’s IIS.</p>
<p>The main idea is to make the URL more simple and SEO friendly. Normally, when you setup PermaLinks in IIS, we get something like this:</p>
<p><strong><span style="color: #888888;">http://www.yourwordpresssite.com/index.php/2009/08/02/your-blog-post/</span></strong></p>
<p>This means that each link to the post carries index.php in the URL which is not good. Outlined below are steps that can help to achieve the same results for a WordPress site on a Windows Server running IIS.</p>
<p><strong><span style="text-decoration: underline;">STEP: 1</span></strong></p>
<p>Get the URL rewriting component on the Windows Server hosting your WordPress site. If you are not in control of the server or are not the server administrator, you can request the setup of the component from them. <strong><a href="http://code.google.com/p/wp-url-rewriting-on-iis/downloads/list" target="_blank">Click here</a></strong> to download the component from the vendor’s site. The component is absolutely free and distributed under GNU General Public License.</p>
<p><span style="text-decoration: underline;"><strong>STEP: 2</strong></span></p>
<p>Once the component is downloaded, copy the wp-url-rewriting.dll file to the Windows Server’s SYSTEM32 directory. Register the component so that it is available to IIS by using the <strong>REGSVR32 WP-URL-REWRITING.DLL</strong> command from the command prompt.</p>
<p><img class="alignnone" title="URL Rewrite for WordPress" src="http://www.vishalvasu.com/uploaded_images/url-rewrite-01.gif" alt="" width="572" height="275" /></p>
<p><strong><span style="color: #ff0000;"><em>Note: You may get an error that the DLL entry point was not found, but let that not bother you.</em></span></strong></p>
<p><strong><span style="text-decoration: underline;">STEP: 3</span></strong></p>
<p>Once the DLL is registered, login to your WordPress admin area and navigate to PermaLinks and change the common setting to use Custom Structure. Add <span style="color: #333333;"><strong>/%category%/%postname%/ </strong></span>as the choice and Save Changes.</p>
<p><img class="alignnone" title="URL Rewrite for WordPress" src="http://www.vishalvasu.com/uploaded_images/url-rewrite-02.gif" alt="" width="595" height="240" /></p>
<p>That&#8217;s it! We are done. WordPress should now show the URL&#8217;s without the index.php in it.</p>
<p>I invite everyone to share their experience or any other methods that they might have used.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vishalvasu.com/remove-indexphp-from-url-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Automate Patch Management with WSUS</title>
		<link>http://www.vishalvasu.com/automate-patch-management-with-wsus/</link>
		<comments>http://www.vishalvasu.com/automate-patch-management-with-wsus/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 08:18:57 +0000</pubDate>
		<dc:creator>Vishal Vasu</dc:creator>
				<category><![CDATA[Microsoft Windows Server]]></category>
		<category><![CDATA[Patch Management]]></category>
		<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.vishalvasu.com/?p=205</guid>
		<description><![CDATA[Patching the Windows Operating System in an organization with multiple desktops and many flavors of operating systems is a mammoth task. It is vital for any Systems Administrator to ensure all systems are properly patched and updated to safe guard against virus, worms, and Trojans. The biggest challenge in running Windows Update on individual machines [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">Patching the Windows Operating System in an organization with multiple desktops and many flavors of operating systems is a mammoth task. It is vital for any Systems Administrator to ensure all systems are properly patched and updated to safe guard against virus, worms, and Trojans. The biggest challenge in running Windows Update on individual machines is the inconvenience of visiting each desktop and approving the updates manually. Moreover, the amount of bandwidth used at each desktop to download the updates is huge not to forget the lack of centralized reporting.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">So why do we need a centralized patch management policy? Well, the answer is simple &#8211; the systems are prone to risks and threats when exposed to the Internet or medias like USB pen drives, wireless networks and devices, etc. We all, at some point, might have experienced or read about the havoc caused by Blaster or the Sasser worms. Today software vendors have stepped up the releases of emergency and critical updates in a formalized manner to encounter these threats. Microsoft&#8217;s Patch Tuesday is a good example that highlights that. To learn more about this program, <a href="http://www.microsoft.com/technet/security/bulletin/advance.mspx" target="_blank">click here</a>. </span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">WSUS from Microsoft is a boon to Network and System Administrators in this scenario. WSUS (Windows Server Update Services) is basically designed to run on a company&#8217;s network and automate the process of patching. This free product from Microsoft does a fair job of streamlining the overall patch management process of an organization with centralized reporting. For a Network or System Administrator it is just a simple task of installing the WSUS server on a system and then configures all Desktops to use the WSUS server for software updates. This can be easily achieved by creating a group policy and linking the policy to the correct OU using Group Policy Editor. The Desktops would automatically announce their current status to the WSUS server with details like which patches are needed to be installed, which patches have failed to install, which patches have been successfully installed, etc.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: 11pt; line-height: 115%; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;">In a nutshell, WSUS seems to be a good product especially when there is no price tag attached to it and starting with WSUS 3.0 the reports have also improved over its predecessor.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vishalvasu.com/automate-patch-management-with-wsus/feed/</wfw:commentRss>
		<slash:comments>0</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>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.vishalvasu.com/tag/windows-server-2008/feed/ ) in 5.68299 seconds, on Feb 6th, 2012 at 1:58 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 6th, 2012 at 2:58 pm UTC -->
