<?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>Alpesh Nakar&#039;s Blog &#187; SharePoint 2010</title>
	<atom:link href="http://alpesh.nakars.com/blog/category/sharepoint/sp2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://alpesh.nakars.com/blog</link>
	<description>SharePoint Consultant&#039;s Notes From The Field</description>
	<lastBuildDate>Fri, 16 Sep 2011 00:14:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>PowerShell Script To Change Managed Account Password</title>
		<link>http://alpesh.nakars.com/blog/powershell-script-to-change-managed-account-password/</link>
		<comments>http://alpesh.nakars.com/blog/powershell-script-to-change-managed-account-password/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 13:59:00 +0000</pubDate>
		<dc:creator>Alpesh</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Administrator]]></category>
		<category><![CDATA[SP2010 PowerShell]]></category>

		<guid isPermaLink="false">http://alpesh.nakars.com/blog/powershell-script-to-change-managed-account-password/</guid>
		<description><![CDATA[<p>Of all days in the week, on Sunday [August 21, 2011] I decided to tease my SharePoint 2010 development environment! I decided to change all the SharePoint 2010 Service Account(s)password. Thank you Microsoft for introducing the managed accounts, else I would be clicking away for a long time, having to go through each application pool [...]</p><p><a href="http://alpesh.nakars.com/blog/powershell-script-to-change-managed-account-password/">PowerShell Script To Change Managed Account Password</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>
Related posts:<ol>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-change-service-account-passwords/' rel='bookmark' title='SharePoint: Change Service Account Passwords'>SharePoint: Change Service Account Passwords</a></li>
<li><a href='http://alpesh.nakars.com/blog/access-denied-in-sharepoint/' rel='bookmark' title='SharePointv2: Access Denied After Changing AD Password'>SharePointv2: Access Denied After Changing AD Password</a></li>
<li><a href='http://alpesh.nakars.com/blog/powershell-to-change-sharepoint-diagnostic-log-file-location/' rel='bookmark' title='PowerShell To Change SharePoint Diagnostic Log File Location'>PowerShell To Change SharePoint Diagnostic Log File Location</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Of all days in the week, on Sunday [August 21, 2011] I decided to tease my SharePoint 2010 development environment! I decided to change all the SharePoint 2010 Service Account(s)password.</p>
<p>Thank you Microsoft for introducing the managed accounts, else I would be clicking away for a long time, having to go through each application pool to change the password (map this scenario to MOSS 2007 or WSSv3). With managed accounts associated with application pools, it was a matter of changing the password for the managed account and it would ‘cascade’ down…</p>
<p><span id="more-2064"></span></p>
<p>If you have seen my <a href="http://www.alpesh.nakars.com/blog/reimaging-sharepoint-vms-on-the-fly/" target="_blank">re-imaging VMs on the fly series</a>, you would have seen that I am not using one service account in my SharePoint virtual development environment!</p>
<p>To update the password from the Central Administration GUI &gt; Security &gt; General Security &gt; Configure Managed Accounts and click edit on the relevant managed account and then select Change password now and then select Use existing password. Enter the password that was entered in AD and click OK.</p>
<p><a href="http://img.nakars.com/anblog/image2.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://img.nakars.com/anblog/image_thumb2.png" alt="image" width="658" height="392" border="0" /></a></p>
<p>However, in a situation where I had 5 farms and 8 managed accounts per farm, it would mean I would be clicking 40 times at least to get this job done… ( not accounting for the clicks listed in the steps above )</p>
<p>So, I decided to get my hands dirty with PowerShell! Here is the script to use an ‘existing password’ from the active directory (after it has been changed in the ADS) for my managed account that I am using for all my demo web applications</p>
<p>#Set Execution Policy<br />
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -force</p>
<p>#Import SharePoint Module<br />
Add-PSSnapin Microsoft.SharePoint.PowerShell -EA silentlycontinue</p>
<p>$m = Get-SPManagedAccount -Identity &#8220;sharepoint\sa-spcontent&#8221;</p>
<p>Set-SPManagedAccount -Identity $m  -ExistingPassword (ConvertTo-SecureString &#8220;pass@word2&#8243; -AsPlainText -force) –confirm</p>
<p>iisreset</p>
<p>PowerShell experts, your feedback will be highly appreciated!</p>
<p>This script got the job done, but if there are better ways of doing this, suggestions welcome.</p>
<p>Related posts:</p><ol>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-change-service-account-passwords/' rel='bookmark' title='SharePoint: Change Service Account Passwords'>SharePoint: Change Service Account Passwords</a></li>
<li><a href='http://alpesh.nakars.com/blog/access-denied-in-sharepoint/' rel='bookmark' title='SharePointv2: Access Denied After Changing AD Password'>SharePointv2: Access Denied After Changing AD Password</a></li>
<li><a href='http://alpesh.nakars.com/blog/powershell-to-change-sharepoint-diagnostic-log-file-location/' rel='bookmark' title='PowerShell To Change SharePoint Diagnostic Log File Location'>PowerShell To Change SharePoint Diagnostic Log File Location</a></li>
</ol><p><a href="http://alpesh.nakars.com/blog/powershell-script-to-change-managed-account-password/">PowerShell Script To Change Managed Account Password</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>]]></content:encoded>
			<wfw:commentRss>http://alpesh.nakars.com/blog/powershell-script-to-change-managed-account-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Applying WIM To VHD</title>
		<link>http://alpesh.nakars.com/blog/applying-wim-to-vhd/</link>
		<comments>http://alpesh.nakars.com/blog/applying-wim-to-vhd/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 10:35:00 +0000</pubDate>
		<dc:creator>Alpesh</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Administrator]]></category>
		<category><![CDATA[SharePoint Installation]]></category>
		<category><![CDATA[SharePoint Resources]]></category>

		<guid isPermaLink="false">http://www.alpesh.nakars.com/blog/applying-wim-to-vhd/</guid>
		<description><![CDATA[<p>This is a continuation of the series Re Imaging SharePoint VMs on the fly. Now that you have captured your bootable virtual hard drive that was prepared for SharePoint Installation, you can apply that to another active partition or a virtual hard drive and then install whichever flavour of SharePoint you please! As seen in [...]</p><p><a href="http://alpesh.nakars.com/blog/applying-wim-to-vhd/">Applying WIM To VHD</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>
Related posts:<ol>
<li><a href='http://alpesh.nakars.com/blog/capturing-vhd-to-wim/' rel='bookmark' title='Capturing VHD To WIM'>Capturing VHD To WIM</a></li>
<li><a href='http://alpesh.nakars.com/blog/create-a-bootable-vhd/' rel='bookmark' title='Create a bootable VHD'>Create a bootable VHD</a></li>
<li><a href='http://alpesh.nakars.com/blog/attach-vhd-and-boot-os-in-hyper-v/' rel='bookmark' title='Attach VHD and boot OS in Hyper-V'>Attach VHD and boot OS in Hyper-V</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This is a continuation of the series <a href="http://www.alpesh.nakars.com/blog/reimaging-sharepoint-vms-on-the-fly/" target="_blank">Re Imaging SharePoint VMs</a> on the fly.</p>
<p>Now that you have captured your bootable <a href="http://www.alpesh.nakars.com/blog/preparing-virtual-machine-for-sharepoint-installation/" target="_blank">virtual hard drive that was prepared for SharePoint Installation</a>, you can apply that to another active partition or a virtual hard drive and then install whichever flavour of SharePoint you please!</p>
<p>As seen in the earlier post, <a href="http://www.alpesh.nakars.com/blog/capturing-vhd-to-wim/" target="_blank">capturing a virtual hard drive to create a Windows Image File</a> is time consuming (compared to taking a snapshot in VMWare or Hyper-V) and memory intensive as well, however the advantage is that you can leverage on bare metal power – like having dual boot or multi-boot environment on your laptop.</p>
<p><span id="more-1932"></span></p>
<p>So let’s apply the Windows Image File to the virtual hard disk or you could this another partition as well.</p>
<p><a href="http://img.nakars.com/anblog/clip_image0012.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="clip_image001" src="http://img.nakars.com/anblog/clip_image001_thumb2.png" alt="clip_image001" width="670" height="201" border="0" /></a></p>
<p>This completes the series &amp; I hope it has been of value to you.</p>
<p>Related posts:</p><ol>
<li><a href='http://alpesh.nakars.com/blog/capturing-vhd-to-wim/' rel='bookmark' title='Capturing VHD To WIM'>Capturing VHD To WIM</a></li>
<li><a href='http://alpesh.nakars.com/blog/create-a-bootable-vhd/' rel='bookmark' title='Create a bootable VHD'>Create a bootable VHD</a></li>
<li><a href='http://alpesh.nakars.com/blog/attach-vhd-and-boot-os-in-hyper-v/' rel='bookmark' title='Attach VHD and boot OS in Hyper-V'>Attach VHD and boot OS in Hyper-V</a></li>
</ol><p><a href="http://alpesh.nakars.com/blog/applying-wim-to-vhd/">Applying WIM To VHD</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>]]></content:encoded>
			<wfw:commentRss>http://alpesh.nakars.com/blog/applying-wim-to-vhd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint 2010: Service Pack 1 Feature Recovering Site From Recycle Bin</title>
		<link>http://alpesh.nakars.com/blog/recover-sharepoint-site-from-recycle-bin/</link>
		<comments>http://alpesh.nakars.com/blog/recover-sharepoint-site-from-recycle-bin/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 22:15:32 +0000</pubDate>
		<dc:creator>Alpesh</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://alpesh.nakars.com/blog/?p=2020</guid>
		<description><![CDATA[<p>Now that SharePoint 2010 Service Pack 1 is out&#8230; I wanted to share one of the features that is going to be much appreciated by SharePoint Administrators and Site Collection Administrators. No more attaching backups of your content database and powershell to restore the deleted SharePoint site! Head over to the site collection recycle bin [...]</p><p><a href="http://alpesh.nakars.com/blog/recover-sharepoint-site-from-recycle-bin/">SharePoint 2010: Service Pack 1 Feature Recovering Site From Recycle Bin</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>
Related posts:<ol>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-2010-service-pack-1/' rel='bookmark' title='Looking forward to this Service Pack 1!'>Looking forward to this Service Pack 1!</a></li>
<li><a href='http://alpesh.nakars.com/blog/aussie-first-internet-facing-site-on-sharepoint-2010/' rel='bookmark' title='Aussie First Internet Facing Site on SharePoint 2010'>Aussie First Internet Facing Site on SharePoint 2010</a></li>
<li><a href='http://alpesh.nakars.com/blog/how-to-create-sharepoint-2010-site-collection-in-its-own-db/' rel='bookmark' title='How To Create SharePoint 2010 Site Collection In Its Own DB'>How To Create SharePoint 2010 Site Collection In Its Own DB</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Now that SharePoint 2010 Service Pack 1 is out&#8230; I wanted to share one of the features that is going to be much appreciated by SharePoint Administrators and Site Collection Administrators.</p>
<p>No more attaching backups of your content database and powershell to restore the deleted SharePoint site!<span id="more-2020"></span></p>
<p>Head over to the site collection recycle bin under /AdminRecycleBin.aspx?View=2 and restore.</p>
<p>View 2 is the recycle bin that only site collection administrators have access to and is the &#8216;bin&#8217; which receives content that is deleted from the end user recycle bin.</p>
<p>In the case of site deleted, it does not go to the end user recycle bin (view=1) but straight to the site collection recycle bin (view=2)</p>
<p>That&#8217;s it! You now have your site that can be restored as easily as any other list or library item!</p>
<p>If you&#8217;d rather go with PowerShell, you now have some new PowerShell friends to get to know</p>
<p>Get-SPDeletedSite (SharePoint Server 2010)</p>
<p>Get-SPDeletedSite (SharePoint Foundation 2010)</p>
<p>Remove-SPDeletedSite (SharePoint Server 2010)</p>
<p>Remove-SPDeletedSite (SharePoint Foundation 2010)</p>
<p>Restore-SPDeletedSite (SharePoint Server 2010)</p>
<p>Restore-SPDeletedSite (SharePoint Foundation 2010)</p>
<p>Thank you Microsoft SharePoint Team!</p>
<p>Related posts:</p><ol>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-2010-service-pack-1/' rel='bookmark' title='Looking forward to this Service Pack 1!'>Looking forward to this Service Pack 1!</a></li>
<li><a href='http://alpesh.nakars.com/blog/aussie-first-internet-facing-site-on-sharepoint-2010/' rel='bookmark' title='Aussie First Internet Facing Site on SharePoint 2010'>Aussie First Internet Facing Site on SharePoint 2010</a></li>
<li><a href='http://alpesh.nakars.com/blog/how-to-create-sharepoint-2010-site-collection-in-its-own-db/' rel='bookmark' title='How To Create SharePoint 2010 Site Collection In Its Own DB'>How To Create SharePoint 2010 Site Collection In Its Own DB</a></li>
</ol><p><a href="http://alpesh.nakars.com/blog/recover-sharepoint-site-from-recycle-bin/">SharePoint 2010: Service Pack 1 Feature Recovering Site From Recycle Bin</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>]]></content:encoded>
			<wfw:commentRss>http://alpesh.nakars.com/blog/recover-sharepoint-site-from-recycle-bin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Capturing VHD To WIM</title>
		<link>http://alpesh.nakars.com/blog/capturing-vhd-to-wim/</link>
		<comments>http://alpesh.nakars.com/blog/capturing-vhd-to-wim/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 06:00:00 +0000</pubDate>
		<dc:creator>Alpesh</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Administrator]]></category>
		<category><![CDATA[SharePoint Resources]]></category>

		<guid isPermaLink="false">http://www.alpesh.nakars.com/blog/capturing-vhd-to-wim/</guid>
		<description><![CDATA[<p>This is a continuation of the series Re Imaging SharePoint VMs on the fly. Once you have finished with the task of preparing the virtual machine, it’s time to create a Windows Image File (WIM) for re-use at a later stage. Navigate to the folder where you have imagex.exe Run this command D:\Virtualisation\imagex.exe /capture m: [...]</p><p><a href="http://alpesh.nakars.com/blog/capturing-vhd-to-wim/">Capturing VHD To WIM</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>
Related posts:<ol>
<li><a href='http://alpesh.nakars.com/blog/create-an-operating-system-vhd-from-dvd/' rel='bookmark' title='Create an Operating System VHD from DVD'>Create an Operating System VHD from DVD</a></li>
<li><a href='http://alpesh.nakars.com/blog/reimaging-sharepoint-vms-on-the-fly/' rel='bookmark' title='Reimaging SharePoint VMs on the fly!'>Reimaging SharePoint VMs on the fly!</a></li>
<li><a href='http://alpesh.nakars.com/blog/create-a-bootable-vhd/' rel='bookmark' title='Create a bootable VHD'>Create a bootable VHD</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This is a continuation of the series <a href="http://www.alpesh.nakars.com/blog/reimaging-sharepoint-vms-on-the-fly/" target="_blank">Re Imaging SharePoint VMs</a> on the fly.</p>
<p>Once you have finished with the task of <a href="http://www.alpesh.nakars.com/blog/preparing-virtual-machine-for-sharepoint-installation/" target="_blank">preparing the virtual machine</a>, it’s time to create a Windows Image File (WIM) for re-use at a later stage.</p>
<p>Navigate to the folder where you have imagex.exe</p>
<p>Run this command</p>
<p><span id="more-1929"></span></p>
<p>D:\Virtualisation\imagex.exe /capture m: d:\justsharepoint.wim &#8220;NKR&#8221;</p>
<p>Figure here under explains the command</p>
<p><a href="http://img.nakars.com/anblog/image.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://img.nakars.com/anblog/image_thumb.png" border="0" alt="image" width="511" height="64" /></a></p>
<p><strong>/capture m:</strong> = the virtual hard drive where we have installed and configured Windows Server 2008R2, Active Directory,SQL Server 2008 R2 etc. as per the <a href="http://www.alpesh.nakars.com/blog/preparing-virtual-machine-for-sharepoint-installation/" target="_blank">previous post</a>.</p>
<p>Capturing an image is a memory intensive process!</p>
<p><a href="http://img.nakars.com/anblog/image1.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://img.nakars.com/anblog/image_thumb1.png" border="0" alt="image" width="512" height="43" /></a></p>
<p>Of course nothing like taking a snapshot, it is slow to capture but then you get bare metal power!</p>
<p>This image took 22 minutes and 24 seconds.</p>
<p><a href="http://img.nakars.com/anblog/clip_image001.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="clip_image001" src="http://img.nakars.com/anblog/clip_image001_thumb.png" border="0" alt="clip_image001" width="517" height="140" /></a></p>
<p>That’s it!</p>
<p>Next post in the series will show you how this can be applied to another partition on the drive or another virtual hard drive.</p>
<p>Related posts:</p><ol>
<li><a href='http://alpesh.nakars.com/blog/create-an-operating-system-vhd-from-dvd/' rel='bookmark' title='Create an Operating System VHD from DVD'>Create an Operating System VHD from DVD</a></li>
<li><a href='http://alpesh.nakars.com/blog/reimaging-sharepoint-vms-on-the-fly/' rel='bookmark' title='Reimaging SharePoint VMs on the fly!'>Reimaging SharePoint VMs on the fly!</a></li>
<li><a href='http://alpesh.nakars.com/blog/create-a-bootable-vhd/' rel='bookmark' title='Create a bootable VHD'>Create a bootable VHD</a></li>
</ol><p><a href="http://alpesh.nakars.com/blog/capturing-vhd-to-wim/">Capturing VHD To WIM</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>]]></content:encoded>
			<wfw:commentRss>http://alpesh.nakars.com/blog/capturing-vhd-to-wim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preparing Virtual Machine for SharePoint Installation</title>
		<link>http://alpesh.nakars.com/blog/preparing-virtual-machine-for-sharepoint-installation/</link>
		<comments>http://alpesh.nakars.com/blog/preparing-virtual-machine-for-sharepoint-installation/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 18:00:00 +0000</pubDate>
		<dc:creator>Alpesh</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[SharePoint Resources]]></category>

		<guid isPermaLink="false">http://www.alpesh.nakars.com/blog/?p=1875</guid>
		<description><![CDATA[<p>This is continuation of the blog post series on Reimaging SharePoint VMs on the fly. Quick recap: In the earlier post, we have created a vhd and enabled the vhd to be bootable. In this post, I am now logged into the vhd and ready to prepare my virtual machine for installing SharePoint 2010. This [...]</p><p><a href="http://alpesh.nakars.com/blog/preparing-virtual-machine-for-sharepoint-installation/">Preparing Virtual Machine for SharePoint Installation</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>
Related posts:<ol>
<li><a href='http://alpesh.nakars.com/blog/preparing-for-wss4-installation-on-windows7/' rel='bookmark' title='Preparing for WSS4 Installation on Windows7'>Preparing for WSS4 Installation on Windows7</a></li>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-wss-installation-on-a-dc-psconfig-goodness/' rel='bookmark' title='SharePoint: WSS Installation On A DC &#8211; PSConfig Goodness'>SharePoint: WSS Installation On A DC &#8211; PSConfig Goodness</a></li>
<li><a href='http://alpesh.nakars.com/blog/technet-virtual-lab-2007-microsoft-office-system/' rel='bookmark' title='TechNet Virtual Lab: 2007 Microsoft Office System'>TechNet Virtual Lab: 2007 Microsoft Office System</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This is continuation of the blog post series on <a href="http://www.alpesh.nakars.com/blog/reimaging-sharepoint-vms-on-the-fly/">Reimaging SharePoint VMs on the fly</a>.</p>
<p>Quick recap: In the earlier post, we have created a vhd and enabled the vhd to be bootable.</p>
<p>In this post, I am now logged into the vhd and ready to prepare my virtual machine for installing SharePoint 2010.<span id="more-1875"></span></p>
<p>This is what we need to have configured, before we can even get started with the installation of SharePoint 2010.</p>
<ol>
<li>Windows Roles and Features
<ol>
<li>Active Directory</li>
<li>Desktop Experience</li>
<li>SMTP</li>
<li>Windows PowerShell ISE</li>
</ol>
</li>
<li>Populate Active Directory with sample users</li>
<li>Create Service Accounts for installation and management of SharePoint 2010</li>
<li>Disable IE Enhanced Security</li>
<li>Enable Remote Desktop</li>
<li>Installation and configuration of Microsoft SQL Server 2008 R2</li>
<li>Installation of hmailserver</li>
<li>Installation of SharePoint 2010 Pre-requisite installers</li>
<li>Firewall and Anti-Virus</li>
</ol>
<h2>Windows Server 2008 R2 Features</h2>
<h2> </h2>
<h3>Active Directory</h3>
<p>I will not walk you through on how to install Active Directory Role, but will point out resources that you can refer for populating your active directory with sample users.</p>
<p>Once the active directory is installed on your demo server, next step is to enable features.</p>
<h3>Windows Roles and Features</h3>
<ul>
<li><a href="http://toddklindt.com/blog/Lists/Posts/Post.aspx?List=56f96349%2D3bb6%2D4087%2D94f4%2D7f95ff4ca81f&amp;ID=199&amp;Web=48e6fdd1%2D17db%2D4543%2Db2f9%2D6fc7185484fc" target="_blank">Todd Klindt’s Blog Post – Setup a test environment</a></li>
<li>Set it up manually</li>
</ul>
<h3>Populate Active Directory with sample users</h3>
<ul>
<li><a href="http://toddklindt.com/blog/Lists/Posts/Post.aspx?List=56f96349%2D3bb6%2D4087%2D94f4%2D7f95ff4ca81f&amp;ID=199&amp;Web=48e6fdd1%2D17db%2D4543%2Db2f9%2D6fc7185484fc" target="_blank">One of the steps outlined above</a></li>
<li>Download the batch file to <a href="http://www.sharepointsingh.com/2010/06/populate-active-directory-with-dummy.html" target="_blank">populate dummy users for SharePoint</a> OR</li>
<li><a href="http://guru-web.blogspot.com/2011/03/how-to-make-100-friends-in-sharepoint.html" target="_blank">Creating 100 AD Users with PowerShell</a></li>
</ul>
<h2>Create Service Accounts for SharePoint 2010</h2>
<p>All accounts will be domain users. Specific permissions are listed in the next table.</p>
<table border="1" cellpadding="0" width="501">
<tbody>
<tr>
<td width="145">Account</td>
<td width="384">Description</td>
</tr>
<tr>
<td width="145">sa-spfarm</td>
<td width="384">Farm Account</td>
</tr>
<tr>
<td width="145">sa-spinstall</td>
<td width="384">Installer Account</td>
</tr>
<tr>
<td width="145">sa-sql</td>
<td width="384">SQL Service Account</td>
</tr>
<tr>
<td width="145">sa-spups</td>
<td width="384">User Profile Services</td>
</tr>
<tr>
<td width="145">sa-spshared</td>
<td width="384">Shared Services</td>
</tr>
<tr>
<td width="145">sa-spoffice</td>
<td width="384">Office Services [OWA]</td>
</tr>
<tr>
<td width="145">sa-spcrawl</td>
<td width="384">Crawler Services</td>
</tr>
<tr>
<td width="145">sa-spsearch</td>
<td width="384">Search Services</td>
</tr>
<tr>
<td width="145">sa-spcontent</td>
<td width="384">Web Application Pool</td>
</tr>
<tr>
<td width="145">sa-spmysite</td>
<td width="384">My Site Web Application Pool</td>
</tr>
<tr>
<td width="145"> </td>
<td width="384"> </td>
</tr>
<tr>
<td width="145"> </td>
<td width="384"> </td>
</tr>
</tbody>
</table>
<p>Specific Permissions that you need to assign</p>
<table border="1" cellpadding="0" width="499">
<tbody>
<tr>
<td width="130">Account</td>
<td width="367">SharePoint Server (local machine)</td>
</tr>
<tr>
<td width="140">sa-spfarm</td>
<td width="367">Local Administrator &amp; Log on Locally [Only for provisioning User Profile Service Application]</td>
</tr>
<tr>
<td width="144">sa-spups</td>
<td width="367">Refer to <a href="http://www.harbar.net/articles/sp2010ups.aspx" target="_blank">Spence Harbar’s Articles</a></td>
</tr>
</tbody>
</table>
<p> </p>
<h2>Installation and configuration of Microsoft SQL Server 2008 R2</h2>
<p> </p>
<h3>Installation of SQL Server 2008 R2 as per these settings</h3>
<table border="1" cellspacing="0" cellpadding="0" width="501">
<tbody>
<tr>
<td width="234" valign="top">Components</td>
<td width="265" valign="top">
<ul>
<li>SQL Server Database Services with Full Text Search</li>
<li>Analysis Services</li>
<li>Reporting Services</li>
<li>Business Intelligence Development Studio</li>
<li>Client Tools Connectivity</li>
<li>SQL Server Books Online</li>
<li>Management Tools Complete</li>
</ul>
</td>
</tr>
<tr>
<td width="234" valign="top">Instance Name</td>
<td width="265" valign="top">SP2010</td>
</tr>
<tr>
<td width="234" valign="top">Service Accounts</td>
<td width="265" valign="top">
<ul>
<li>SQL Server Agent: domain\administrator</li>
<li>All Others: System</li>
</ul>
</td>
</tr>
<tr>
<td width="234" valign="top">Authentication Mode</td>
<td width="265" valign="top">
<ul>
<li>Mixed Mode</li>
<li>sa Password: <a href="mailto:“pass@word1">“pass@word1</a>”</li>
</ul>
</td>
</tr>
<tr>
<td width="234" valign="top">System Administrator Account</td>
<td width="265" valign="top">Use current account (domain\administrator)</td>
</tr>
<tr>
<td width="234" valign="top">FILESTREAM</td>
<td width="265" valign="top">Enable FILESTREAM for transact SQL and I/O</td>
</tr>
<tr>
<td width="234" valign="top">Analysis Services Account</td>
<td width="265" valign="top">Use current account (domain\administrator)</td>
</tr>
<tr>
<td width="234" valign="top">Report Server Configuration Options</td>
<td width="265" valign="top">Install in SharePoint integrated mode</td>
</tr>
</tbody>
</table>
<h3> </h3>
<h3>Sample Databases</h3>
<p><a href="http://msftdbprodsamples.codeplex.com/releases/view/55926" target="_blank">Download Sample Databases for Microsoft SQL Server 2008R2</a>. Install.</p>
<h3>SQL Configuration Manager</h3>
<p>Open SQL Configuration Manager and under SQL Server Network Configuration, click Protocols and enable Named Pipes</p>
<h3>SQL Management Studio</h3>
<p>In SQL Management Studio, create a new login for dom<br />
ain\sa-spinstall and add it to the dbcreators and securityadmin roles</p>
<h2>Install hMailserver</h2>
<p>Download <a href="http://www.hmailserver.com/" target="_blank">hMailserver</a></p>
<p><a href="http://www.siolon.com/blog/using-hmailserver-with-sharepoint/" target="_blank">Installation of hMailserver</a> &amp; <a href="http://weblogs.asp.net/wesleybakker/archive/2010/08/09/configure-hmailserver-for-sharepoint.aspx" target="_blank">configuration of hMailserver for SharePoint</a></p>
<h2>Installation of SharePoint 2010 Pre-requisite installers</h2>
<ul>
<li>Online or <a href="http://gallery.technet.microsoft.com/scriptcenter/bcf3332d-f726-4ac7-b01a-eeda4b7ece8e" target="_blank">Download the prerequisites</a></li>
<li><a href="http://technet.microsoft.com/en-us/library/ff686793.aspx#install" target="_blank">Install prerequisites from a network share</a></li>
<li><a href="http://blogs.msdn.com/b/chaks/archive/2011/05/06/installing-sharepoint-2010-prerequisites-offline-from-a-local-path-using-arguments-file.aspx" target="_blank">Installing SharePoint 2010 prerequisites offline from a local path using arguments file</a></li>
</ul>
<p> </p>
<h2>Installation of Anti-Virus</h2>
<p>Earlier, I had blogged on how you can <a href="http://www.alpesh.nakars.com/blog/antivirus-for-demo-virtual-machines/" target="_blank">install an unmanaged client of Microsoft Forefront</a>. Refer to the blog post and install the anti-virus.</p>
<h2>Quick Recap</h2>
<p>That’s it! We are now done creating an image with</p>
<ol>
<li>Microsoft Windows Server 2008 R2 (with Service Pack 1)</li>
<li>Active Directory &#8211; Sample Users and Managed Service Accounts for SharePoint 2010</li>
<li>Installation and configuration of Microsoft SQL Server 2008 R2</li>
<li>Installation of hmailserver</li>
<li>Installation of SharePoint 2010 Pre-requisite installers</li>
<li>Installation of anti-virus</li>
</ol>
<p>Now that we have the virtual machine ready for installation of SharePoint 2010, in the next post (which will be really a very very short post compared to this one) we will make the final move before installing SharePoint 2010!<!--EndFragment--></p>
<p>Related posts:</p><ol>
<li><a href='http://alpesh.nakars.com/blog/preparing-for-wss4-installation-on-windows7/' rel='bookmark' title='Preparing for WSS4 Installation on Windows7'>Preparing for WSS4 Installation on Windows7</a></li>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-wss-installation-on-a-dc-psconfig-goodness/' rel='bookmark' title='SharePoint: WSS Installation On A DC &#8211; PSConfig Goodness'>SharePoint: WSS Installation On A DC &#8211; PSConfig Goodness</a></li>
<li><a href='http://alpesh.nakars.com/blog/technet-virtual-lab-2007-microsoft-office-system/' rel='bookmark' title='TechNet Virtual Lab: 2007 Microsoft Office System'>TechNet Virtual Lab: 2007 Microsoft Office System</a></li>
</ol><p><a href="http://alpesh.nakars.com/blog/preparing-virtual-machine-for-sharepoint-installation/">Preparing Virtual Machine for SharePoint Installation</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>]]></content:encoded>
			<wfw:commentRss>http://alpesh.nakars.com/blog/preparing-virtual-machine-for-sharepoint-installation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Disable OfficeDotCom Templates For SharePoint</title>
		<link>http://alpesh.nakars.com/blog/disable-officedotcom-templates-for-sharepoint/</link>
		<comments>http://alpesh.nakars.com/blog/disable-officedotcom-templates-for-sharepoint/#comments</comments>
		<pubDate>Wed, 25 May 2011 11:45:00 +0000</pubDate>
		<dc:creator>Alpesh</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Administrator]]></category>

		<guid isPermaLink="false">http://www.alpesh.nakars.com/blog/?p=1898</guid>
		<description><![CDATA[<p>This is one feature you are likely to disable sooner or later. Very recently I saw the first template pop up in SharePoint when you click on More Options to create content. Back in the days when SharePoint 2010 was in beta and I happened to be at the Ignite Training in Bangalore, I had [...]</p><p><a href="http://alpesh.nakars.com/blog/disable-officedotcom-templates-for-sharepoint/">Disable OfficeDotCom Templates For SharePoint</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>
Related posts:<ol>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-howto-disable-editing-sites-with-sharepoint-designer/' rel='bookmark' title='SharePoint: Howto disable editing sites with SharePoint Designer'>SharePoint: Howto disable editing sites with SharePoint Designer</a></li>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-templates/' rel='bookmark' title='SharePoint: Demo Templates'>SharePoint: Demo Templates</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This is one feature you are likely to disable sooner or later. Very recently I saw the first template pop up in SharePoint when you click on More Options to create content.</p>
<p>Back in the days when SharePoint 2010 was in beta and I happened to be at the <a href="http://www.alpesh.nakars.com/blog/bangalore-sharepoint-ignite/" target="_blank">Ignite Training in Bangalore</a>, I had come across few features that I wanted to disable &#8211; for fun!</p>
<p><span id="more-1898"></span>
<p>This is one of them &#8211; disabling the download from Office.com feature at the farm level, so you don&#8217;t have site owners downloading these templates and creating sites using this site template.</p>
<p><a href="http://img.nakars.com/anblog/clip_image0011.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="clip_image001" border="0" alt="clip_image001" src="http://img.nakars.com/anblog/clip_image001_thumb1.png" width="656" height="246" /></a></p>
<p>Well, this post in the draft folder finally saw the light of the day only because I saw this question pop-up on the TechNet Forums and I decided to finish this post at the same time as answering the question on the forum.</p>
<h3>Solution</h3>
<p>First get the features on the farm</p>
<p>get-spfeature | sort displayname</p>
<p>You will see &quot;DownloadFromOfficeDotCom&quot;</p>
<p>Take note of the -identity</p>
<p>Now to disable the feature</p>
<p>disable-spfeature –identity </p>
<p>&#160;</p>
<p>That&#8217;s it! No more Office.com templates for SharePoint</p>
<p><a href="http://img.nakars.com/anblog/clip_image00111.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="clip_image001[1]" border="0" alt="clip_image001[1]" src="http://img.nakars.com/anblog/clip_image0011_thumb.png" width="659" height="140" /></a></p>
<p>There is one more feature that I had saved in drafts and will finally go live next week&#8230;</p>
<p><a href="http://img.nakars.com/anblog/clip_image0013.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="clip_image001[3]" border="0" alt="clip_image001[3]" src="http://img.nakars.com/anblog/clip_image0013_thumb.png" width="663" height="257" /></a></p>
<p>Related posts:</p><ol>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-howto-disable-editing-sites-with-sharepoint-designer/' rel='bookmark' title='SharePoint: Howto disable editing sites with SharePoint Designer'>SharePoint: Howto disable editing sites with SharePoint Designer</a></li>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-templates/' rel='bookmark' title='SharePoint: Demo Templates'>SharePoint: Demo Templates</a></li>
</ol><p><a href="http://alpesh.nakars.com/blog/disable-officedotcom-templates-for-sharepoint/">Disable OfficeDotCom Templates For SharePoint</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>]]></content:encoded>
			<wfw:commentRss>http://alpesh.nakars.com/blog/disable-officedotcom-templates-for-sharepoint/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Looking forward to this Service Pack 1!</title>
		<link>http://alpesh.nakars.com/blog/sharepoint-2010-service-pack-1/</link>
		<comments>http://alpesh.nakars.com/blog/sharepoint-2010-service-pack-1/#comments</comments>
		<pubDate>Thu, 19 May 2011 20:00:00 +0000</pubDate>
		<dc:creator>Alpesh</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Administrator]]></category>

		<guid isPermaLink="false">http://www.alpesh.nakars.com/blog/sharepoint-2010-service-pack-1/</guid>
		<description><![CDATA[<p>Yes, it’s coming! If you haven’t heard, read then here is the repeat of the buzz… SharePoint Service Pack 1 is expected to be released in late June, 2011! I am interested in this service pack more then ever, for a reason – self service recovery of site collections and sites! As a site collection [...]</p><p><a href="http://alpesh.nakars.com/blog/sharepoint-2010-service-pack-1/">Looking forward to this Service Pack 1!</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>
Related posts:<ol>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-portal-server-2003-service-pack-3/' rel='bookmark' title='SharePoint Portal Server 2003 Service Pack 3'>SharePoint Portal Server 2003 Service Pack 3</a></li>
<li><a href='http://alpesh.nakars.com/blog/windows-sharepoint-services-service-pack-3-sp3/' rel='bookmark' title='Windows SharePoint Services Service Pack 3 (SP3)'>Windows SharePoint Services Service Pack 3 (SP3)</a></li>
<li><a href='http://alpesh.nakars.com/blog/windows-server-2003-service-pack-2-32-bit-x86/' rel='bookmark' title='Windows Server 2003 Service Pack 2 (32-bit x86)'>Windows Server 2003 Service Pack 2 (32-bit x86)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Yes, it’s coming! If you haven’t heard, read then here is the repeat of the buzz… SharePoint Service Pack 1 is expected to be released in late June, 2011!</p>
<p>I am interested in this service pack more then ever, for a reason – self service recovery of site collections and sites! As a site collection administrator, if your user has deleted a site what options do you have to recover them?</p>
<p>If you have a recent backup (which you would) and on-site (which you should not) then out of the box you can recover the site from an unattached content database… but that’s going to cost – time and resources. <span id="more-1879"></span></p>
<p>With this Service Pack 1, SharePoint Administrators  will be able to recover sites from the recycle bin as easily as recovering end user content – libraries, lists and items.</p>
<p>I have always reiterated in my training and conference sessions, that you could recover end user content from the recycle bin but not sites… which will change with the release of the SharePoint Service Pack 1.</p>
<p>Post release, I will show you how easy it is!</p>
<p>To know what’s coming in SharePoint 2010 Service Pack 1, head over to the <a href="http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=973" target="_blank">SharePoint Team Blog</a></p>
<p>Related posts:</p><ol>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-portal-server-2003-service-pack-3/' rel='bookmark' title='SharePoint Portal Server 2003 Service Pack 3'>SharePoint Portal Server 2003 Service Pack 3</a></li>
<li><a href='http://alpesh.nakars.com/blog/windows-sharepoint-services-service-pack-3-sp3/' rel='bookmark' title='Windows SharePoint Services Service Pack 3 (SP3)'>Windows SharePoint Services Service Pack 3 (SP3)</a></li>
<li><a href='http://alpesh.nakars.com/blog/windows-server-2003-service-pack-2-32-bit-x86/' rel='bookmark' title='Windows Server 2003 Service Pack 2 (32-bit x86)'>Windows Server 2003 Service Pack 2 (32-bit x86)</a></li>
</ol><p><a href="http://alpesh.nakars.com/blog/sharepoint-2010-service-pack-1/">Looking forward to this Service Pack 1!</a> was published on <a href="http://alpesh.nakars.com/blog">Alpesh Nakar&#039;s Blog</a> </br>
<p>

<a href="http://www.anrdoezrs.net/7t75y1A719PVTSYYVQPRQVTZVSX" target="_blank" onmouseover="window.status='http://www.ZAGG.com';return true;" onmouseout="window.status=' ';return true;">Scratch Proof your iPhone. Buy the invisibleSHIELD. Lifetime Guarantee.</a><img src="http://www.awltovhc.com/3566xjnbhf0643996102164A638" width="1" height="1" border="0"/>	
</p></p>]]></content:encoded>
			<wfw:commentRss>http://alpesh.nakars.com/blog/sharepoint-2010-service-pack-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

