<?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>Dom Cosgrove Blog</title>
	<atom:link href="http://blog.domcosgrove.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.domcosgrove.com</link>
	<description>Dom&#039;s views on the SharePoint World</description>
	<lastBuildDate>Thu, 11 Feb 2010 19:54:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Example of how to get the URL to SharePoint 2007 Form Pages</title>
		<link>http://blog.domcosgrove.com/example-of-how-to-get-the-url-to-sharepoint-2007-form-pages/</link>
		<comments>http://blog.domcosgrove.com/example-of-how-to-get-the-url-to-sharepoint-2007-form-pages/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 19:50:07 +0000</pubDate>
		<dc:creator>Dominick Cosgrove</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.domcosgrove.com/example-of-how-to-get-the-url-to-sharepoint-2007-form-pages/</guid>
		<description><![CDATA[You can use the following syntax to get the fully qualified URL to a Form for a SharePoint List / Library. 
SPList list = SPContext.Current.List;

SPListItem item = list[0];

item.Web.Url + &#34;/&#34; + item.ParentList.Forms[PAGETYPE.PAGE_DISPLAYFORM].Url + &#34;?ID=&#34; + item.ID

&#160;
PAGETYPE is an enumeration of the SharePoint Forms: 




PAGE_DEFAULTVIEW


Default view. Value=0. 




PAGE_DIALOGVIEW


File dialog box view. Value=2. 




PAGE_DISPLAYFORM


Display form for list [...]]]></description>
			<content:encoded><![CDATA[<p>You can use the following syntax to get the fully qualified URL to a Form for a SharePoint List / Library. </p>
<pre>SPList list = SPContext.Current.List;

SPListItem item = list[0];

item.Web.Url + &quot;/&quot; + item.ParentList.Forms[PAGETYPE.PAGE_DISPLAYFORM].Url + &quot;?ID=&quot; + item.ID
</pre>
<p>&#160;</p>
<p><a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.pagetype.aspx">PAGETYPE</a> is an enumeration of the SharePoint Forms: </p>
<p><table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_DEFAULTVIEW</b></p>
</td>
<td valign="top" width="61%">
<p>Default view. Value=0. </p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_DIALOGVIEW</b></p>
</td>
<td valign="top" width="61%">
<p>File dialog box view. Value=2. </p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_DISPLAYFORM</b></p>
</td>
<td valign="top" width="61%">
<p>Display form for list items. Value=4. </p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_DISPLAYFORMDIALOG</b></p>
</td>
<td valign="top" width="61%">
<p>Display form for a file dialog box. Value=5. </p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_EDITFORM</b></p>
</td>
<td valign="top" width="61%">
<p>Edit form for list items. Value=6. </p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_EDITFORMDIALOG</b></p>
</td>
<td valign="top" width="61%">
<p>Edit form for a file dialog box. Value=7. </p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_INVALID</b></p>
</td>
<td valign="top" width="61%">
<p>Not used. Value= -1. </p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_MAXITEMS</b></p>
</td>
<td valign="top" width="61%">
<p>Not used. Value=11. </p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_NEWFORM</b></p>
</td>
<td valign="top" width="61%">
<p>New form for list items. Value=8</p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_NEWFORMDIALOG</b></p>
</td>
<td valign="top" width="61%">
<p>New form for a file dialog box. Value=9. </p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_NORMALVIEW</b></p>
</td>
<td valign="top" width="61%">
<p>Normal view. Value=1. </p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_SOLUTIONFORM</b></p>
</td>
<td valign="top" width="61%">
<p>Solution form. Value=10. </p>
</td>
</tr>
<tr>
<td valign="top" width="38%">
<p><b>PAGE_VIEW</b></p>
</td>
<td valign="top" width="61%">
<p>View, including both default view and normal view. Value=3.</p>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blog.domcosgrove.com/example-of-how-to-get-the-url-to-sharepoint-2007-form-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Counter Sets in Visual Studio for Software Testers</title>
		<link>http://blog.domcosgrove.com/custom-counter-sets-in-visual-studio-for-software-testers/</link>
		<comments>http://blog.domcosgrove.com/custom-counter-sets-in-visual-studio-for-software-testers/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 20:10:00 +0000</pubDate>
		<dc:creator>Dominick Cosgrove</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Performance Testing]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.domcosgrove.com/custom-counter-sets-in-visual-studio-for-software-testers/</guid>
		<description><![CDATA[Visual Studio 2005 for Software Testers (VSST) allows you to create custom Counter Sets, which are a set of performance counters that can be applied to a computer in the test farm. VSST comes with some Counter Sets out-of-the-box (OOTB) for the Load Test, Controller and Agent amongst others:

Invariably when creating performance tests, you&#8217;ll develop [...]]]></description>
			<content:encoded><![CDATA[<p>Visual Studio 2005 for Software Testers (VSST) allows you to create custom <a href="http://msdn.microsoft.com/en-us/library/ms404695.aspx"><em>Counter Sets</em></a>, which are a set of <a href="http://msdn.microsoft.com/en-us/library/aa373083%28VS.85%29.aspx">performance counters</a> that can be applied to a computer in the test farm. VSST comes with some <em>Counter Sets</em> out-of-the-box (OOTB) for the Load Test, Controller and Agent amongst others:<br />
<a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image002.jpg"><img style="display: inline; border-width: 0px;" title="clip_image002" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image002_thumb.jpg" border="0" alt="clip_image002" width="153" height="240" /></a><br />
Invariably when creating performance tests, you&#8217;ll develop them on a computer, which is not in the SharePoint Server Farm. This computer will most probably not have a number of the performance counters that you want to monitor. For instance SharePoint uses the w3wp (IIS) worker process, which unless you have IIS installed on your local machine, you will not be able to add the counters. To add the counters you need to specify a computer that has the counters that you require.</p>
<p>Typically I create a counter set for each of the server roles in the farm. This allows me to monitor different counters for different roles. For instance the Web Front End (WFE) servers counters are very different to the Back End SQL server. Joel Oleson has publish a <a href="http://blogs.msdn.com/joelo/archive/2007/01/16/good-list-of-performance-counters.aspx">good list of counters</a> that the SharePoint Performance Team use.</p>
<p><strong>Creating Custom Counter Set</strong><br />
1. Open or create a new Load Test in VSST;<br />
2. Right mouse click on the <strong>Counter Set</strong> node and select <strong>Add Custom Counter Set</strong>;<br />
<a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image004.jpg"><img style="display: inline; border-width: 0px;" title="clip_image004" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image004_thumb.jpg" border="0" alt="clip_image004" width="195" height="240" /></a><br />
3. In the properties pane give the newly created Counter Set a useful name e.g. SharePoint WFE, SharePoint DB, SharePoint Search e.t.c<br />
4. Right mouse click the newly created Counter Set and select Add Counters;<br />
<a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image006.jpg"><img style="display: inline; border-width: 0px;" title="clip_image006" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image006_thumb.jpg" border="0" alt="clip_image006" width="240" height="232" /></a><br />
5. Enter the name of the computer that you are going to collect the counters from e.g. SharePoint WFE or SQL Database server. The List of Performance Categories will be refreshed for the categories available on that server. If you select Process for instance, the list of instances will be different for the WFE and the DB servers. Select the required counters.<br />
<a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image008.jpg"><img style="display: inline; border-width: 0px;" title="clip_image008" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image008_thumb.jpg" border="0" alt="clip_image008" width="227" height="244" /></a><br />
<strong>Note:</strong><br />
If you work in an environment where least privileges are employed you may not have sufficient right to add performance counters from a remote computer. You may encounter a message such as &#8220;Cant read performance counter categories for computer xxx&#8221;.<br />
<a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image010.jpg"><img style="display: inline; border-width: 0px;" title="clip_image010" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image010_thumb.jpg" border="0" alt="clip_image010" width="227" height="244" /></a><br />
To be able to access the performance counters you need your system administrators to add you (or the account you are running the test under) to the following server roles:</p>
<ul>
<li><strong>Performance Log Users</strong> &#8211; Members of this group have remote access to schedule logging of performance counters on this computer</li>
<li><strong>Performance Monitor Users</strong> &#8211; Members of this group have remote access to monitor this computer</li>
</ul>
<p><strong>Using Custom Counter Set<br />
</strong>1. Open the Load Test where you created your custom counter set;<br />
2. Right mouse click on <strong>Counter Set Mappings</strong> and <strong>Select Manage Counter Sets&#8230;</strong>;<br />
<a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image012.jpg"><img style="display: inline; border-width: 0px;" title="clip_image012" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image012_thumb.jpg" border="0" alt="clip_image012" width="240" height="127" /></a><br />
3. In the <strong>Manage Counter Sets</strong> dialog box select Add Computer. Select the newly created Custom Counter Set and click OK;<br />
<a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image014.jpg"><img style="display: inline; border-width: 0px;" title="clip_image014" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image014_thumb.jpg" border="0" alt="clip_image014" width="244" height="184" /></a>�<br />
<strong></strong></p>
<p><strong>References:</strong></p>
<ul>
<li><strong><a href="http://www.combined-knowledge.com/Downloads/2007/HowToConfigStressTestProjectForMOSS07usingVS2008TS.pdf">How to configure Stress Test Project For MOSS 2007 using VS2008 Team Suite for System Testers</a></strong></li>
<li><strong><a href="http://msdn.microsoft.com/en-us/library/ms182561.aspx">Working with Load Tests</a></strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.domcosgrove.com/custom-counter-sets-in-visual-studio-for-software-testers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Failure adding assembly to the cache</title>
		<link>http://blog.domcosgrove.com/failure-adding-assembly-to-the-cache/</link>
		<comments>http://blog.domcosgrove.com/failure-adding-assembly-to-the-cache/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 19:51:00 +0000</pubDate>
		<dc:creator>Dominick Cosgrove</dc:creator>
				<category><![CDATA[Trouble Shooting]]></category>

		<guid isPermaLink="false">http://blog.domcosgrove.com/failure-adding-assembly-to-the-cache/</guid>
		<description><![CDATA[Issue
When copying files to the GAC I occasionaly get the following message in the Visual Studio OutPut window on my development VPC:
Failure adding assembly to the cache: Access denied. You might not have administrative credentials to perform this task. Contact your system administrator for assistance.
Also I cannot see any assemblies in the GAC through Windows [...]]]></description>
			<content:encoded><![CDATA[<h4>Issue</h4>
<p>When copying files to the GAC I occasionaly get the following message in the Visual Studio OutPut window on my development VPC:</p>
<p><i>Failure adding assembly to the cache: Access denied. You might not have administrative credentials to perform this task. Contact your system administrator for assistance.</i></p>
<p>Also I cannot see any assemblies in the GAC through Windows Explorer, while it is this state.</p>
<p><a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image0022.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image002_thumb2.jpg" width="240" height="215" /></a></p>
<h4>Background </h4>
<p>When developing features for SharePoint, it is common practice to deploy only the Signed Assembly to the GAC, rather that re-deploying the whole SharePoint solution. Personally depending on the project I use one of two mechanisms:</p>
<h5>WSPBuilder – Copy to GAC</h5>
<p><a href="http://www.codeplex.com/wspbuilder">WSPBuilder</a> is my tool of choice for increasing productivity while developing SharePoint Solutions. One of the functions of WSPBuilder is <i>Copy to GAC</i>, which does exactly as the name suggest:</p>
<p><a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image0042.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image004" border="0" alt="clip_image004" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image004_thumb2.jpg" width="205" height="240" /></a></p>
<p>PostBuild Task    <br />Some clients don’t allow WSPBuilder to be installed or they prefer a more custom project structure. In these cases I tend to use Project Post Build Tasks. You can use the <b>Edit Post Build…</b> function to add parameters to your post build command, as shown below. I tend to use the GACUtil command to copy the assembly to the GAC and the iisapp.vbs to recycle the application pool. A sample script is show below. This is required to ensure that the Just In Time (JIT) compilation occurs again.</p>
<p><a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image0062.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image006" border="0" alt="clip_image006" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image006_thumb2.jpg" width="240" height="161" /></a></p>
<p><a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image0081.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image008" border="0" alt="clip_image008" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image008_thumb1.jpg" width="244" height="118" /></a></p>
<p>&quot;%programfiles%\Microsoft Visual Studio 8\SDK\v2.0\Bin\GacUtil.exe&quot; /if &quot;$(TargetPath)&quot; /nologo    <br />&quot;%systemroot%\system32\iisapp.vbs&quot; /a &quot;SharePoint &#8211; 9000&quot; /r</p>
<h4>Resolution</h4>
<p>Although I cannot actually explain what is causing this issue, I found that if you restart the <b>Indexing Service</b> through the Windows Services Management Console, the problem is resolved.</p>
<p>If anyone has an explanation as to why this occurs I would be grateful.</p>
<p><a href="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image0101.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image010" border="0" alt="clip_image010" src="http://blog.domcosgrove.com/wp-content/uploads/2010/02/clip_image010_thumb1.jpg" width="244" height="173" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.domcosgrove.com/failure-adding-assembly-to-the-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint eMagazine</title>
		<link>http://blog.domcosgrove.com/sharepoint-emagazine/</link>
		<comments>http://blog.domcosgrove.com/sharepoint-emagazine/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 12:21:07 +0000</pubDate>
		<dc:creator>Dominick Cosgrove</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.domcosgrove.com/?p=274</guid>
		<description><![CDATA[




The very first SharePoint eMagazine!
]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl class="wp-caption alignleft" style="width: 158px;">
<dt class="wp-caption-dt"><a title="SharePoint eMagazine" href="http://www.sdn.nl/IW/FreeMagazine/tabid/139/Default.aspx" target="_blank"><img title="SharePoint eMagazine Cover" src="http://www.sdn.nl/Portals/0/orgo_only/DIWUGeMagazine/SharePoint_eMagazine_Cover.png" alt="SharePoint eMagazine Cover" width="148" height="207" /></a></dt>
</dl>
</div>
<p><a title="SharePoint eMagazine" href="http://www.sdn.nl/IW/FreeMagazine/tabid/139/Default.aspx" target="_blank">The very first SharePoint eMagazine</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.domcosgrove.com/sharepoint-emagazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Global SharePoint User Group (GSPUG)</title>
		<link>http://blog.domcosgrove.com/global-sharepoint-user-group-gspug/</link>
		<comments>http://blog.domcosgrove.com/global-sharepoint-user-group-gspug/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 11:10:29 +0000</pubDate>
		<dc:creator>Dominick Cosgrove</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.domcosgrove.com/global-sharepoint-user-group-gspug/</guid>
		<description><![CDATA[The Global SharePoint User Group is having it’s first meeting on the 1st December 2009 @ 7pm ET. This will be the first virtualised SharePoint User Group, and will be presented via LiveMeeting. 
If you can’t actually attend the user group meeting then they will be recorded so that you can watch them at your [...]]]></description>
			<content:encoded><![CDATA[<p>The Global SharePoint User Group is having it’s first meeting on the 1st December 2009 @ 7pm ET. This will be the first virtualised SharePoint User Group, and will be presented via LiveMeeting. </p>
<p>If you can’t actually attend the user group meeting then they will be recorded so that you can watch them at your leisure. </p>
<p>They also have a survey to establish what topics / subject areas people want discussed. Make sure you take the time to complete this as this will be key to getting the right content out there. </p>
<p><a title="http://www.gspug.org/" href="http://www.gspug.org/">http://www.gspug.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.domcosgrove.com/global-sharepoint-user-group-gspug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS Loopback adapter</title>
		<link>http://blog.domcosgrove.com/ms-loopback-adapter/</link>
		<comments>http://blog.domcosgrove.com/ms-loopback-adapter/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 16:52:27 +0000</pubDate>
		<dc:creator>Dominick Cosgrove</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.domcosgrove.com/ms-loopback-adapter/</guid>
		<description><![CDATA[If you need to browse your SharePoint site or for that matter any site, hosted on your VPC while you are not connected to a network, read on. If you are not connected to a network the VPC does not get an IP address issued hence why you cannot browse hosted sites. The solution to [...]]]></description>
			<content:encoded><![CDATA[<p>If you need to browse your SharePoint site or for that matter any site, hosted on your VPC while you are not connected to a network, read on. If you are not connected to a network the VPC does not get an IP address issued hence why you cannot browse hosted sites. The solution to this is the MS Loopback Adapter. The following shows you how to set up your loopback adapter.</p>
<h4>Add Loopback adapter</h4>
<ol>
<li>Click <strong>Start</strong>, and then click <strong>Control Panel. </strong>Then click <strong>Add Hardware</strong>:       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image17.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb17.png" width="300" height="209" /></a> </li>
<li>Select <strong>Yes, I have already connected the hardware</strong>:       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image18.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb18.png" width="244" height="188" /></a> </li>
<li>From the list of devices select <strong>Add a new hardware device</strong>:       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image19.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb19.png" width="244" height="187" /></a> </li>
<li>Select <strong>Install the hardware that I manually select from list (Advanced)</strong>:       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image20.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb20.png" width="244" height="187" /></a> </li>
<li>From the list of hardware types select <strong>Network Adapter</strong>:       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image21.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb21.png" width="244" height="187" /></a> </li>
<li>From the list of Manufactures select <strong>Microsoft</strong> and from the list of Network Adapters select<strong> Microsoft Loopback Adapter</strong>:       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image22.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb22.png" width="244" height="187" /></a> </li>
<li>Click <strong>Finish</strong> once the adapter is installed. </li>
<li>The Loopback Adapter will now appear in you list of <strong>Network Connections</strong>:       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image23.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb23.png" width="240" height="81" /></a> </li>
</ol>
<h4>Configure Loopback Adapter</h4>
<ol>
<li>In the <strong>Network Connections</strong> right mouse click on the newly created Loopback Adapter and select <strong>Properties;</strong> </li>
<li>From the <strong>Properties</strong> select <strong>Internet Protocol (TCP/IP)</strong> and click <strong>Properties</strong>:       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image24.png"><strong><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb24.png" width="202" height="244" /></strong></a><strong> </strong></li>
<li>In the <strong>Properties</strong> add the IP address as follows:       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image25.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb25.png" width="221" height="244" /></a>&#160; </li>
<li>Click <strong>OK </strong>to commit the changes. </li>
</ol>
<h4>Configure VPC Network Adapter</h4>
<ol>
<li>On Virtual PC (VPC) Console click <strong>Settings</strong>;       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image26.png"><strong><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb26.png" width="244" height="169" /></strong></a><strong> </strong></li>
<li>On the settings dialog box select <strong>Networking</strong> and then select <strong>Microsoft Loopback Adapter</strong> as the 1st Adapter. Click <strong>OK</strong>;       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image27.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb27.png" width="244" height="173" /></a> </li>
<li>On the VPC click the Network icon in the task bar or navigate to the <strong>Network Connections</strong> through the control panel. The network icon may display a warning message “Limited or no connectivity”. Don’t worry about this at the moment;       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image28.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb28.png" width="240" height="131" /></a> </li>
<li>On the <strong>Network Connections </strong>window, right mouse click on the <strong>Local Area Connection</strong> and click <strong>Properties</strong>;       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image29.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb29.png" width="240" height="159" /></a> </li>
<li>On the <strong>TCP/IP</strong> settings for the Network adapter enter the following details. Click <strong>OK</strong><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image30.png">;<img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb30.png" width="221" height="244" /></a> </li>
<li>You will notice that the network icon on the desktop task bar no-longer displays the warning message; </li>
<li>On the VPC, launch the <strong>Command Prompt</strong> and type <strong>IPConfig</strong> you should see that the VPC now has the IP address, subnet and gateway that you just entered;       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image31.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb31.png" width="244" height="82" /></a> </li>
<li>From the VPC Command prompt ping <strong>192.168.5.10</strong> to confirm connectivity to the host;       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image32.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb32.png" width="244" height="88" /></a>&#160; </li>
<li>Ensure that you don’t have any network connectivity on your host computer, then from the Command Prompt ping the VPC <strong>192.168.5.11</strong> to confirm connectivity to the VPC; </li>
</ol>
<h4>Configure Host File</h4>
<p>If your SharePoint (or website) uses <strong>Host Headers</strong> then you’ll need to edit your <strong>Host file</strong>:</p>
<ol>
<li>&#160; Open your <strong>Host </strong>file C:\Windows\System32\Drivers\etc\host;       <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image33.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb33.png" width="240" height="137" /></a> </li>
<li>In the host file put the IP address of your VPC <strong>192.168.5.11</strong> and set the host in my case that is scratch;       <br />&#160;<a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image34.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb34.png" width="244" height="191" /></a> </li>
<li>You should now be able to browse your SharePoint (Web Site) hosted on a VPC even if you do not have connection to a network;      <br /><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image35.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb35.png" width="240" height="192" /></a>&#160; </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.domcosgrove.com/ms-loopback-adapter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office Update Centre now Live</title>
		<link>http://blog.domcosgrove.com/office-update-centre-now-live/</link>
		<comments>http://blog.domcosgrove.com/office-update-centre-now-live/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 11:33:57 +0000</pubDate>
		<dc:creator>Dominick Cosgrove</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://blog.domcosgrove.com/office-update-centre-now-live/</guid>
		<description><![CDATA[ 
Today Microsoft TechNet has launched the Update Centre for Microsoft Office, Office Server and Related Products. This site will will consolidate all Service Packs, Public Updates and Cumulative updates for the Office Product suite in one location. Please note that this is not just for the Office Desktop products but also includes the server [...]]]></description>
			<content:encoded><![CDATA[<p align="justify"><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image16.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb16.png" width="244" height="43" /></a> </p>
<p align="justify">Today Microsoft TechNet has launched the <a href="http://technet.microsoft.com/en-us/office/ee748587.aspx" target="_blank"><strong>Update Centre for Microsoft Office, Office Server and Related Products</strong></a><strong>. </strong>This site will will consolidate all Service Packs, Public Updates and Cumulative updates for the Office Product suite in one location. Please note that this is not just for the Office Desktop products but also includes the server products i.e. SharePoint.</p>
<p align="justify">The site includes:</p>
<ul>
<li>
<div align="justify">Latest Updates;</div>
</li>
<li>
<div align="justify">Updates in the last year;</div>
</li>
<li>
<div align="justify">Update Resources;</div>
</li>
<li>
<div align="justify">An RSS feed of the updates;</div>
</li>
</ul>
<p align="justify">This will be a valuable resource for all system administrators and is something that has been long over due.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.domcosgrove.com/office-update-centre-now-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint 2010 Beta 2 &#8211; Available for MSDN Subscribers</title>
		<link>http://blog.domcosgrove.com/sharepoint-2010-beta-2-available-for-msdn-subscribers/</link>
		<comments>http://blog.domcosgrove.com/sharepoint-2010-beta-2-available-for-msdn-subscribers/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 15:01:00 +0000</pubDate>
		<dc:creator>Dominick Cosgrove</dc:creator>
				<category><![CDATA[2010]]></category>

		<guid isPermaLink="false">http://blog.domcosgrove.com/sharepoint-2010-beta-2-available-for-msdn-subscribers/</guid>
		<description><![CDATA[Office and SharePoint 2010 Betas are available for MSDN Subscribers:

Office 2010 Beta&#160; 
SharePoint 2010 

Make sure you download Visual Studio 2010 Beta 2 that was released a couple of weeks ago, this will be the Developer Tool of choice.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image15.png"><img style="border-bottom: 0px; border-left: 0px; margin: 0px 25px 0px 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" align="left" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb15.png" width="109" height="69" /></a>Office and SharePoint 2010 Betas are available for MSDN Subscribers:</p>
<ul>
<li><strong><a href="http://go.microsoft.com/fwlink/?LinkID=169604">Office 2010 Beta</a>&#160; </strong></li>
<li><strong><a href="http://go.microsoft.com/fwlink/?LinkID=169606">SharePoint 2010</a> </strong></li>
</ul>
<ul>Make sure you download <a href="http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx"><strong>Visual Studio 2010 Beta 2</strong></a> that was released a couple of weeks ago, this will be the Developer Tool of choice.</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.domcosgrove.com/sharepoint-2010-beta-2-available-for-msdn-subscribers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Channel 9 &#8211; SharePoint 2010 Developer Series</title>
		<link>http://blog.domcosgrove.com/channel-9-sharepoint-2010-developer-series/</link>
		<comments>http://blog.domcosgrove.com/channel-9-sharepoint-2010-developer-series/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 11:02:57 +0000</pubDate>
		<dc:creator>Dominick Cosgrove</dc:creator>
				<category><![CDATA[2010]]></category>

		<guid isPermaLink="false">http://blog.domcosgrove.com/channel-9-sharepoint-2010-developer-series/</guid>
		<description><![CDATA[ 
&#160; Channel 9 have a series of Webcasts on SharePoint 2010 Development:
&#160; Channel 9 – SharePoint 2010 Developer Series
&#160;

Getting Started with SharePoint 2010 
SharePoint 2010 Developer Roadmap 
Visual Studio 2010 Tools for SharePoint 2010 
UI Enhancements 
Lists and Schemas 
LINQ to SharePoint 
Client Object Model 
Workflow 
Services Architecture 
Accessing External Data 
Enterprise Content Management [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image10.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="left" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb10.png" width="51" height="60" /></a> </p>
<p>&#160; Channel 9 have a series of Webcasts on SharePoint 2010 Development:</p>
<p>&#160; <a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/" target="_blank">Channel 9 – SharePoint 2010 Developer Series</a></p>
<p>&#160;</p>
<ul>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/SharePointGettingStarted/" target="_blank">Getting Started with SharePoint 2010</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/SharePoint2010DeveloperRoadmap/" target="_blank">SharePoint 2010 Developer Roadmap</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/VisualStudio2010ToolsForSharePoint2010/" target="_blank">Visual Studio 2010 Tools for SharePoint 2010</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/UiEnhancements/" target="_blank">UI Enhancements</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/ListsAndSchemas/" target="_blank">Lists and Schemas</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/LINQtoSharePointUnit/" target="_blank">LINQ to SharePoint</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/ClientObjectModel/" target="_blank">Client Object Model</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/Workflow/" target="_blank">Workflow</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/ServicesArchitecture/" target="_blank">Services Architecture</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/AccessingExternalData/" target="_blank">Accessing External Data</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/EnterpriseContentManagement/" target="_blank">Enterprise Content Management</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/ExtendingSearch/" target="_blank">Extending Search</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/PerformancePointServices/" target="_blank">PerformancePoint Services</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/SandboxedSolutions/" target="_blank">Sandboxed Solutions</a> </li>
<li><a href="http://channel9.msdn.com/learn/courses/SharePoint2010Developer/SharePoint2010Security/" target="_blank">SharePoint 2010 Security</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.domcosgrove.com/channel-9-sharepoint-2010-developer-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to perform a phased roll out of SharePoint MySites</title>
		<link>http://blog.domcosgrove.com/how-to-perform-a-phased-roll-out-of-sharepoint-mysites/</link>
		<comments>http://blog.domcosgrove.com/how-to-perform-a-phased-roll-out-of-sharepoint-mysites/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 09:33:00 +0000</pubDate>
		<dc:creator>Dominick Cosgrove</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.domcosgrove.com/how-to-perform-a-phased-roll-out-of-sharepoint-mysites/</guid>
		<description><![CDATA[While working at an large utility organisation that has an Enterprise deployment of MOSS; they had their MySite Functionality turned off for all users. Now while I agree that there is a considerable amount of resource required to implement and manage the MySite functionality in SharePoint, it does have it’s benefits:

Aids SharePoint adoption as uses [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">While working at an large utility organisation that has an Enterprise deployment of MOSS; they had their MySite Functionality turned off for all users. Now while I agree that there is a considerable amount of resource required to implement and manage the MySite functionality in SharePoint, it does have it’s benefits:</p>
<ul>
<li>Aids SharePoint adoption as uses have <em>Site Owner</em> rights to their MySite, which means they can create Lists, Add Web Parts, Upload Documents e.t.c. giving them a full flavour of what SharePoint can do, in an isolated environment; </li>
<li>It can replace the user drive (U:\ drive or equivalent); </li>
<li>It can promote Sharing of information with colleges, rather than having silos of information on Shared Drives; </li>
<li>It can allow you to target information to particular sets of users; </li>
<li>
<div align="justify">It helps finding people by skills, roles, department, corporate structure e.t.c.</div>
</li>
</ul>
<ul>
<p align="justify">One approach I find useful is to phase / incrementally deployment of MySites across the Enterprise. The following will show how you can achieve this:</p>
<p>   <strong>1. </strong>Within the Active Directory (AD) create a new group called “<em>SharePoint MySite Users”</em> or something similar, this should be created as per your corporate policy;     </ul>
<p align="justify"><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb1.png" width="400" height="395" /></a> </p>
<p> <strong>2. </strong>Add the users that you plan to initially grant access to MySites to the newly created Group. You can also add existing AD Groups to this groups; for instance if you wanted to add the IT department you could add a AD Group that contains all members of that Department;   </p>
<p align="justify"><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image2.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb2.png" width="400" height="273" /></a> </p>
<p align="justify"><strong>3. </strong>Launch your <strong>Central Administration</strong> console and select the <strong>Shared Services</strong> associated the SharePoint Site. From the Shared Services Home page select <strong>Personalization services permissions;</strong></p>
<p align="justify"><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image3.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb3.png" width="400" height="268" /></a> </p>
<p align="justify"><strong>4. </strong>This will launch the a permissions page where you can grant rights to various personalisation services. You will notice that by default the <strong>NT AUTHORITY\Authenticated Users</strong> have been granted <strong>Personal Features</strong> and <strong>Personal Site</strong> rights. We are interested in the <em>Personal Site</em> rights. We need to remove these rights from the Authenticated Users groups<em>. </em>To do this select the Authenticated Users, and click <strong>Modify Permissions of Selected Users</strong>;</p>
<p align="justify"><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image4.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb4.png" width="400" height="104" /></a> </p>
<p align="justify"><strong>5. </strong>On the <strong>Modify Permissions </strong>page deselect <strong>Create Personal Site</strong> and click <strong>Save;</strong></p>
<p align="justify"><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image5.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb5.png" width="400" height="161" /></a> </p>
<p align="justify"><strong>6.</strong> From the <strong>Manage Permissions</strong> page select <strong>Add Users / Groups</strong>. On the <strong>Add Users / Groups</strong> page enter the group that you created in steps 1 &amp; 2. You can use the people picker functionality to help find the group. Check the box next to <strong>Create Personal Site</strong> and click <strong>Save</strong>;</p>
<p align="justify"><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image6.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb6.png" width="400" height="163" /></a> </p>
<p align="justify"><strong>7.</strong> You will now see that the <strong>SharePoint MySite Users</strong> group has the rights to create personal sites;</p>
<p align="justify"><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image7.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb7.png" width="400" height="113" /></a></p>
<p align="justify"><strong>8. </strong>To verify this log in to the Portal with an account that is a member of the <strong>SharePoint MySite Users</strong> group. You will see the link to the <strong>My Site</strong> in the top right corner of the standard SharePoint site template;</p>
<p align="justify"><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image8.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb8.png" width="300" height="80" /></a></p>
<p align="justify"><strong>9.</strong> Now log in with a user who is not a member and you will notice that the <strong>My Site</strong> link no longer appears;</p>
<p align="justify"><a href="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image9.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.domcosgrove.com/wp-content/uploads/2009/11/image_thumb9.png" width="300" height="74" /></a> </p>
<p>Using this approach you can safely deploy My Sites functionality across and enterprise in a controlled fashion. This will allow you to ensure quota’s, content database, site deletion e.t.c are provisioned as per the requirements (governance) of your organisation.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.domcosgrove.com/how-to-perform-a-phased-roll-out-of-sharepoint-mysites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
