<?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/css" href="http://www.rapidmindsolutions.com/Data/style/rss1.css" ?> <?xml-stylesheet type="text/xsl" href="http://www.rapidmindsolutions.com/Data/xsl/rss1.xsl" ?>
<!--RSS generated by mojoPortal Blog Module V 1.0 on Saturday, May 19, 2012-->
<rss version="2.0">
  <channel>
    <title>Our Blog</title>
    <link>http://www.rapidmindsolutions.com/blog.aspx</link>
    <description />
    <copyright />
    <ttl>120</ttl>
    <managingEditor />
    <generator>mojoPortal Blog Module V 1.0</generator>
    <item>
      <title>How to create a SharePoint portal programmatically using "PortalProvisioningProvider"</title>
      <link>http://www.rapidmindsolutions.com/Blog/ViewPost.aspx?pageid=29&amp;ItemID=3&amp;mid=32</link>
      <pubDate>Wed, 03 Mar 2010 17:26:02 GMT</pubDate>
      <guid>http://www.rapidmindsolutions.com/Blog/ViewPost.aspx?pageid=29&amp;ItemID=3&amp;mid=32</guid>
      <comments>http://www.rapidmindsolutions.com/Blog/ViewPost.aspx?pageid=29&amp;ItemID=3&amp;mid=32</comments>
      <description><![CDATA[<p>
	SharePoint is a great product to use, if you know how to leverage it properly. Thousands of companies out there that use SharePoint sadly miss out on some of the great quirks that SharePoint has to offer. One of my favourite ones is the ability to generate an entire portal structure on the fly. Not only does this save you time in the painstaking process of making sites and subsites (and assigning the right templates to them), but it also provides a clean structure which you can revisit at any time for restructuring or redesign purposes with little effort.</p>
<p>
	<strong>Step 1: Design it</strong></p>
<p>
	Do a high-level design of your portal&#39;s structure based on what you (or client) needs, list all your main sites, and the subsites, and determine who&#39;ll have access to using the different sections and on what<br />
	content. As an example, we&#39;ll set up our portal the following way.</p>
<p>
	1 Home<br />
	2 -Services (For all users)<br />
	3 -Employees (For users of type Employee)<br />
	&nbsp;&nbsp; --TeamBlogs<br />
	&nbsp;&nbsp;&nbsp;--KnowledgeBase<br />
	4 -Clients (For users of type Client)<br />
	&nbsp;&nbsp;&nbsp;--Projects<br />
	&nbsp;&nbsp; --Announcements<br />
	&nbsp;&nbsp; --Stakeholders<br />
	5 -About (For all users)</p>
<p>
	This is our portal structure, notice that under the Employees and Client subsites, I&#39;m creating specific subsites that will cater to the type of user that&#39;s logged in to my portal (If you want to read more on how to manage site groups and permissions, read this article: <em>&quot;Managing Site Groups and Permissions&quot;</em> <u><a href="http://office.microsoft.com/en-us/winsharepointadmin/HA011608101033.aspx">http://office.microsoft.com/en-us/winsharepointadmin/HA011608101033.aspx</a></u>).</p>
<p>
	&nbsp;<strong>Step 2: Manifest it.</strong></p>
<p>
	Create the following file:</p>
<p>
	Your project SharePoint (AKA 12 Hive)<em>\Template\SiteTemplates\RMSIManifest\RMSIPortalHomeManifest.xml</em></p>
<p style="margin-left: 40px">
	&nbsp;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;<br />
	&lt;portal xmlns=&quot;PortalTemplate.xsd&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;web name=&quot;Home&quot; siteDefinition=&quot;RMSIHome#1&quot; displayName=&quot;Home&quot; description=&quot;RMSI Portal Manifest&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;webs&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;web name=&quot;Services&quot; siteDefinition=&quot;RMSIHome#2&quot; displayName=&quot;Services&quot; description=&quot;Services sub-site (List of our services, public announcements, etc)&quot; /&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;web name=&quot;Employees&quot; siteDefinition=&quot;RMSIHome#3&quot; displayName=&quot;Employees&quot; description=&quot;Employees Sub-Site (tailored to each employee)&quot; &gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;webs&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;web name=&quot;TeamBlogs&quot; siteDefinition=&quot;BLOG#0&quot; displayName=&quot;Team Blogs&quot; description=&quot;Blog Site containing personal and technical blog postings from team members.&quot; /&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;web name=&quot;KnowledgeBase&quot; siteDefinition=&quot;WIKI#0&quot; displayName=&quot;Knowledge Base&quot; description=&quot;Wiki Site containing orientation literature and SharePoint related technical posts from team members.&quot; /&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/webs&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/web&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;web name=&quot;Clients&quot; siteDefinition=&quot;RMSIHome#4&quot; displayName=&quot;Clients&quot; description=&quot;Clients Sub-Site (tailored to each client)&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;webs&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;web name=&quot;Projects&quot; siteDefinition=&quot;STS#0&quot; displayName=&quot;Projects&quot; description=&quot;Team Site containing list of client projects, timelines, scheduled meetings, etc.&quot; /&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;web name=&quot;Announcements&quot; siteDefinition=&quot;STS#0&quot; displayName=&quot;Announcements&quot; description=&quot;Team Site containing Project Announcements, including new projects and completed projects.&quot; /&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;web name=&quot;Stakeholders&quot; siteDefinition=&quot;STS#0&quot; displayName=&quot;Stakeholders&quot; description=&quot;Team Site containing Project Stakeholders, including client contacts and team members assigned.&quot; /&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/webs&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/web&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;web name=&quot;About&quot; siteDefinition=&quot;RMSIHome#5&quot; displayName=&quot;About&quot; description=&quot;About Sub-Site (Who We Are, Core values, the leadership team, careers, contact page)&quot; /&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/webs&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/web&gt;<br />
	&lt;/portal&gt;</p>
<p>
	In this case, for the bottom-level subsites (like Employees/Orientation, or Clients/Projects), I&#39;m using OOTB (Out Of The Box) site templates (like &quot;STS#0&quot;, which is the SharePoint Team collaboration site template).&nbsp;</p>
<p>
	By the way, you MUST have the following URL bookmarked; <em>&ldquo;</em><a href="http://blumenthalit.net/blog/Lists/Posts/Post.aspx?ID=45"><em>List of Out of Box (OOB) Site Templates</em></a><em>&rdquo;</em><u><a href="http://blumenthalit.net/blog/Lists/Posts/Post.aspx?List=35b60df2-0af2-4e52-8c6f-d3a64a542f45&amp;ID=45">http://blumenthalit.net/blog/Lists/Posts/Post.aspx?List=35b60df2-0af2-4e52-8c6f-d3a64a542f45&amp;ID=45</a></u></p>
<p>
	In all other cases, I&#39;m using a custom site definition marked with my portal&#39;s home site definition prefix (RMSIHome) followed by a numeric identifier. Note that this is not necessary, you&#39;re better off using the OOTB site templates since they usually have what you would normally need. But if you would rather create a custom site definition rather than use a basic Publishing site, then follow this article through including Step 4.&nbsp;</p>
<p>
	If you want to read more on this discussion (the cons of creating custom site definitions), read: <em>&quot;Andrew Connell&#39;s post on Site Definitions&quot;</em> <u><a href="http://www.andrewconnell.com/blog/archive/2008/02/15/You-dont-need-to-create-site-definitions.aspx">http://www.andrewconnell.com/blog/archive/2008/02/15/You-dont-need-to-create-site-definitions.aspx</a></u></p>
<p>
	<strong><br />
	Step 3: Define it.&nbsp;</strong></p>
<p>
	Create the following &quot;WEBTEMP&quot; file:<br />
	<em>*12 Hive*\Template\1033\XML\webtemp.RMSIPortal.xml</em></p>
<p>
	&nbsp;</p>
<p>
	&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;</p>
<p>
	&lt;Templates xmlns:ows=&quot;Microsoft SharePoint&quot;&gt;</p>
<p>
	&nbsp; &lt;Template Name=&quot;RMSIPortal&quot; ID=&quot;10010&quot;&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp; &lt;Configuration ID=&quot;1&quot;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Title=&quot;RMSI Portal&quot;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Description=&quot;RMSI Intranet Home Web&quot;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ImageUrl=&quot;/_layouts/images/blankprev.png&quot;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RootWebOnly=&quot;TRUE&quot;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Hidden=&quot;FALSE&quot;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DisplayCategory=&quot;RMSI&quot;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ProvisionAssembly=&quot;Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c&quot;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ProvisionClass=&quot;Microsoft.SharePoint.Publishing.PortalProvisioningProvider&quot;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ProvisionData=&quot;SiteTemplates\\RMSIManifest\\RMSIPortalHomeManifest.xml&quot;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /&gt;</p>
<p>
	&nbsp; &lt;/Template&gt;</p>
<p>
	&lt;/Templates&gt;&nbsp;</p>
<p>
	Notice that we&#39;re leveraging the &quot;PortalProvisioningProvider&quot; (which implements SPWebProvisioningProvider), this takes the data found in &quot;RMSIPortalHomeManifest.xml&quot; from Step 1, and generates a portal structure based on that information. If you want exact details on the properties I used in the above example, read this article: <a href="http://blogs.technet.com/apurdon/default.aspx">http://blogs.technet.com/apurdon/default.aspx</a></p>
<p>
	Important! I&#39;ve run into the problem where I was in an infinite loop and produced a vague &quot;Stack Overflow&quot; error. Took me a while to figure out that the reason was because I was using the same name in my Portal template (above) as in the site template &quot;RMSIHome&quot; (below) so save yourself some trouble, and ensure that they&#39;re different as we&#39;re doing here (in this case, I&#39;ve named my template &quot;RMSIPortal&quot;).&nbsp;&nbsp;</p>
<p>
	<strong>Step 4 (optional): Site-Define it!</strong></p>
<p>
	This step is only needed if you&#39;re creating custom site definitions, so if all you&#39;re using are OOTB templates like STS#0, you can skip this step.&nbsp;</p>
<p>
	Under SiteTemplates, create a folder called RMSIHome (this HAS to match your siteDefinition name prefix designated in your manifest file). In this folder, you will set up an ONET.xml file (which stands for an Office .NET file). You can reuse one of the OOTB Site Templates for this from this location: <em>c:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\SiteTemplates</em></p>
<p>
	Now, your file will contain all your site definitions indicated in Step 2, with the features used in each one of them, i.e.:&nbsp;</p>
<p>
	&lt;Configurations&gt;</p>
<p>
	&nbsp; &lt;!-- Home --&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp; &lt;Configuration ID=&quot;1&quot; Name=&quot;Home&quot;&nbsp; CustomMasterUrl=&quot;_catalogs/masterpage/YourIntranet.master&quot;&gt;&nbsp;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;SiteFeatures&gt;&nbsp;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- In here you will include any custom or OOTB Site Features --&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- BasicWebParts Feature --&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Feature ID=&quot;00BFEA71-1C5E-4A24-B310-BA51C3EB7A57&quot; /&gt;&nbsp;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- Three-state Workflow Feature --&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Feature ID=&quot;FDE5D850-671E-4143-950A-87B473922DC7&quot; /&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; ....</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/SiteFeatures&gt;&nbsp;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;WebFeatures&gt;&nbsp;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- In here you will include any custom or OOTB Web Features --&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- TeamCollab Feature --&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Feature ID=&quot;00BFEA71-4EA5-48D4-A4AD-7EA5C011ABE5&quot; /&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- MobilityRedirect Feature --&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Feature ID=&quot;F41CC668-37E5-4743-B4A8-74D1DB3FD8A4&quot; /&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; ...</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/WebFeatures&gt;&nbsp;</p>
<p>
	&nbsp;&nbsp;&nbsp; &lt;/Configuration&gt;&nbsp;</p>
<p>
	&nbsp; &lt;!-- Welcome --&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp; &lt;Configuration ID=&quot;2&quot; Name=&quot;Welcome&quot; CustomMasterUrl=&quot;/_catalogs/masterpage/YourIntranet.master&quot;&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ...</p>
<p>
	&nbsp;&nbsp;&nbsp; &lt;/Configuration&gt;&nbsp;</p>
<p>
	&nbsp; &lt;!-- Employees --&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp; &lt;Configuration ID=&quot;3&quot; Name=&quot;Employees&quot; CustomMasterUrl=&quot;/_catalogs/masterpage/YourIntranet.master&quot;&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ...</p>
<p>
	&nbsp;&nbsp;&nbsp; &lt;/Configuration&gt;&nbsp;</p>
<p>
	&nbsp; &lt;!-- Client --&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp; &lt;Configuration ID=&quot;4&quot; Name=&quot;Client&quot; CustomMasterUrl=&quot;/_catalogs/masterpage/YourIntranet.master&quot;&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ...</p>
<p>
	&nbsp;&nbsp;&nbsp; &lt;/Configuration&gt;&nbsp;</p>
<p>
	&nbsp; &lt;!-- About --&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp; &lt;Configuration ID=&quot;5&quot; Name=&quot;About&quot; CustomMasterUrl=&quot;/_catalogs/masterpage/YourIntranet.master&quot;&gt;</p>
<p>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ...</p>
<p>
	&nbsp;&nbsp;&nbsp; &lt;/Configuration&gt;</p>
<p>
	&lt;/Configurations&gt;</p>
<p>
	&nbsp;</p>
<p>
	<strong>Notes:</strong></p>
<p>
	&nbsp;<em>What is Three-State Workflow?</em></p>
<p>
	This feature is used to track the status of a list item in three phases. As per the article below, &quot;it can be used to manage business processes that require organizations to track a high volume of issues or items, such as customer support issues, sales leads, or project tasks.&quot;</p>
<p>
	More info: &quot;Use a Three-state workflow&quot; <u><a href="http://office.microsoft.com/en-us/help/HA101544311033.aspx">http://office.microsoft.com/en-us/help/HA101544311033.aspx</a></u></p>
<p>
	<em>What is a TeamCollab Feature?</em></p>
<p>
	This tells your site how to activate certain features that define the collaboration lists and libraries in a given &quot;Team Collaboration&quot; Site.&nbsp;</p>
<p>
	<em>What is the MobilityRedirect Feature?</em></p>
<p>
	This feature allows you to support pocket PC and other PDA browsers by taking them to a customized &quot;/m/default.aspx&quot; page in your site. If you think mobility would be useful for your site, read this: &quot;Custom Mobility Pages for SharePoint&quot; <a href="http://www.iwkid.com/blog/Lists/Posts/Post.aspx?ID=36">http://www.iwkid.com/blog/Lists/Posts/Post.aspx?ID=36</a></p>
<p>
	&nbsp;For a list of all Farm, Site and Web Features in MOSS 2007 and their GUID&#39;s, check this link:</p>
<p>
	&quot;List of Features with GUIDs&quot; <u><a href="http://www.thorprojects.com/blog/archive/2007/05/16/list-of-features-with-guids.aspx">http://www.thorprojects.com/blog/archive/2007/05/16/list-of-features-with-guids.aspx</a></u></p>
<p>
	<strong>Step 4:&nbsp;Deploy it!<br />
	</strong>That&#39;s it! Go ahead and build to make sure there are no build errors, then do an IISReset (or just reset the app pool that your site collection is running under, this is usually faster).</p>
<p>
	Now, depending on the way you have&nbsp;your project&nbsp;set up, you can either have the&nbsp;portal provision as part of your deployment script, or do it manually in Central Admin (after you deploy it), at the &quot;Create Site Collection&quot; option in the &quot;Application Management&quot; tab&nbsp;(note that the site template will only show up&nbsp;in the list of templates&nbsp;if&nbsp;you have the property HIDDEN=FALSE, in <em>webtemp.RMSIPortal.xml</em>).</p>
<p>
	And by the way, if you aren&#39;t using the SharePoint Solutions Package Creation Tool (WSPBuilder), you should: <a href="http://www.codeplex.com/wspbuilder">http://www.codeplex.com/wspbuilder</a></p>
<p>
	<strong>Signing off!</strong></p>
<p>
	Salem Al-Tamimi<br />
	SharePoint Consultant<br />
	RapidMind Solutions Inc.</p>
]]></description>
    </item>
  </channel>
</rss>
