<?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>Peter Gerritsen&#039;s blog &#187; SharePoint Profile System</title>
	<atom:link href="http://blog.petergerritsen.nl/tag/sharepoint-profile-system/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.petergerritsen.nl</link>
	<description>about .Net and application platform development</description>
	<lastBuildDate>Tue, 03 Jan 2012 08:03:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>People Search: Use a custom Ranking Model to search in added Profile Properties</title>
		<link>http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 13:37:04 +0000</pubDate>
		<dc:creator>Peter Gerritsen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SharePoint Profile System]]></category>
		<category><![CDATA[SP2010]]></category>

		<guid isPermaLink="false">http://blog.petergerritsen.nl/?p=855</guid>
		<description><![CDATA[When you use the out-of-the box components for searching for people, a generic search with a keyword that is included in an added Profile property will not give the results you might expect. This is especially a problem with the out-of-the-box webpart that shows information about a person: When you click on one of the [...]<p><a href="http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/">People Search: Use a custom Ranking Model to search in added Profile Properties</a> is a post from: <a href="http://blog.petergerritsen.nl">Peter Gerritsen&#039;s blog</a></p>
]]></description>
			<content:encoded><![CDATA[<p>When you use the out-of-the box components for searching for people, a generic search with a keyword that is included in an added Profile property will not give the results you might expect. </p>
<p>This is especially a problem with the out-of-the-box webpart that shows information about a person:<br />
<br/><br />
<a  href="http://blog.petergerritsen.nl/wp-content/uploads/2010/10/Profile-properties-webpart.png" class="thickbox no_icon" rel="gallery-855" title=""><img src="http://blog.petergerritsen.nl/wp-content/uploads/2010/10/Profile-properties-webpart-300x103.png" alt="" title="Profile properties webpart" width="300" height="103" class="size-medium wp-image-856" /></a><br />
When you click on one of the values in this webpart, you will be redirected to the people search results page with the value you clicked passed in as the search keyword:<br />
<br/><br />
<a  href="http://blog.petergerritsen.nl/wp-content/uploads/2010/10/Profile-search-generic.png" class="thickbox no_icon" rel="gallery-855" title=""><img src="http://blog.petergerritsen.nl/wp-content/uploads/2010/10/Profile-search-generic-300x105.png" alt="" title="Profile search generic" width="300" height="105" class="size-medium wp-image-859" /></a><br />
But this will not give you any results. <a  href="http://kgraeme.wordpress.com/2010/07/28/sharepoint-user-profile-custom-properties-keyword-search-problem/">This post</a> by kgreame outlines the same problems and some of the steps he tried to solve this issue. In the comments to that post, a workaround is mentioned: map the matching crawled properties to the ContentsHidden Managed Property.<br />
There is however an other way. In <a  href="http://sharepoint.microsoft.com/blogs/LKuhn/Lists/Posts/Post.aspx?List=29310d0a-1eda-4834-bb4c-06ee575a40c3&#038;ID=52">this post</a> by Larry Kuhn, he explains how the DEFAULTPROPERTIES within the SharePoint Search work. By setting a weight of a Managed Property, you will include it in the ranking model SharePoint uses and the property is therefore added to the default properties that are searched.<br />
SharePoint 2010 introduces the concept of Ranking Models, so the solution mentioned in that blogpost doesn&#8217;t work. We can however create our own Ranking Model. I&#8217;ve copied the information from the Ranking Model that SharePoint uses for People Search and added my own Managed Property, Expertise, with a weight of 1.0:</p>
<pre class="brush: xml">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;rankingModel name=&quot;CustomPeopleRanking&quot; id=&quot;5EA2750C-8165-4f65-BD12-6E6DAAD45FE0&quot; description=&quot;Custom People Ranking&quot; xmlns=&quot;http://schemas.microsoft.com/office/2009/rankingModel&quot;&gt;
  &lt;queryDependentFeatures&gt;
    &lt;queryDependentFeature pid=&quot;177&quot; name=&quot;RankingWeightName&quot; weight=&quot;0.5&quot; lengthNormalization=&quot;0&quot; /&gt;
    &lt;queryDependentFeature pid=&quot;19&quot; name=&quot;PreferredName&quot; weight=&quot;1.0&quot; lengthNormalization=&quot;0&quot; /&gt;
    &lt;queryDependentFeature pid=&quot;24&quot; name=&quot;JobTitle&quot; weight=&quot;2.0&quot; lengthNormalization=&quot;0&quot; /&gt;
    &lt;queryDependentFeature pid=&quot;39&quot; name=&quot;Responsibilities&quot; weight=&quot;1.0&quot; lengthNormalization=&quot;5&quot; /&gt;
    &lt;queryDependentFeature pid=&quot;179&quot; name=&quot;RankingWeightLow&quot; weight=&quot;0.2&quot; lengthNormalization=&quot;5&quot; /&gt;
    &lt;queryDependentFeature pid=&quot;175&quot; name=&quot;ContentsHidden&quot; weight=&quot;0.1&quot; lengthNormalization=&quot;5&quot; /&gt;
    &lt;queryDependentFeature pid=&quot;35&quot; name=&quot;Memberships&quot; weight=&quot;0.25&quot; lengthNormalization=&quot;5&quot; /&gt;
    &lt;queryDependentFeature pid=&quot;178&quot; name=&quot;RankingWeightHigh&quot; weight=&quot;2.0&quot; lengthNormalization=&quot;0&quot; /&gt;
    &lt;queryDependentFeature pid=&quot;180&quot; name=&quot;Pronunciations&quot; weight=&quot;0.05&quot; lengthNormalization=&quot;0&quot; /&gt;
    &lt;queryDependentFeature pid=&quot;408&quot; name=&quot;Expertise&quot; weight=&quot;1.0&quot; lengthNormalization=&quot;0&quot; /&gt;
  &lt;/queryDependentFeatures&gt;
&lt;/rankingModel&gt;
</pre>
<p>We can then add this Ranking Model to SharePoint with Powershell:</p>
<pre class="brush: php">

Get-SPEnterpriseSearchServiceApplication | New-SPEnterpriseSearchRankingModel
</pre>
<p>And paste in the XML of this Ranking Model when Powershell prompts you for it.</p>
<p>But how do we force SharePoint to use this Ranking Model? I&#8217;ve outlined one of the solutions in a <a  href="http://blog.petergerritsen.nl/2010/10/11/let-the-sharepoint-search-web-parts-use-an-other-ranking-model/">previous post</a>. </p>
<p>So after adding a web part that sets the ranking model we can perform the search again:<br/><br />
<a  href="http://blog.petergerritsen.nl/wp-content/uploads/2010/10/Profile-search-after-ranking-model.png" class="thickbox no_icon" rel="gallery-855" title=""><img src="http://blog.petergerritsen.nl/wp-content/uploads/2010/10/Profile-search-after-ranking-model-300x139.png" alt="" title="Profile search after ranking model" width="300" height="139" class="size-medium wp-image-861" /></a><br />
And bingo, the user with this value in an extra profile property shows up in the search results.</p>
<p>Why use this over mapping the properties in the &#8216;ContentsHidden&#8217; Managed Property? As you can see the &#8216;ContentsHidden&#8217; property is included in the Ranking Model with a value of 0.1. If you want to give more weight to a custom property or you have more properties to which you want to assign a different weight, you will need to modify the Ranking Model.</p>
<!-- RO Social Bookmarks BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Twitter"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/twitter.png" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Twitter" alt="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Twitter" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=People+Search%3A+Use+a+custom+Ranking+Model+to+search+in+added+Profile+Properties&#038;c=http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to MySpace"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/myspace.png" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to MySpace" alt="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to MySpace" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/&#038;title=People+Search%3A+Use+a+custom+Ranking+Model+to+search+in+added+Profile+Properties" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Del.icio.us"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/delicious.png" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Del.icio.us" alt="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Del.icio.us" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&#038;url=http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/&#038;title=People+Search%3A+Use+a+custom+Ranking+Model+to+search+in+added+Profile+Properties" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to digg"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/digg.png" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to digg" alt="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to digg" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/&#038;title=People+Search%3A+Use+a+custom+Ranking+Model+to+search+in+added+Profile+Properties" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to reddit"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/reddit.png" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to reddit" alt="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to reddit" /></a><br /><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/&#038;t=People+Search%3A+Use+a+custom+Ranking+Model+to+search+in+added+Profile+Properties" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to FaceBook"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/facebook.png" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to FaceBook" alt="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to FaceBook" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Technorati"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/technorati.png" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Technorati" alt="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Technorati" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/&#038;title=People+Search%3A+Use+a+custom+Ranking+Model+to+search+in+added+Profile+Properties" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Stumble Upon"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/stumbleupon.png" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Stumble Upon" alt="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Stumble Upon" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&#038;output=popup&#038;bkmk=http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/&#038;title=People+Search%3A+Use+a+custom+Ranking+Model+to+search+in+added+Profile+Properties" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Google Bookmarks"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/google.png" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Google Bookmarks" alt="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to Google Bookmarks" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=People+Search%3A+Use+a+custom+Ranking+Model+to+search+in+added+Profile+Properties&#038;url=http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to SlashDot"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/slashdot.png" title="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to SlashDot" alt="Add 'People Search: Use a custom Ranking Model to search in added Profile Properties' to SlashDot" /></a></div><div id="dwcredit"><a  id="dwlogo" href="http://www.dream-webdesign.ro" title="Web design">web design</a></div>
<!-- RO Social Bookmarks END --><p><a  href="http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/">People Search: Use a custom Ranking Model to search in added Profile Properties</a> is a post from: <a  href="http://blog.petergerritsen.nl">Peter Gerritsen&#039;s blog</a></p>
<div class="fblike" style="height:25px; height:25px; overflow:hidden;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.petergerritsen.nl%2F2010%2F10%2F12%2Fpeople-search-use-a-custom-ranking-model-to-search-in-added-profile-properties%2F&amp;layout=standard&amp;show_faces=false&amp;width=320&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allow Transparency="true" style="border:none; overflow:hidden; width:320px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://blog.petergerritsen.nl/2010/10/12/people-search-use-a-custom-ranking-model-to-search-in-added-profile-properties/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>SharePoint Server 2010 User Profile System</title>
		<link>http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 09:47:00 +0000</pubDate>
		<dc:creator>Peter Gerritsen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SharePoint Profile System]]></category>
		<category><![CDATA[SP2010]]></category>

		<guid isPermaLink="false">http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/</guid>
		<description><![CDATA[In SharePoint 2010 there are quite a few interesting changes to the User Profile System. In this post I will outline some of them. Profile types You can specify sub-types for profiles. For each profile property you can configure for which types the property is used. A user will be able to see or edit [...]<p><a href="http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/">SharePoint Server 2010 User Profile System</a> is a post from: <a href="http://blog.petergerritsen.nl">Peter Gerritsen&#039;s blog</a></p>
]]></description>
			<content:encoded><![CDATA[<p>In SharePoint 2010 there are quite a few interesting changes to the User Profile System. In this post I will outline some of them. </p>
<h3>Profile types</h3>
<p>You can specify sub-types for profiles. For each profile property you can configure for which types the property is used. A user will be able to see or edit only those properties that are linked to their Profile type:</p>
<p><a  href="http://blog.petergerritsen.nl/wp-content/uploads/image.png" class="thickbox no_icon" rel="gallery-667" title="image"><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.petergerritsen.nl/wp-content/uploads/image_thumb.png" width="584" height="112" /></a> </p>
<p>In the Profile list or Profile property list you can filter the list by profile sub-type:</p>
<p><a  href="http://blog.petergerritsen.nl/wp-content/uploads/image1.png" class="thickbox no_icon" rel="gallery-667" title="image"><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.petergerritsen.nl/wp-content/uploads/image_thumb1.png" width="584" height="89" /></a> </p>
<h3>Organization profiles</h3>
<p>You can now import organizations from your profile store. This includes options for importing organizations in a hierarchy. The organization profile system also supports specification of Profile Types, so different types of organizations can have different properties.</p>
</p>
</p>
<p><a  href="http://blog.petergerritsen.nl/wp-content/uploads/image2.png" class="thickbox no_icon" rel="gallery-667" title="image"><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.petergerritsen.nl/wp-content/uploads/image_thumb2.png" width="584" height="48" /></a></p>
</p>
</p>
<p>The hierarchy is specified by selecting a parent organization in an organization profile. You can also specify the leaders of an organization and the members of that organization. This will link the specified user profiles to this organization:</p>
<p><a  href="http://blog.petergerritsen.nl/wp-content/uploads/image3.png" class="thickbox no_icon" rel="gallery-667" title="image"><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.petergerritsen.nl/wp-content/uploads/image_thumb3.png" width="584" height="248" /></a> </p>
<h3>Property Synchronization</h3>
<p>Profile properties can now be exported as well. This allows for users to edit a property value which is then updated in your identity store such as Active Directory:</p>
<p><a  href="http://blog.petergerritsen.nl/wp-content/uploads/image4.png" class="thickbox no_icon" rel="gallery-667" title="image"><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.petergerritsen.nl/wp-content/uploads/image_thumb4.png" width="584" height="168" /></a> </p>
<p>This sync is one way only, so a property can be imported or exported, but there’s no option to keep the two values in sync in a bi-directional way. Export to BCS sources is also not supported.</p>
<h3>Term store used for choices</h3>
<p>Properties that are defined with choices are linked to the Term store. So there’s a single management system for choice fields across the SharePoint farm:</p>
<p><a  href="http://blog.petergerritsen.nl/wp-content/uploads/image5.png" class="thickbox no_icon" rel="gallery-667" title="image"><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.petergerritsen.nl/wp-content/uploads/image_thumb5.png" width="584" height="178" /></a> </p>
<p>The property will use the configuration of the Term set to define if users are allowed to use fill-in choices.</p>
<h3>Multiple import connections</h3>
<p>In SharePoint 2007 you were only able to import from one primary store. So importing from 2 or more Active Directories or a custom user database was not supported. In 2010 this is supported. You can now specify more then 1 import connection to import accounts from AD as well as a LDAP or BCS store.</p>
<h3>Import filters</h3>
<p>You can specify exclusion filters for your import connections. This will allow you to filter out user or organization profiles when importing from you identity store:</p>
<p><a  href="http://blog.petergerritsen.nl/wp-content/uploads/image6.png" class="thickbox no_icon" rel="gallery-667" title="image"><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.petergerritsen.nl/wp-content/uploads/image_thumb6.png" width="584" height="192" /></a> </p>
<h3>Conclusion</h3>
<p>The SharePoint team has done quite a big overhaul on the user profile system. A lot of pain points from MOSS 2007 have been solved, the system allows for more granualarity in configuration of the profiles and has been integrated nicely with new functionality such as the Term store (a.k.a. Managed Metadata Service)</p>
<!-- RO Social Bookmarks BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/" title="Add 'SharePoint Server 2010 User Profile System' to Twitter"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/twitter.png" title="Add 'SharePoint Server 2010 User Profile System' to Twitter" alt="Add 'SharePoint Server 2010 User Profile System' to Twitter" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=SharePoint+Server+2010+User+Profile+System&#038;c=http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/" title="Add 'SharePoint Server 2010 User Profile System' to MySpace"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/myspace.png" title="Add 'SharePoint Server 2010 User Profile System' to MySpace" alt="Add 'SharePoint Server 2010 User Profile System' to MySpace" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/&#038;title=SharePoint+Server+2010+User+Profile+System" title="Add 'SharePoint Server 2010 User Profile System' to Del.icio.us"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/delicious.png" title="Add 'SharePoint Server 2010 User Profile System' to Del.icio.us" alt="Add 'SharePoint Server 2010 User Profile System' to Del.icio.us" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&#038;url=http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/&#038;title=SharePoint+Server+2010+User+Profile+System" title="Add 'SharePoint Server 2010 User Profile System' to digg"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/digg.png" title="Add 'SharePoint Server 2010 User Profile System' to digg" alt="Add 'SharePoint Server 2010 User Profile System' to digg" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/&#038;title=SharePoint+Server+2010+User+Profile+System" title="Add 'SharePoint Server 2010 User Profile System' to reddit"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/reddit.png" title="Add 'SharePoint Server 2010 User Profile System' to reddit" alt="Add 'SharePoint Server 2010 User Profile System' to reddit" /></a><br /><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/&#038;t=SharePoint+Server+2010+User+Profile+System" title="Add 'SharePoint Server 2010 User Profile System' to FaceBook"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/facebook.png" title="Add 'SharePoint Server 2010 User Profile System' to FaceBook" alt="Add 'SharePoint Server 2010 User Profile System' to FaceBook" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/" title="Add 'SharePoint Server 2010 User Profile System' to Technorati"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/technorati.png" title="Add 'SharePoint Server 2010 User Profile System' to Technorati" alt="Add 'SharePoint Server 2010 User Profile System' to Technorati" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/&#038;title=SharePoint+Server+2010+User+Profile+System" title="Add 'SharePoint Server 2010 User Profile System' to Stumble Upon"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/stumbleupon.png" title="Add 'SharePoint Server 2010 User Profile System' to Stumble Upon" alt="Add 'SharePoint Server 2010 User Profile System' to Stumble Upon" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&#038;output=popup&#038;bkmk=http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/&#038;title=SharePoint+Server+2010+User+Profile+System" title="Add 'SharePoint Server 2010 User Profile System' to Google Bookmarks"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/google.png" title="Add 'SharePoint Server 2010 User Profile System' to Google Bookmarks" alt="Add 'SharePoint Server 2010 User Profile System' to Google Bookmarks" /></a><a  class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=SharePoint+Server+2010+User+Profile+System&#038;url=http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/" title="Add 'SharePoint Server 2010 User Profile System' to SlashDot"><img src="http://blog.petergerritsen.nl/wp-content/plugins/ro-social-bookmarks/slashdot.png" title="Add 'SharePoint Server 2010 User Profile System' to SlashDot" alt="Add 'SharePoint Server 2010 User Profile System' to SlashDot" /></a></div><div id="dwcredit"><a  id="dwlogo" href="http://www.dream-webdesign.ro" title="Web design">web design</a></div>
<!-- RO Social Bookmarks END --><p><a  href="http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/">SharePoint Server 2010 User Profile System</a> is a post from: <a  href="http://blog.petergerritsen.nl">Peter Gerritsen&#039;s blog</a></p>
<div class="fblike" style="height:25px; height:25px; overflow:hidden;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.petergerritsen.nl%2F2010%2F01%2F07%2Fsharepoint-server-2010-user-profile-system%2F&amp;layout=standard&amp;show_faces=false&amp;width=320&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allow Transparency="true" style="border:none; overflow:hidden; width:320px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://blog.petergerritsen.nl/2010/01/07/sharepoint-server-2010-user-profile-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

