<?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 Administrator</title>
	<atom:link href="http://alpesh.nakars.com/blog/tag/sharepoint-administrator/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.2.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/how-to-change-the-moss-site-port-to-port-80/' rel='bookmark' title='How To: Change the MOSS Site Port to Port 80'>How To: Change the MOSS Site Port to Port 80</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/how-to-change-the-moss-site-port-to-port-80/' rel='bookmark' title='How To: Change the MOSS Site Port to Port 80'>How To: Change the MOSS Site Port to Port 80</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/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-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>
</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/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-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>
</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>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/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-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/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/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-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/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>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/move-sharepoint-2010-site-collection-to-another-database/' rel='bookmark' title='Move SharePoint 2010 Site Collection To Another Database'>Move SharePoint 2010 Site Collection To Another Database</a></li>
<li><a href='http://alpesh.nakars.com/blog/powershell-to-list-feature-definitions/' rel='bookmark' title='PowerShell To List Feature Definitions'>PowerShell To List Feature Definitions</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/move-sharepoint-2010-site-collection-to-another-database/' rel='bookmark' title='Move SharePoint 2010 Site Collection To Another Database'>Move SharePoint 2010 Site Collection To Another Database</a></li>
<li><a href='http://alpesh.nakars.com/blog/powershell-to-list-feature-definitions/' rel='bookmark' title='PowerShell To List Feature Definitions'>PowerShell To List Feature Definitions</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/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>
<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>
</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/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>
<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>
</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>
		<item>
		<title>Move SharePoint 2010 Site Collection To Another Database</title>
		<link>http://alpesh.nakars.com/blog/move-sharepoint-2010-site-collection-to-another-database/</link>
		<comments>http://alpesh.nakars.com/blog/move-sharepoint-2010-site-collection-to-another-database/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 17:31:00 +0000</pubDate>
		<dc:creator>Alpesh</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Administrator]]></category>
		<category><![CDATA[SharePointHowTo]]></category>

		<guid isPermaLink="false">http://www.alpesh.nakars.com/blog/move-sharepoint-2010-site-collection-to-another-database/</guid>
		<description><![CDATA[<p>I have seen this question pop-up in the forums and I think I also got an email from one of my blog readers asking how they can move a site collection from one database to another database. This can be done via SharePoint 2010 Management Shell [aka PowerShell] and this is what you need to [...]</p><p><a href="http://alpesh.nakars.com/blog/move-sharepoint-2010-site-collection-to-another-database/">Move SharePoint 2010 Site Collection To Another Database</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/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>
<li><a href='http://alpesh.nakars.com/blog/how-to-change-the-moss-site-port-to-port-80/' rel='bookmark' title='How To: Change the MOSS Site Port to Port 80'>How To: Change the MOSS Site Port to Port 80</a></li>
<li><a href='http://alpesh.nakars.com/blog/powershell-to-backup-site-collection/' rel='bookmark' title='PowerShell To Backup Site Collection'>PowerShell To Backup Site Collection</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have seen this question pop-up in the forums and I think I also got an email from one of my blog readers asking how they can move a site collection from one database to another database.</p>
<p>This can be done via SharePoint 2010 Management Shell [aka PowerShell] and this is what you need to do.</p>
<p>  <span id="more-1824"></span>
<p>You must have the content database in place [created before you do this operation] for a particular web application and then use the following </p>
<p>Move-SPSite “http://justsharepoint.com/sites/team” –DestinationDatabase “ContentDatabase02”&#160; -confirm:$false</p>
<p>IIS reset</p>
<p>Done. Your site collection is now in ContentDatabase02</p>


<p>Related posts:</p><ol><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>
<li><a href='http://alpesh.nakars.com/blog/how-to-change-the-moss-site-port-to-port-80/' rel='bookmark' title='How To: Change the MOSS Site Port to Port 80'>How To: Change the MOSS Site Port to Port 80</a></li>
<li><a href='http://alpesh.nakars.com/blog/powershell-to-backup-site-collection/' rel='bookmark' title='PowerShell To Backup Site Collection'>PowerShell To Backup Site Collection</a></li>
</ol><p><a href="http://alpesh.nakars.com/blog/move-sharepoint-2010-site-collection-to-another-database/">Move SharePoint 2010 Site Collection To Another Database</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/move-sharepoint-2010-site-collection-to-another-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove SharePoint 2010 Social Tags Ribbon Control</title>
		<link>http://alpesh.nakars.com/blog/remove-sharepoint-2010-social-tags-ribbon-control/</link>
		<comments>http://alpesh.nakars.com/blog/remove-sharepoint-2010-social-tags-ribbon-control/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 14:00:00 +0000</pubDate>
		<dc:creator>Alpesh</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Administrator]]></category>

		<guid isPermaLink="false">http://www.alpesh.nakars.com/blog/?p=1778</guid>
		<description><![CDATA[<p>In recent weeks, SharePoint 2010 deployments have kicked off and I am collecting as much information as possible and will be sharing them here as time permits. Just saw this on the MSDN Forums today and I think this one ‘trick’ I must make a note of such, just in case. This is an unusual [...]</p><p><a href="http://alpesh.nakars.com/blog/remove-sharepoint-2010-social-tags-ribbon-control/">Remove SharePoint 2010 Social Tags Ribbon Control</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/datasheet-view-does-not-work-in-sharepoint-2010/' rel='bookmark' title='Datasheet View Does Not Work in SharePoint 2010'>Datasheet View Does Not Work in SharePoint 2010</a></li>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-remove-windows-internal-database/' rel='bookmark' title='SharePoint: Remove Windows Internal Database'>SharePoint: Remove Windows Internal Database</a></li>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-designer-2010-intro/' rel='bookmark' title='Welcome Ribbon to SharePoint Designer 2010'>Welcome Ribbon to SharePoint Designer 2010</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In recent weeks, SharePoint 2010 deployments have kicked off and I am collecting as much information as possible and will be sharing them here as time permits.</p>
<p>Just saw this on the <a href="http://social.msdn.microsoft.com/profile/alpesh%20nakar/?type=forum" target="_blank">MSDN Forums</a> today and I think this one ‘trick’ I must make a note of such, just in case.</p>
<p>This is an unusual request, but a valid one, since I strongly believe and advise (since SharePoint 2007 days – geez sounds antiquated!) that social aspects aka My Sites should be the last thing to be switched on in a SharePoint roll out… especially when the organisation and IW’s are just embarking on their SharePoint journey. That’s my opinion based on my experience here.</p>
<p>Well to track back to this forum thread, the requirement was to <strong>Remove &quot;I like It&quot; , &quot;Tags &amp; Notes</strong>&quot; <img title="none" alt="none" src="http://i1.social.microsoft.com/Forums/resources/images/trans.gif?cver=608%0d%0a" /></p>
<p>&#160;</p>
<p>Solution</p>
<p><strong>From Central Administration</strong></p>
<p>Navigate to System Settings</p>
<p>Manage Farm Features (_admin/ManageFarmFeatures.aspx)</p>
<p>Deactivate the Social Tags and Note Board Ribbon Controls</p>
<p><a href="http://www.alpesh.nakars.com/blog/wp-content/uploads/2010/09/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" class="wlDisabledImage" title="image" border="0" alt="image" src="http://www.alpesh.nakars.com/blog/wp-content/uploads/2010/09/image_thumb.png" width="500" height="44" /></a></p>
<p>&#160;</p>
<p>OR</p>
<p>&#160;</p>
<p><strong>From SharePoint 2010 Management Shell</strong></p>
<p>Disable-SPFeature –Identity SocialRibbonControl</p>
<p>&#160;</p>
<p>That’s it!</p>


<p>Related posts:</p><ol><li><a href='http://alpesh.nakars.com/blog/datasheet-view-does-not-work-in-sharepoint-2010/' rel='bookmark' title='Datasheet View Does Not Work in SharePoint 2010'>Datasheet View Does Not Work in SharePoint 2010</a></li>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-remove-windows-internal-database/' rel='bookmark' title='SharePoint: Remove Windows Internal Database'>SharePoint: Remove Windows Internal Database</a></li>
<li><a href='http://alpesh.nakars.com/blog/sharepoint-designer-2010-intro/' rel='bookmark' title='Welcome Ribbon to SharePoint Designer 2010'>Welcome Ribbon to SharePoint Designer 2010</a></li>
</ol><p><a href="http://alpesh.nakars.com/blog/remove-sharepoint-2010-social-tags-ribbon-control/">Remove SharePoint 2010 Social Tags Ribbon Control</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/remove-sharepoint-2010-social-tags-ribbon-control/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.555 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2011-11-21 23:09:13 -->
<!-- Compression = gzip -->
