<?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>SharePoint Randy</title>
	<atom:link href="http://www.sharepointrandy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharepointrandy.com</link>
	<description>SharePoint and related topics</description>
	<lastBuildDate>Sat, 04 Feb 2012 12:59:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Creating a Content Type Hub in SharePoint 2010</title>
		<link>http://www.sharepointrandy.com/2012/02/04/creating-a-content-type-hub-in-sharepoint-2010/</link>
		<comments>http://www.sharepointrandy.com/2012/02/04/creating-a-content-type-hub-in-sharepoint-2010/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 12:53:36 +0000</pubDate>
		<dc:creator>SharePointRandy</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Content Type Hub]]></category>
		<category><![CDATA[Content Type Syndication Hub]]></category>
		<category><![CDATA[Enable-SPFeature]]></category>
		<category><![CDATA[Managed Path]]></category>
		<category><![CDATA[New-SPContentDatabase]]></category>
		<category><![CDATA[New-SPManagedPath]]></category>
		<category><![CDATA[New-SPSite]]></category>
		<category><![CDATA[Set-SPContentDatabase]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.sharepointrandy.com/?p=162</guid>
		<description><![CDATA[This blog post is a guide on how to create a Content Type Hub Site Collection located in the root of a Web Application within its own database. Create a Content Type Hub Database I like to have my Content Type Hub Site Collection in its own database. Here is the code/example to create a <a href='http://www.sharepointrandy.com/2012/02/04/creating-a-content-type-hub-in-sharepoint-2010/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>This blog post is a guide on how to create a Content Type Hub Site Collection located in the root of a Web Application within its own database.</p>
<h2>Create a Content Type Hub Database</h2>
<p>I like to have my Content Type Hub Site Collection in its own database. Here is the code/example to create a database for the content type hub.</p>
<p>Example</p>
<p>$CTHDBName = &#8220;ContentTypeHub_DB&#8221;</p>
<p>$WebApplicationURL = &#8220;http://SharePointRandy/&#8221;</p>
<p>New-SPContentDatabase -Name ContentTypeHub_DB -WebApplication $WebApplicationURL</p>
<p>Further reading <a href="http://technet.microsoft.com/en-us/library/ff607572.aspx" target="_blank">http://technet.microsoft.com/en-us/library/ff607572.aspx</a></p>
<h2>Create a Managed Path</h2>
<p>As I want my Content Type Hub to be at the root of my Web Application (http://&lt;webapplication&gt;/contenttypehub) I need to create a managed path. The PowerShell to do this is here:</p>
<p>Example</p>
<p>$RelativeURL = &#8220;/ContentTypeHub&#8221;</p>
<p>$WebApplicationURL = &#8220;http://SharePointRandy/&#8221;</p>
<p>New-SPManagedPath -RelativeURL $RelativeURL -WebApplication $WebApplicationURL<em><br />
</em>-Explicit</p>
<p>Further reading <a href="http://technet.microsoft.com/en-us/library/ff607693.aspx" target="_blank">http://technet.microsoft.com/en-us/library/ff607693.aspx</a></p>
<h2>Create Content Type Hub Site Collection</h2>
<p>It is easy to create a Content Database through the GUI but to ensure it is located in the database just created it is easier to do in PowerShell with the –ContentDatabase Parameter.</p>
<p>Example</p>
<p>$CTHurl = &#8220;http://SharePointRandy/ContentTypeHub&#8221;</p>
<p>$CTHOwnerAlias = &#8220;&lt;domain&gt;\&lt;user&gt;&#8221;</p>
<p>$CTHTemplate = &#8220;STS#1&#8243;</p>
<p>$CTHDBName = &#8220;ContentTypeHub_DB&#8221;</p>
<p>New-SPSite -Url $CTHurl -OwnerAlias $CTHOwnerAlias -Template $CTHTemplate -ContentDatabase $CTHDBName</p>
<p>Further reading <a href="http://technet.microsoft.com/en-us/library/ff607937.aspx">http://technet.microsoft.com/en-us/library/ff607937.aspx</a></p>
<p>As I don&#8217;t want to use the Content Type Hub Site Collection for anything else I like to prevent further Site Collections being created in the Content Type Hub database. To do this, run the following PowerShell:</p>
<p>Example</p>
<p>$CTHDBName = ContentTypeHub_DB</p>
<p>Set-SPContentDatabase -Identity $CTHDBName -Status Offline</p>
<p>Further reading <a href="http://technet.microsoft.com/en-us/library/ff607912.aspx" target="_blank">http://technet.microsoft.com/en-us/library/ff607912.aspx</a></p>
<h2>Activate Content Type Syndication Hub</h2>
<p>You need to activate the Content Type Syndication Hub feature to allow the Managed Metadata Service Application to connect to the Content Type Hub Site Collection.</p>
<p>$CTHurl = &#8220;http://SharePointRandy/ContentTypeHub&#8221;</p>
<p>Enable-SPFeature -Identity 9a447926-5937-44cb-857a-d3829301c73b -Url $CTHurl</p>
<h2>Connect the Managed Metadata Service Application to the Content Type Hub</h2>
<p>To connect the Managed Metadata Service Application to the Content Type Hub you need to use the command Set-SPMetadataServiceApplication. I&#8217;ll explain this in another blog post but for now see: <a href="http://technet.microsoft.com/en-us/library/ff607738.aspx" target="_blank">http://technet.microsoft.com/en-us/library/ff607738.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointrandy.com/2012/02/04/creating-a-content-type-hub-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SUGUK:EA 2012-03-20</title>
		<link>http://www.sharepointrandy.com/2012/02/03/sugukea-2012-03-20/</link>
		<comments>http://www.sharepointrandy.com/2012/02/03/sugukea-2012-03-20/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 20:15:17 +0000</pubDate>
		<dc:creator>SharePointRandy</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Book]]></category>
		<category><![CDATA[Matt Hughes]]></category>
		<category><![CDATA[Paul Hunt]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SUGUK]]></category>
		<category><![CDATA[SUGUK East Anglia]]></category>
		<category><![CDATA[SUGUKEA]]></category>

		<guid isPermaLink="false">http://www.sharepointrandy.com/?p=157</guid>
		<description><![CDATA[Click here to register for the next SUGUK:EA  event. We hope to have some books to give away, details to follow.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sharepointrandy.com/wp-content/uploads/2011/09/sugukea.png"><img class="alignright size-full wp-image-153" title="sugukea" src="http://www.sharepointrandy.com/wp-content/uploads/2011/09/sugukea.png" alt="" width="354" height="96" /></a>Click <a title="SUGUK:EA" href="http://sugukea009.eventbrite.com/" target="_blank">here</a> to register for the next SUGUK:EA  event. We hope to have some books to give away, details to follow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointrandy.com/2012/02/03/sugukea-2012-03-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SUGUK:EA 2011-11-02</title>
		<link>http://www.sharepointrandy.com/2011/09/28/sugukea-2011-11-02/</link>
		<comments>http://www.sharepointrandy.com/2011/09/28/sugukea-2011-11-02/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 18:33:44 +0000</pubDate>
		<dc:creator>SharePointRandy</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[@baddaz]]></category>
		<category><![CDATA[@sharepointrandy]]></category>
		<category><![CDATA[Benjamin Athawes]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[John Timney]]></category>
		<category><![CDATA[Posters]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SUGUK]]></category>
		<category><![CDATA[SUGUKEA]]></category>

		<guid isPermaLink="false">http://www.sharepointrandy.com/?p=152</guid>
		<description><![CDATA[Click here to register for the next SUGUK:EA  event. We hope to have some books and posters to give away, details to follow.]]></description>
			<content:encoded><![CDATA[<p>Click <a title="SUGUK:EA" href="http://sugukea007-sharepointrandy.eventbrite.com" target="_blank">here </a>to register for the next SUGUK:EA  event. We hope to have some books and posters to give away, details to follow.<a href="http://www.sharepointrandy.com/wp-content/uploads/2011/09/sugukea.png"><img class="alignright size-full wp-image-153" title="sugukea" src="http://www.sharepointrandy.com/wp-content/uploads/2011/09/sugukea.png" alt="" width="354" height="96" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointrandy.com/2011/09/28/sugukea-2011-11-02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SUGUKEA 2011-09-20</title>
		<link>http://www.sharepointrandy.com/2011/09/03/sugukea-2011-09-20/</link>
		<comments>http://www.sharepointrandy.com/2011/09/03/sugukea-2011-09-20/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 10:45:04 +0000</pubDate>
		<dc:creator>SharePointRandy</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Giles Hamson]]></category>
		<category><![CDATA[Project Server]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[SUGUK]]></category>
		<category><![CDATA[SUGUK East Anglia]]></category>
		<category><![CDATA[Symon Garfield]]></category>

		<guid isPermaLink="false">http://www.sharepointrandy.com/?p=139</guid>
		<description><![CDATA[Please register for the next SharePoint User Group UK in East Anglia: Sessions: Symon Garfield- Working Together: The Secrets of Collaboration and  Enterprise Social Computing with SharePoint 2010 Giles Hamson &#8211; Integration of Project Server and SharePoint 2010: Not just another Managed Service within SharePoint Online Ticketing for SharePoint User Group &#8211; East Anglia &#8211; 20th <a href='http://www.sharepointrandy.com/2011/09/03/sugukea-2011-09-20/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Please register for the next SharePoint User Group UK in East Anglia:</p>
<p>Sessions:</p>
<ul>
<li>Symon Garfield- Working Together: The Secrets of Collaboration and  Enterprise Social Computing with SharePoint 2010</li>
<li>Giles Hamson &#8211; Integration of Project Server and SharePoint 2010: Not just another Managed Service within SharePoint</li>
</ul>
<p><iframe src="http://www.eventbrite.com/tickets-external?eid=2045527227&amp;ref=etckt" frameborder="0" marginwidth="5" marginheight="5" scrolling="auto" width="100%" height="192"></iframe></p>
<div style="font-family: Helvetica, Arial; font-size: 10px; padding: 5px 0 5px; margin: 2px; width: 100%; text-align: left;"><a style="color: #ddd; text-decoration: none;" href="http://www.eventbrite.com/r/etckt" target="_blank">Online Ticketing</a><span style="color: #ddd;"> for </span><a style="color: #ddd; text-decoration: none;" href="http://sugukea006.eventbrite.com?ref=etckt" target="_blank">SharePoint User Group &#8211; East Anglia &#8211; 20th September</a><span style="color: #ddd;"> powered by </span><a style="color: #ddd; text-decoration: none;" href="http://www.eventbrite.com?ref=etckt" target="_blank">Eventbrite</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointrandy.com/2011/09/03/sugukea-2011-09-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Saturday UK 2011</title>
		<link>http://www.sharepointrandy.com/2011/08/08/sharepoint-saturday-uk-2011/</link>
		<comments>http://www.sharepointrandy.com/2011/08/08/sharepoint-saturday-uk-2011/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 17:44:29 +0000</pubDate>
		<dc:creator>SharePointRandy</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[SharePoint Saturday]]></category>
		<category><![CDATA[SharePoint Saturday UK 2011]]></category>
		<category><![CDATA[spsuk11]]></category>

		<guid isPermaLink="false">http://www.sharepointrandy.com/?p=134</guid>
		<description><![CDATA[I am attending SharePoint Saturday UK 2011 Badge by Alex Pearce]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl id="attachment_133" class="wp-caption alignleft" style="width: 192px;">
<dt class="wp-caption-dt"><a href="http://www.sharepointrandy.com/wp-content/uploads/2011/04/Im-attending-SPS_UK_11_thumb.png"><img class="size-full wp-image-133" title="SharePoint Saturday UK 2011" src="http://www.sharepointrandy.com/wp-content/uploads/2011/04/Im-attending-SPS_UK_11_thumb.png" alt="SharePoint Saturday UK 2011" width="182" height="125" /></a></dt>
<dd class="wp-caption-dd">I am attending SharePoint Saturday UK 2011</dd>
</dl>
<p>Badge by Alex Pearce</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointrandy.com/2011/08/08/sharepoint-saturday-uk-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>European SharePoint Best Practice Conference 2011</title>
		<link>http://www.sharepointrandy.com/2011/04/15/european-sharepoint-best-practice-conference-2011/</link>
		<comments>http://www.sharepointrandy.com/2011/04/15/european-sharepoint-best-practice-conference-2011/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 21:28:47 +0000</pubDate>
		<dc:creator>SharePointRandy</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[European SharePoint Best Practices Conference]]></category>
		<category><![CDATA[MoSCoW]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.sharepointrandy.com/?p=127</guid>
		<description><![CDATA[Here are my slides from the European SharePoint Best Practice Conference 2011. Is SharePoint 2010 the panacea to the shortcomings &#38; difficulties we had with SharePoint 2007? By Randy Perkins View more presentations from Randy Perkins]]></description>
			<content:encoded><![CDATA[<p>Here are my slides from the European SharePoint Best Practice Conference 2011.</p>
<div id="__ss_7642518" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="Is SharePoint 2010 the panacea to the shortcomings &amp; difficulties we had with SharePoint 2007? By Randy Perkins" href="http://www.slideshare.net/sharepointrandy/is-sharepoint-2010-the-panacea-to-the-shortcomings-difficulties-we-had-with-sharepoint-2007-by-randy-perkins">Is SharePoint 2010 the panacea to the shortcomings &amp; difficulties we had with SharePoint 2007? By Randy Perkins</a></strong></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/sharepointrandy">Randy Perkins</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointrandy.com/2011/04/15/european-sharepoint-best-practice-conference-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePint Night</title>
		<link>http://www.sharepointrandy.com/2011/04/03/sharepoint_best_practicessharepint-html/</link>
		<comments>http://www.sharepointrandy.com/2011/04/03/sharepoint_best_practicessharepint-html/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 09:29:02 +0000</pubDate>
		<dc:creator>SharePointRandy</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[European SharePoint Best Practices Conference]]></category>
		<category><![CDATA[SharePint]]></category>

		<guid isPermaLink="false">http://www.sharepointrandy.com/?p=122</guid>
		<description><![CDATA[A chance for everyone and anyone to meet up with the speakers, SharePoint MVPs and Industry Experts from the European Best Practices SharePoint Conference. More details: here: http://sharepointbestpractices.co.uk/SharePint.html]]></description>
			<content:encoded><![CDATA[<p><a href="http://sharepointbestpractices.co.uk/SharePint.html"><img class=" alignright" title="SharePint Night" src="http://sharepointbestpractices.co.uk/images/sharepintlargeblack.png" alt="SharePint Night" width="330" height="106" /></a></p>
<p>A chance for everyone and anyone to meet up with the speakers, SharePoint MVPs and Industry Experts from the European Best Practices SharePoint Conference.</p>
<p>More details: here:<br />
<a href="http://sharepointbestpractices.co.uk/SharePint.html">http://sharepointbestpractices.co.uk/SharePint.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointrandy.com/2011/04/03/sharepoint_best_practicessharepint-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>European SharePoint Best Practices Conference</title>
		<link>http://www.sharepointrandy.com/2011/02/08/european-sharepoint-best-practices-conference/</link>
		<comments>http://www.sharepointrandy.com/2011/02/08/european-sharepoint-best-practices-conference/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 21:12:12 +0000</pubDate>
		<dc:creator>SharePointRandy</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[European SharePoint Best Practices Conference]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Speaker]]></category>

		<guid isPermaLink="false">http://www.sharepointrandy.com/?p=117</guid>
		<description><![CDATA[I&#8217;ll be speaking at the European SharePoint Best Practices Conference this year as one of the community track speakers. For details please visit the site: http://www.sharepointbestpractices.co.uk/]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sharepointrandy.com/wp-content/uploads/2011/02/bpc-email-banner_speaking.png"><img class="size-full wp-image-118 alignright" title="Euopean SharePoint Best Practices Conference 2011" src="http://www.sharepointrandy.com/wp-content/uploads/2011/02/bpc-email-banner_speaking.png" alt="Euopean SharePoint Best Practices Conference 2011" width="131" height="127" /></a>I&#8217;ll be speaking at the European SharePoint Best Practices Conference this year as one of the community track speakers. For details please visit the site: <a href="http://www.sharepointbestpractices.co.uk/">http://www.sharepointbestpractices.co.uk/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointrandy.com/2011/02/08/european-sharepoint-best-practices-conference/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web Designers vs Web Developers</title>
		<link>http://www.sharepointrandy.com/2011/01/31/web-designers-vs-web-developers/</link>
		<comments>http://www.sharepointrandy.com/2011/01/31/web-designers-vs-web-developers/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 20:57:23 +0000</pubDate>
		<dc:creator>SharePointRandy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Humour]]></category>
		<category><![CDATA[Infographic]]></category>
		<category><![CDATA[Web Designers]]></category>
		<category><![CDATA[Web Developers]]></category>

		<guid isPermaLink="false">http://www.sharepointrandy.com/?p=115</guid>
		<description><![CDATA[Web Designers vs Web Developers is brought to you by Wix.com Use creative design to make a Free Website You are most welcome to share this infographic with your audience.]]></description>
			<content:encoded><![CDATA[<p><a title="Website Builder" href="http://www.wix.com/"><img title="free website" src="http://www.landingpages.co.il/wix/web-designers-vs-developers.png" border="0" alt="free website builder" /></a></p>
<p>Web Designers vs Web Developers is brought to you by Wix.com<br />
Use creative design to make a <a href="http://www.wix.com">Free Website</a><br />
You are most welcome to share this infographic with your audience.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointrandy.com/2011/01/31/web-designers-vs-web-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SUGUKEA 2011-01-30</title>
		<link>http://www.sharepointrandy.com/2011/01/30/sugukea-2011-01-30/</link>
		<comments>http://www.sharepointrandy.com/2011/01/30/sugukea-2011-01-30/#comments</comments>
		<pubDate>Sun, 30 Jan 2011 15:41:55 +0000</pubDate>
		<dc:creator>SharePointRandy</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[InfoPath]]></category>
		<category><![CDATA[InfoPath 2010]]></category>
		<category><![CDATA[Jess Meats]]></category>
		<category><![CDATA[Peter Baddeley]]></category>
		<category><![CDATA[SharePoint Foundation]]></category>
		<category><![CDATA[SUGUK]]></category>
		<category><![CDATA[SUGUK East Anglia]]></category>
		<category><![CDATA[SUGUKEA]]></category>

		<guid isPermaLink="false">http://www.sharepointrandy.com/?p=110</guid>
		<description><![CDATA[Last week I attended the SUGUKEA (http://suguk.org/forums/48/ShowForum.aspx). Once again the audience were treated to two very good presentations. The first was by Jess Meats (http://blogs.technet.com/b/jessmeats/ ) on InfoPath. She demonstrated a number of the improvements to InfoPath as well as highlighted some of the general functionality. The Second presentation was by Peter Baddeley (www.baddaz.com). Peter <a href='http://www.sharepointrandy.com/2011/01/30/sugukea-2011-01-30/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Last week I attended the SUGUKEA (<a href="http://suguk.org/forums/48/ShowForum.aspx">http://suguk.org/forums/48/ShowForum.aspx</a>). Once again the audience were treated to two very good presentations.</p>
<p>The first was by Jess Meats (<a title="Jess Meats" href="http://blogs.technet.com/b/jessmeats/" target="_blank">http://blogs.technet.com/b/jessmeats/</a> ) on InfoPath. She demonstrated a number of the improvements to InfoPath as well as highlighted some of the general functionality.</p>
<p>The Second presentation was by Peter Baddeley (<a title="Baddaz" href="http://www.baddaz.com" target="_blank">www.baddaz.com</a>). Peter took showed how quickly it was possible to build business tools on top of SharePoint Foundation 2010 and how it has improved since WSS 3.0.<br />
If there is anyone out there who wishes to present at the user group then let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointrandy.com/2011/01/30/sugukea-2011-01-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

