<?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>Kristof Kowalski &#187; SharePoint</title>
	<atom:link href="http://www.kowalski.ms/category/sharepoint/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kowalski.ms</link>
	<description></description>
	<lastBuildDate>Thu, 31 Mar 2011 12:08:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>SharePoint 2010 Export Managed Metadata Terms from the Term Store</title>
		<link>http://www.kowalski.ms/2011/03/31/sharepoint-2010-export-managed-metadata-terms-from-the-term-store/</link>
		<comments>http://www.kowalski.ms/2011/03/31/sharepoint-2010-export-managed-metadata-terms-from-the-term-store/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 12:08:03 +0000</pubDate>
		<dc:creator>Kristof</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.kowalski.ms/?p=300</guid>
		<description><![CDATA[As part of our SharePoint 2010 deployment here, we make extensive use of the new Managed Metadata Service Application. To ensure we have concise and correct terms we have Term Store Managers that check on a weekly basis the validity of these terms. Some of the tests they check is duplicaiton or terms, correct spelling and [...]]]></description>
			<content:encoded><![CDATA[<p>As part of our SharePoint 2010 deployment here, we make extensive use of the new Managed Metadata Service Application. To ensure we have concise and correct terms we have Term Store Managers that check on a weekly basis the validity of these terms. Some of the tests they check is duplicaiton or terms, correct spelling and just general term lifecycle itself.</p>
<p>I&#8217;ve checked around and there are plenty of scripts around that instruct you to upload and create terms through PowerShell, but we needed a quick way to export our current terms and find out who created the term and when. So here&#8217;s a litte script you can schedule to run each week.</p>
<p>One thing to check for is the name of the Term Store you bind, which shoukd be listed via the Get-SPTaxonomySession cmdlet.</p>
<pre>
# Add SharePoint PowerShell Snapin
Add-PSSnapin Microsoft.SharePoint.PowerShell

# File and Drectory Location
$date = get-date -Format yyyyMMdd
$dirLocation = "\\server\share\Taxonomy\Terms\"
New-Item ($dirLocation + $date) -type directory | Out-Null

# Connect to Central Admininistration Site
$taxonomySite = Get-SPSite http://server:31337

# Connect to Term Store in the Managed Metadata Service Application
$taxonomySession = Get-SPTaxonomySession -site $taxonomySite
$termStore = $taxonomySession.TermStores["Managed Metadata Service (Enterprise)"]

# Connect to the Profiles Term Group
$termStoreGroup = $termStore.Groups["Profiles"]

# Export Terms as .csv for each Term Set
foreach ($termSet in $termStoreGroup.TermSets.GetEnumerator()) {
$termSet.Terms | select Name, Owner, CreatedDate, LastModifiedDate | Export-Csv ($dirLocation + $date + "\Terms-" + $termStore.Groups["Profiles"].Name + "-" + $termSet.Name + ".csv")
}

# Connect to the System Term Group
$termStoreGroup = $termStore.Groups["System"]

# Export Terms as .csv for each Term Set
foreach ($termSet in $termStoreGroup.TermSets.GetEnumerator()) {
$termSet.Terms | select Name, Owner, CreatedDate, LastModifiedDate | Export-Csv ($dirLocation + $date + "\Terms-" + $termStore.Groups["System"].Name + "-" + $termSet.Name + ".csv")
}
</pre>
<p>With the above script that will export all your Terms with the Name, Term Owener, Creation Date and Last Modificaiton Date. Our Term Store Managers like to review the terms on a weekly basis so all that needs to be run later is the following couple of lines per each Term Set;</p>
<pre>
# If you want see what terms have changed since last export, ie 7 days
$dateToCompare = (Get-date).AddDays(-7)
Import-Csv '.\Terms-Previous Employers.csv' | Where-Object {$_.LastModifiedDate -gt $dateToCompare} | Sort-Object {$_.LastModifiedDate} -Descending
</pre>
<p>I&#8217;ll alter the above script later to iterate through all the Term Set csv files to then export the changes in a further update. For now, enjoy.</p>
<p>Cheers,</p>
<p>Kristof Kowalski | kristof@kowalski.ms</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.kowalski.ms%2F2011%2F03%2F31%2Fsharepoint-2010-export-managed-metadata-terms-from-the-term-store%2F&amp;title=SharePoint%202010%20Export%20Managed%20Metadata%20Terms%20from%20the%20Term%20Store" id="wpa2a_2">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kowalski.ms/2011/03/31/sharepoint-2010-export-managed-metadata-terms-from-the-term-store/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Trials and Tribulations of the SharePoint Server 2010 User Profile Service Application</title>
		<link>http://www.kowalski.ms/2010/09/24/trials-and-tribulations-of-the-sharepoint-server-2010-user-profile-service-application/</link>
		<comments>http://www.kowalski.ms/2010/09/24/trials-and-tribulations-of-the-sharepoint-server-2010-user-profile-service-application/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 10:01:04 +0000</pubDate>
		<dc:creator>Kristof</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.kowalski.ms/?p=291</guid>
		<description><![CDATA[For us, identity is such a big piece of work so we wanted to centralise the whole import and transform process with a publishing and consuming farm topology. We import users from Active Directory here and also supplement the profiles with additional data from third party databases and LOB systems such as Oracle databases, JD [...]]]></description>
			<content:encoded><![CDATA[<p>For us, identity is such a big piece of work so we wanted to centralise the whole import and transform process with a publishing and consuming farm topology. We import users from Active Directory here and also supplement the profiles with additional data from third party databases and LOB systems such as Oracle databases, JD Edwards and other custom identity solutions.</p>
<p>Sure there are other methods of achieving this, but we didn’t want to litter our other farms with the User Profile Service Application and then use the User Profile Replication Engine (<a href="http://technet.microsoft.com/en-us/library/cc663011.aspx" target="_blank">http://technet.microsoft.com/en-us/library/cc663011.aspx</a>) which comes with the SharePoint 2010 Administration Toolkit (<a href="http://technet.microsoft.com/en-us/library/cc508849.aspx" target="_blank">http://technet.microsoft.com/en-us/library/cc508849.aspx</a>). There’s extra storage to consider based on the service application per user profile and also the extra administrative overhead but you might still want to have a look into it. All I’m saying is, it wasn’t right for us.</p>
<p>I’ve been pulling my hair out for the last several days and thought I would share some of the knowledge to save people out from that same bizarre issues that I’ve come across. So here we go.</p>
<p>Scenario:</p>
<p>You have two SharePoint Server 2010 farms, one Enterprise (Publishing) and one Collaborative (Consuming) farm. On the Enterprise farm you have your User Profile Service Application that you are publishing to any consuming farms. Your end users are accessing sites on the consuming farm for their collaborative sites as well as their My Sites.</p>
<p><strong>Problems:</strong></p>
<div id="_mcePaste">Some of the problems that I encountered along were as follows, each one of these pretty much has an associated fix.</div>
<div id="_mcePaste">•	When the end user searches for any colleagues in the collaborative farm they only see data that has been presented in Active Directory without any supplemented details from the User Profile Application (UPA).</div>
<div id="_mcePaste" style="padding-left: 30px;">•	When you add  a user to your site you don’t received supplemented details such as About Me.</div>
<div id="_mcePaste" style="padding-left: 30px;">•	When you create a My Site on your collaborative farm you receive the following errors;</div>
<div id="_mcePaste" style="padding-left: 60px;">- <span style="color: #ff0000;">Could not load user profile.</span></div>
<div id="_mcePaste" style="padding-left: 60px;">- <span style="color: #ff0000;">There has been an error creating the personal site. Contact your site administrator for more information.</span></div>
<div id="_mcePaste" style="padding-left: 60px;">- <span style="color: #ff0000;">You do not have permissions to have lists and pages within My Site.</span></div>
<p><strong>Problem 1:</strong></p>
<div id="_mcePaste">•	When the end user searches for any colleagues in the collaborative farm they only see data that has been presented in Active Directory without any supplemented details from the User Profile Application (UPA).</div>
<div id="_mcePaste">•	When you add  a user to your site you don’t received supplemented details such as About Me.</div>
<p><strong>Solution:</strong></p>
<div id="_mcePaste">When you publish the UPA you need to ensure the each Web Application Pool ID of the consuming farms Web Apps is present. What that means is, each Web App that will need to access the UPA on the publishing farm, that App Pool ID needs to be present in the Publishing Permissions as Full Control. Now this is where I ran into issues, I also had to add these consuming App Pool IDs to UPA Administrators on the publishing farm.</div>
<div>Here is another gotcha, not sure if it’s just our environment or what but our consuming Pre Production and Production farms still did not fire off the Connection to: &#8230;&#8230;&#8230;.. User Profile to SharePoint Full Synchronization or Connection to: &#8230;&#8230;&#8230;.. User Profile to SharePoint Quick Synchronization timer jobs successfully. If you turn up ULS logging to Verbose look for an event <strong>omvh </strong>which should be the timer job kicking off the sync job and look for any exceptions that might appear. We didn’t see any of these timer jobs running so we had to manually kick them into life and it worked.</div>
<div>Just for the interested, if you don’t have your Application Pool IDs in both the UPA Administrators and Permissions you’ll be able to observe  the following behaviour. Prior to me adding the  IDs I was seeing an Access Denied in the Microsoft Service Trace Viewer (<a href="http://msdn.microsoft.com/en-us/library/ms732023.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/ms732023.aspx</a>) service tracer of the Profile Web Service.</div>
<p><strong>Basic Information</strong></p>
<div id="_mcePaste">Activity Name	Process action &#8216;http://Microsoft.Office.Server.UserProfiles/GetProfileProperties&#8217;.</div>
<div id="_mcePaste">Time	2010-09-23 01:09:36.3123</div>
<div id="_mcePaste">Level	Error</div>
<div id="_mcePaste">Source	System.ServiceModel</div>
<div id="_mcePaste">Process	w3wp</div>
<div id="_mcePaste">Thread	32</div>
<div id="_mcePaste">Computer	XXXXXXXX</div>
<div id="_mcePaste">Trace Identifier/Code	http://msdn.microsoft.com/en-GB/library/System.ServiceModel.Diagnostics.ThrowingException.aspx</div>
<div id="_mcePaste">Exception</div>
<div id="_mcePaste">System.ServiceModel.FaultException, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</div>
<p><strong>Message</strong></p>
<div id="_mcePaste">Access is denied.</div>
<div>To get your trace simply open up the web.config, make sure you back it up first, in C:\Program Files\Microsoft Office Servers\14.0\WebServices\Profile and go to &lt;system.diagnostics&gt;. You’ll notice that it’s commented out with the &lt;!&#8211; and&#8211;&gt; tags. Replace with;</div>
<pre>  &lt;system.diagnostics&gt;</pre>
<pre>      &lt;sources&gt;</pre>
<pre>            &lt;source name="System.ServiceModel"</pre>
<pre>                    switchValue="Information, ActivityTracing"</pre>
<pre>                    propagateActivity="true"&gt;</pre>
<pre>            &lt;listeners&gt;</pre>
<pre>               &lt;add name="traceListener"</pre>
<pre>                   type="System.Diagnostics.XmlWriterTraceListener"</pre>
<pre>                   initializeData= "c:\log\Traces.svclog" /&gt;</pre>
<pre>            &lt;/listeners&gt;</pre>
<pre>         &lt;/source&gt;</pre>
<pre>      &lt;/sources&gt;</pre>
<pre>   &lt;/system.diagnostics&gt;</pre>
<p>And remember to uncomment by removing your comment tags. Now you should be able to try rerunning the Profile Sync jobs or simple wait for them to fire off every 5 minutes for the Quick Sync or an hour for the Full Sync. There seems to be an oddity though, if you look at your Connection to: &#8230;&#8230;&#8230;.. User Profile to SharePoint Full Synchronization, it’s set to hourly with Starting every hour between 0 minutes and no later than 0 minutes! That should read 0 and 59 minutes, so if your Full Sync doesn’t run you know why.</p>
<div>You should be able to see all your content databases being updated in the ULS logs by the Profile Sync now, so if you do a refresh all additional profile properties will be updated.</div>
<p><strong>Problem 2:</strong></p>
<div id="_mcePaste">When creating a My Site on the consuming farm you get the following error;</div>
<div id="_mcePaste" style="padding-left: 30px;">o	<span style="color: #ff0000;">Could not load user profile.</span></div>
<p><strong>Solution:</strong></p>
<div id="_mcePaste">This one still baffles me as to why I received this. Even though I had a Full Import sorted and I could see the profile properties being updated on all my consuming farms Web Apps, I could still not create a My Site. I simply deleted the UPA connection on the consuming farm to the publishing farm, removed the UPA WITHOUT deleting the associated databases, so we could save some time without needing a full 5 hour import again! I created a new UPA, entered the same database names in, specified the server that will run the profile service, added my URL for the dummy mysite in the Enterprise (publishing) farm and away we went. I started the User Profile Synchronization Service on the UP server an waiting till it was started correctly, takes about 5 minutes. I republished and repermissioned the UPA with the above settings and simply connected it to the consuming farm.</div>
<p>To save time I fired off the Connection to: &#8230;&#8230;&#8230;.. User Profile to SharePoint Full Synchronization manually and ensured that it synchronised the profile properties to the consuming farm. Remember to change the time for this timer job as it seems to set it to 0 and 0.</p>
<p>This leads me on to the next problem, as they all seem to be related.</p>
<p><strong>Problem 3:</strong></p>
<div id="_mcePaste">When creating a My Site on the consuming farm you get the following error;</div>
<div id="_mcePaste">o	<span style="color: #ff0000;">You do not have permissions to have lists and pages within My Site.</span></div>
<p><strong>Solution:</strong></p>
<div id="_mcePaste">This takes me back to my days of Microsoft when we supported MOSS 2007 in the UK Premier team. Ahh the fantastic memories and some right mares too&#8230; <img src='http://www.kowalski.ms/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </div>
<div id="_mcePaste">What it simple means is that your AAM (alternate access mappings) are incorrect. What you need to do to is to add the publishing farm’s My Site AAM to the consuming farm’s AAM. So if your Default zone on your publishing My Site Web App has http://mysite.publishing.domain.com then you need to add this URL to say, the Intranet Zone of your consuming farm’s My Site Web app. So your consuming Web App AAMs would be Default http://mysite.consuming.domain.com and Intranet http://mysite.publishing.domain.com.</div>
<p>And&#8230; this takes me on to the next problem.</p>
<p><strong>Problem 4:</strong></p>
<div id="_mcePaste">When creating a My Site on the consuming farm you get the following error;</div>
<div id="_mcePaste"><span style="color: #ff0000;">o	There has been an error creating the personal site. Contact your site administrator for more information.</span></div>
<div><span style="color: #ff0000;"><br />
</span></div>
<div id="_mcePaste">This issue was around in MOSS, by the looks of things it’s still not fixed. If you turn up the ULS and check for the correlation ID of this error you’ll come across this error;</div>
<div id="_mcePaste">Unknown SPRequest error occurred. More information: 0&#215;80070005</div>
<p>It simply means, Access Denied. The workaround, I say workaround as it’s not an ideal solution is to add the consuming farms My Site App Pool ID into the consuming Farm Administrators group. Perform an iisreset and you’re good to go. Now I don’t exactly know why you needed to elevate the privileges for this particular action but it’s still the same problem as it was in MOSS 2007.</p>
<p>One last word of warning if you’re using SQL Aliasing with cliconfg. Make sure you add the publishing farm’s SQL alias to all your consuming farm’s as none of this will work and you’ll receive some most peculiar issues. You’ve been warned.</p>
<p>Hope this helps some of you guys and gals out there and gets that Project Manager of your back!</p>
<div id="_mcePaste">Kristof Kowalski // Kristof@kowalski.ms</div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.kowalski.ms%2F2010%2F09%2F24%2Ftrials-and-tribulations-of-the-sharepoint-server-2010-user-profile-service-application%2F&amp;title=Trials%20and%20Tribulations%20of%20the%20SharePoint%20Server%202010%20User%20Profile%20Service%20Application" id="wpa2a_4">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kowalski.ms/2010/09/24/trials-and-tribulations-of-the-sharepoint-server-2010-user-profile-service-application/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SharePoint Server 2010 Supplementing User Profile Imports Using BCS</title>
		<link>http://www.kowalski.ms/2010/07/20/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs/</link>
		<comments>http://www.kowalski.ms/2010/07/20/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 12:47:55 +0000</pubDate>
		<dc:creator>Kristof</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.kowalski.ms/?p=240</guid>
		<description><![CDATA[The User Profile Service Application is used to synchronise data from Active Directory to the profile database maintained by SharePoint. The profile database contains rich information about end users that can be displayed in sites. The User Profile service application maps Active Directory fields to fields in the user ’s profile. On a scheduled basis, this information is [...]]]></description>
			<content:encoded><![CDATA[<p>The User Profile Service Application is used to synchronise data from Active Directory to the profile database maintained by SharePoint. The profile database contains rich information about end users that can be displayed in sites. The User Profile service application maps Active Directory fields to fields in the user ’s profile. On a scheduled basis, this information is imported from Active Directory.</p>
<p>But, what happens when you want to add additional information from external systems to supplement the richness of you Active Directory data? Well, you need to use BCS (Business Connectivity Services). BCS is an evolution to the functionality of MOSS’s (Microsoft Office SharePoint Server) 2007 BDC (Business Data Catalog).</p>
<p>What started out as a simple lab to get a proof of concept up and running really turned into a bit of a hair pulling ordeal. I’ll go through it here so that someone else doesn’t have to go through the same stress as I had to. From what I gather there’s quite a few people out there who are trying to get this running but are faced with the dreaded error;</p>
<p><strong>&#8220;Microsoft.MetadirectoryServices.NoSuchObjectTypeException: No such object type &#8220;user&#8221;.<br />
at Microsoft.MetadirectoryServices.Impl.TypeDescriptionCollectionImpl.get_Item(String Name)</strong></p>
<p><strong><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-error" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-error.png"><img class="aligncenter size-medium wp-image-246" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-error" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-error-300x225.png" alt="" width="300" height="225" /></a><br />
</strong></p>
<p>So. Onto the Step by Step guide to enlightenment, so I hope. Just as a note, I’ll be importing some Customer details into my profile from the Northwinds sample database. This database can be downloaded from;</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=06616212-0356-46a0-8da2-eebc53a68034&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?familyid=06616212-0356-46a0-8da2-eebc53a68034&amp;displaylang=en</a></p>
<p>Firstly go ahead and download the database. You can either run the .sql file to create the DB or simple to an attach. Once you have the DB attached to your SQL back-end you should be able to query the sample data as follows;</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-northwind" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-northwind.png"><img class="aligncenter size-medium wp-image-247" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-northwind" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-northwind-300x225.png" alt="" width="300" height="225" /></a></p>
<p>This is the sample data we’ll be using. In our simple test I’ll be adding an Alternate Company to my Active Directory profiles, this data will be pulled from the Customers table using the CompanyName table.</p>
<p>The first thing we need to do is create and ECT (External Content Type). With BCS the focul point is, it’s all about External Content Types definitions. The simplest method of generating these ECTs is using SPD (SharePoint Designer) 2010. Once we’ve created our ECT it’ll be stored in the ECT Catalog, also known as the metadata catalog.</p>
<p>So lets fire up SPD and create an External Content Type. Open up a Team Site where you want to test out your ECT. To ensure our ECTs are working we’ll create a list afterwards and display the Northwinds customers using the SharePoint native interface.</p>
<p>In SPD go to External Content Types in Site Objects.  Click External Content Type. You’ll be presented with a new ECT page;</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd01" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd01.png"><img class="aligncenter size-medium wp-image-248" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd01" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd01-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Enter a Name such as NorthwindCustomers. Enter a Display Name as Northwind Customers. In my example I’ve changed the Office Item Type to Contact as I want to take the list offline for later use. It’s up to you, the only extra step you need to do is map the properties in the Northwinds database to Office properties.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd02" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd02.png"><img class="aligncenter size-medium wp-image-249" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd02" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd02-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Click the Click here to discover external data sources an…  Click Add Connection and select SQL Server. Fill in  your Database Server, Database Name and optional name. Leave Connect with User’s Identity as the default. Once you have done this, you’ll notice that your Northwinds database has been added to your Data Source Explorer as follows;</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd04" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd04.png"><img class="aligncenter size-medium wp-image-250" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd04" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd04-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Expand your Northwindows database and right click Customers. Select Create All Operations.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd05" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd05.png"><img class="aligncenter size-medium wp-image-251" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd05" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd05-300x225.png" alt="" width="300" height="225" /></a></p>
<p>You should be presented with Operations Properties wizard now. For the ease of this guide I&#8217;ve selected All Operations but in your day to day BCS solutions you might want to limit what you want you users to perform using CRUD (create, replace, update, delete) for security sake.</p>
<p>Select Next on the Operations Properties wizard. Since I&#8217;ve chosen the Office Item Type as Contact I will now need to map the Data Source Elements such as CompanyName to an Office Property like Company Name (CompanyName). I will also check the Show In Picker box as I want to be able to view the results from any searches. Perform these steps for as many elements as you see fit. A word of warning too, leave the CustomerID Data Source Element as Read-Only in the Properties. You dont want your users overwriting your identifier for the field that we&#8217;ll use later for our 1 to 1 profile relationship.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd06" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd06.png"><img class="aligncenter size-medium wp-image-253" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd06" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd06-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Click Finish. Then select Summary View in SPD to view your settings and save your changes. They should look something like this.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd07" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd07.png"><img class="aligncenter size-medium wp-image-254" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd07" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd07-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Congratulations. You&#8217;ve just created your first ADO.NET ECT and now we&#8217;re ready to expose the contents of our Customers table from the Northwinds database. The simplest method to create your External List and InfoPath form is to use the Create Lists &amp; Form button on the SPD ribbon. Select the newly created ECT and then select Create Lists &amp; Form from the ribbon to bring up the. Fill in the List Name details and also check the Create InfoPath Form checkbox. Your entry should look something like this;</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd08" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd08.png"><img class="aligncenter size-medium wp-image-255" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd08" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd08-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Once you click OK this will go ahead and create the External List and InfoPath form in the Team Site that you used when creating the ECT. If you refresh your Team Site home page you should see a new list in the Quicklaunch bar. Before you can use the your new ECT you need to set the permissions for your ECT else you will receive the following message;</p>
<p>Access Denied by Business Data Connectivity.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd09" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd09.png"><img class="aligncenter size-medium wp-image-256" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd09" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd09-300x225.png" alt="" width="300" height="225" /></a></p>
<p>To apply the permissions for your ECT you need to go to your Central Administration &gt; Manage Service Applications &gt; Business Data Connectivity Service &gt; Select the Set Permissions action on your ECT. Open your People Picker up and search for All. Select your All Authenticated Users and check each Permissions that you would apply to this user/group. For our guide we&#8217;re allowing all permissions on this ECT for the All Authenticated Users group.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd10" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd10.png"><img class="aligncenter size-medium wp-image-257" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd10" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-spd10-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Once you set your permissions on the ECT you will be able retrieve the Customers table from the Northwind database as follows. A word of caution, you will need to close down your browser session and open your Team Site up again as you need to re-authenticate against the site again for the External List to work work.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-externallist" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-externallist.png"><img class="aligncenter size-medium wp-image-259" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-externallist" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-externallist-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Congratulations, you&#8217;ve now you&#8217;ve created your first External List based on a ADO.NET External Content Type. Imagine the possibilities in connecting out disparate LOB (Line of Buiness) systems out there in your organisation and having them surfaced by using native SharePoint External Lists, this is only the tip of the ice berg on what is possible.</p>
<p>Now I&#8217;m going to assume that your profile imports are working correctly when importing from Active Directory (AD). If you&#8217;re AD imports aren&#8217;t working then please get that up and running and move on to the next steps. A word of notice is that the BCS profile import cannot be the primary data source for profile imports, we can only supplement information from LOB systems and add them to our AD Profiles.</p>
<p>In this example as I mentioned initially, I’ll be adding an Alternate Company to my Active Directory profiles, this data will be pulled from the Customers table using the CompanyName table. The first step we need to perform is by adding a new User Property. In my example I will add to each user a Alternate Customer ID field that will have this fields data correlate back to the CustomerID column of the Customers table, this is how we establish our 1 to 1 relationship between our AD profiles and our BCS profiles. This Alternate Customer ID propoerty will only be a SharePoint local property, but in a real world example this can be brought in from Active Directory via one of the other attributes.</p>
<p>To create the new User Property go to Central Administration &gt; Manage Service Applications &gt; User Profile Service Applications &gt; Manage User Properties. Select New Property and fill in the contents as follows.</p>
<p>Name: CustomCustomerID<br />
Display Name: Alternate Customer ID<br />
Type: String<br />
Length: 5 (Since our column CustomerID is on 5 nchar in the Customers table)</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof01" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof01.png"><img class="aligncenter size-medium wp-image-260" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof01" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof01-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Under Policy Settings change the Required Policy Setting to Optional. The rest of the property settings can be set however you like. Click OK and we&#8217;re ready to start setting up our BCS User Profile Synchonrization Connetion. Go to your User Profile Service Application &gt; Configure Synchronization Connections &gt; Create New Connection.</p>
<p>Enter a Connection Name as Northwinds, Type as Business Data Connectivity. In the Business Data Connectivity Entity select your Northwind Customers External Content Type. Now this is the import part, we need to map our CustomCustomerID to our Extrernal Content Type to create the 1 to 1 relationship. Select our CustomCustomerID property as the identifier.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof02" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof02.png"><img class="aligncenter size-medium wp-image-262" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof02" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof02-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Click OK and save your now synchronization connection settings. Now, we need to quickly jump back in the Manage User Profiles page and add the Alternate Customer ID data in. This will then be used to import the Alternate Company Name via BCS. Like I mentioned previously, instead of an Alternate Customer ID property that we have here, you can use an AD attribute to perform the same function, usually a mail or employeeid attribute is the way to go, anything which correlates your HR systems and AD will work.</p>
<p>Before we can start the profile import we need to add another User Property that will surface the Alternate Company Name data from the CompanyName column. Create a New Property with the follow values;</p>
<p>Name: CustomCompanyName<br />
Display Name: Alternate Company Name<br />
Type: String<br />
Length: 40 (Since our column CustomerID is on 40 nvarchar in the Customers table)</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof04" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof04.png"><img class="aligncenter size-medium wp-image-264" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof04" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof04-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Under Policy Settings change the Required Policy Setting to Optional. The rest of the property settings can be set however you like util you scroll to Property Mapping for Synchonization. Select Northwinds as the Source Data Connection, select CompanyName as the Attribute. Click Add to the add the Property Mapping to the new User Property.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof05" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof05.png"><img class="aligncenter size-medium wp-image-265" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof05" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof05-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Click OK and you are done with User Properties.</p>
<p>Lets go ahead and populate our Alternate Customer ID properties in some test profiles. I&#8217;ve got several properties imported here from my dev box so I&#8217;ll go ahead and add the CustomerID data from the Customers table in the Northwind database. As a simple test, you can add 1 or 2 Alternate Customer ID entries initially and the profile import will only import those 1 or 2 BCS profiles. So I&#8217;ll add 2 for now and we&#8217;ll check the Forefront Identity Manager 2010 client that those 2 profile are only imported.</p>
<p>Lets add ALFKI as the Alternate Customer ID to one of our profiles, which is the first record in the Customers table. Lets find another profile and add ANATR to the Alternate Customer ID. Once we perform a Full Import will expect to have the Alternate Company Name supplemented by our BCS import.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof061" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof061.png"><img class="aligncenter size-medium wp-image-268" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof061" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof061-300x225.png" alt="" width="300" height="225" /></a></p>
<p>We&#8217;ve pretty much set up all the plumbing, lets kick off our Full Import. Go to Central Administration &gt; Manage Service Applications &gt; User Profile Service Application &gt; Start Profile Synchonization &gt; Start Full Synchronization.</p>
<p>With Microsoft SharePoint Sever (MSS) 2010, Microsoft has opted to use Forefront Identity Manager (FIM) 2010 instead of the SharePoint Search engine to perform the profile imports. With the install of MSS we also have the miisclient.exe that allow us to view and check certain preoprties during and after the import. You can find the tool in the following directory;</p>
<p>C:\Program Files\Microsoft Office Servers\14.0\Sychonization Service\UIShell</p>
<p>Open up miisclient.exe and view the impending profile import.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-fim01" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-fim01.png"><img class="aligncenter size-medium wp-image-267" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-fim01" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-fim01-300x225.png" alt="" width="300" height="225" /></a></p>
<p>If all the steps were carried our correctly you will have success as the resultant message in the Status column all the way through. Success! All done.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-success" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-success.png"><img class="aligncenter size-medium wp-image-270" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-success" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-success-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Now if you check any of you modified user profiles that you added your Alternate Customer ID, you will notice that the Alternate Company Name has been supplemented. Phew! That was a long guide.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-success2" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-success2.png"><img class="aligncenter size-medium wp-image-273" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-success2" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-success2-300x225.png" alt="" width="300" height="225" /></a></p>
<p>When I initually ran across the No such object type &#8220;user&#8221; error message what finally allowed to me fix the problem was drilling further into the workings of the miisclient.  Open the miisclient, go to Management Agents &gt; Select MOSSBDC-Northwinds &gt; Select Proprties in the Actions Menu &gt; Configure Additional Parameters.</p>
<p>Notice on the righthand side the MossJoinAttribute and BDCJoinAttribute.</p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof07" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof07.png"><img class="aligncenter size-medium wp-image-269" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof07" src="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof07-300x225.png" alt="" width="300" height="225" /></a></p>
<p><a class="lightbox" title="sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof07" href="http://www.kowalski.ms/wp-content/uploads/2010/07/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs-userprof07.png"></a>Ensure that these attributes are the correct entries for the 1 to 1 relationship between your LOB system and your MOSS profile. BCS needs to know how to correlate these two fields together to supplement each user&#8217;s profile, hence the error.</p>
<p>Hope this helps quite a few of you out there as I know this was a major feature we had to get up and running for our global rollout.</p>
<p>Kristof Kowalski / kristof@kowalski.ms</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.kowalski.ms%2F2010%2F07%2F20%2Fsharepoint-server-2010-supplementing-user-profile-imports-using-bcs%2F&amp;title=SharePoint%20Server%202010%20Supplementing%20User%20Profile%20Imports%20Using%20BCS" id="wpa2a_6">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kowalski.ms/2010/07/20/sharepoint-server-2010-supplementing-user-profile-imports-using-bcs/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>SharePoint Server 2010 Enterprise Service Application Publishing and Consuming Farms</title>
		<link>http://www.kowalski.ms/2010/07/16/sharepoint-server-2010-enterprise-service-application-publishing-and-consuming-farms/</link>
		<comments>http://www.kowalski.ms/2010/07/16/sharepoint-server-2010-enterprise-service-application-publishing-and-consuming-farms/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 12:13:43 +0000</pubDate>
		<dc:creator>Kristof</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.kowalski.ms/?p=224</guid>
		<description><![CDATA[As I&#8217;ve been getting to grips with SharePoint Server 2010 I’m really starting to appreciate how modular and how WAN friendly the product is. Our organisation is a large multinational with major regional sites around the world, unfortunately not every regional site has SharePoint Administrators available for their disposal. With that in mind we wanted [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve been getting to grips with SharePoint Server 2010 I’m really starting to appreciate how modular and how WAN friendly the product is.</p>
<p>Our organisation is a large multinational with major regional sites around the world, unfortunately not every regional site has SharePoint Administrators available for their disposal.</p>
<p>With that in mind we wanted to cut down on the administrative overhead around the regions and also centralise most of the common Service Applications. In SharePoint server you can publish certain Service Applications across farms as outlined in the following TechNet article;</p>
<p>Share service applications across farms (SharePoint Server 2010)<br />
<a href="http://technet.microsoft.com/en-us/library/ff621100.aspx">http://technet.microsoft.com/en-us/library/ff621100.aspx</a></p>
<p>For now we are very much interested in publishing the User Profile and Search Service Applications. I’ll delve further into the others in later posts. Since we’re embarking on a worldwide My Sites launch, we wanted to centralise the User Profile Service Application on our Enterprise Service Applications Farm and have it consumed by our regional Collaborative farms. We wanted a simple way of allowing the primacy of user profile data without the need of replicating this data by using tools such as the User Profile Replication Engine (UPRE).</p>
<p>On top of this we wanted to centralise our Search Service Application to allow a greater level of relevancy from our search results. One caveat is that the Crawl Components would have to reside on our Enterprise Farm and then crawl all the regional farms, we took this decisions as relevancy takes place this central farm. If we opted for the whole Federation scenario we’d have a disjoined solution where each farm calculates its own relevancy and returns the results back to the end user without taking into effect the results of all the other farms. After all in the search world, relevancy is king.</p>
<p>I’ve been battling away at the steps that Microsoft provided and from what I can see it partially gets you there, so I’ll try and fill in the blanks for everyone. There are several steps you need to take, so grab yourself a strong caffeinated drink and let’s crack on.</p>
<p>Firstly we need to establish a trust between our Publishing (Enterprise) Farm and Consuming (Collaboration) farm. Lets go ahead and exchange trusts certificates between the farms;</p>
<p>- To export the root certificate from the consuming farm<br />
- $rootCert = (Get-SPCertificateAuthority).RootCertificate<br />
- $rootCert.Export(&#8220;Cert&#8221;) | Set-Content C:\ConsumingFarmRoot.cer -Encoding byte</p>
<p>- To export the STS certificate from the consuming farm<br />
- $stsCert = (Get-SPSecurityTokenServiceConfig).LocalLoginProvider.SigningCertificate<br />
- $stsCert.Export(&#8220;Cert&#8221;) | Set-Content C:\ConsumingFarmSTS.cer -Encoding byte</p>
<p>- To export the root certificate from the publishing farm<br />
- $rootCert = (Get-SPCertificateAuthority).RootCertificate<br />
- $rootCert.Export(&#8220;Cert&#8221;) | Set-Content C:\PublishingFarmRoot.cer -Encoding byte</p>
<p>- Copy all certificates to publishing and consuming farm</p>
<p>- To import the root certificate and create a trusted root authority on the consuming farm<br />
- $trustCert = Get-PfxCertificate C:\PublishingFarmRoot.cer<br />
- New-SPTrustedRootAuthority EnterprisePublishingFarm -Certificate $trustCert</p>
<p>- To import the root certificate and create a trusted root authority on the publishing farm<br />
- $trustCert = Get-PfxCertificate C:\ConsumingFarmRoot.cer<br />
- New-SPTrustedRootAuthority EUConsumingFarm -Certificate $trustCert</p>
<p>- To import the STS certificate and create a trusted service token issuer on the publishing farm<br />
- $stsCert = Get-PfxCertificate c:\ConsumingFarmSTS.cer<br />
- New-SPTrustedServiceTokenIssuer EUConsumingFarm -Certificate $stsCert</p>
<p>On the Publishing farm go the Central Administration &gt; Manage Service Applications</p>
<p>-          For each Service Application you want to publish, select the service application and click Publish</p>
<p>-          In our case we select the User Profile Service Application and Search Service Application</p>
<p>-          Select your connection type. Since I want to user encsyrpted communication I select https.</p>
<p>-         Select Publish this Service Application to other farms check box</p>
<p>-          Now the important part, write down the Service Application Published URL. Not down the urn:&#8230;.</p>
<p>-          You can place a Description or Information URL. We stick in details of who published it, when and who to contact in case of issues.</p>
<p>On the consuming farm, set the permission to the appropriate service applications.</p>
<p>- To set permission to the Application Discovery and Load Balancing Service Application for a consuming farm<br />
- Get-SPFarm | Select Id<br />
- Write down the Farm Id for later use, in my example the Consuming Farm Id is 66cc8542-a854-4155-8557-27e47ef363e4.</p>
<p>- To set permission to the Application Discovery and Load Balancing Service Application for a publishing farm</p>
<p>- $security=Get-SPTopologyServiceApplication | Get-SPServiceApplicationSecurity<br />
- $claimprovider=(Get-SPClaimProvider System).ClaimProvider<br />
- $principal=New-SPClaimsPrincipal -ClaimType &#8220;http://schemas.microsoft.com/sharepoint/2009/08/claims/farmid&#8221; -ClaimProvider $claimprovider -ClaimValue 66cc8542-a854-4155-8557-27e47ef363e4<br />
- Grant-SPObjectSecurity -Identity $security -Principal $principal -Rights &#8220;Full Control&#8221;<br />
- Get-SPTopologyServiceApplication | Set-SPServiceApplicationSecurity -ObjectSecurity $security<br />
- Go to Permissions of Published Search SAs and search for 66cc8542-a854-4155-8557-27e47ef363e4, add Full Control<br />
- Check Permissions of Publishing Farm Application Discovery Load Balancer Service Application to ensure the claim provider of the Remote Farm is set</p>
<p>On the consuming farm, connect to the remote service application, go to Central Administration &gt; Manage Service Applications</p>
<p>-          For each Service Application you want to connect, select the service application and click Connect</p>
<p>-          In our case we select the User Profile Service Application Proxy and Search Service Proxy</p>
<p>-          Paste in the Published URL of the Service Application you want consume</p>
<p>-          Select the Service Application and Click OK.</p>
<p>-          Double check in Service Applications that you have each of the Connected to:&#8230;  entries listed.</p>
<p>All that is left to do now is test. Create a simple Enterprise Search Centre site and perform a search. Assuming all the steps have been followed correctly we should receive our search results and you will also have a richly populated People Picker with the Enterprise Farms profile properties.</p>
<p>Cheers,</p>
<p>Kristof Kowalski // kristof@kowalski.ms</p>
<p><strong>UPDATE 1:</strong> If you get any of the following errors in the ULS logs make sure you re-connect your Service Applications to the Publishing farm again and ensure that you have the correct Claim added to the Application Discovery and Load Balancing Service Application as well as the Search Service Application.</p>
<p>SearchServiceApplicationProxy::GetLocationConfigurations&#8211;Error occured: System.ServiceModel.Security.SecurityAccessDeniedException: Access is denied.    Server stack trace:      at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version, FaultConverter faultConverter)     at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc&amp; rpc)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channel&#8230;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.kowalski.ms%2F2010%2F07%2F16%2Fsharepoint-server-2010-enterprise-service-application-publishing-and-consuming-farms%2F&amp;title=SharePoint%20Server%202010%20Enterprise%20Service%20Application%20Publishing%20and%20Consuming%20Farms" id="wpa2a_8">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kowalski.ms/2010/07/16/sharepoint-server-2010-enterprise-service-application-publishing-and-consuming-farms/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SharePoint Server 2010 Phonetic and Nickname Search</title>
		<link>http://www.kowalski.ms/2010/07/09/sharepoint-server-2010-phonetic-and-nickname-search/</link>
		<comments>http://www.kowalski.ms/2010/07/09/sharepoint-server-2010-phonetic-and-nickname-search/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 13:48:00 +0000</pubDate>
		<dc:creator>Kristof</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.kowalski.ms/?p=220</guid>
		<description><![CDATA[We&#8217;ve been working with Microsoft SharePoint Server (MSS) 2010 for a little while now and trying to plan our strategy going forward. One feature we&#8217;re interested in is utilising People Search as a corporate global address-book. One compelling reason for a multinational company like ours is to use the new phonetic search. An example a [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been working with Microsoft SharePoint Server (MSS) 2010 for a  little while now and trying to plan our strategy going forward. One  feature we&#8217;re interested in is utilising People Search as a corporate  global address-book.</p>
<p>One compelling reason for a multinational  company like ours is to use the new phonetic search. An example a  phonetical search is someone looking for Geoff Bridges.  A user can type  in either Geoff or Jeff Bridges and be presented with the correct user  details. Another example search is if you plug in Mike Jones, you will  return back either Mike Jones or a Michael Jones.</p>
<p>We&#8217;ve  noticed that the phonetic search hasn&#8217;t been working on our instances at  all so a bit of digging around and I&#8217;ve come with some interesting  facts.</p>
<p>All the phonetics and synonyms of each word are held in a text file, about 25MB in size in the following location;</p>
<p><strong>C:\Program Files\Microsoft Office Servers\14.0\Bin\languageresources.txt</strong></p>
<p>Upon  further investigation since all our clients have the English (United  Kingdom &#8211; LCID 2057) set in the regional settings and the the phonetics  dictionary has mostly English (United States &#8211; LCID 1033), we got no  phonetical search at all. A simple case of changing the browser&#8217;s  user agent language settings to en-US (1033) gives you a workaround but not  necessarily a total solution.</p>
<p>Hope this helps someone out as we  were scratching our head for a little while. I&#8217;ll update the site again  once I have a solution.</p>
<p>Kristof Kowalski // kristof@kowalski.ms</p>
<p><strong>UPDATE 1:</strong> I&#8217;ve managed to find some more details about the Phonetic and Nickname Search issue. Here is what I have thus far.</p>
<ul>
<li>Phonetic      / fuzzy matching on names, i.e. searching for  “Peat” and getting      results for Pete  are done via  Speech Server in 2010 People      Search.</li>
<li>Different results for each different LCID      (locale/language ID ) at query time – this is to be expected for both the      above new features in People Search. Given that this behaviour is by      design.</li>
<li>Nickname      matches are done via  the MSSLanguageResources table of the Search      Service application database. This table is partitioned on LCID for      different languages. indicates nickname matches and it is a      separate  to phonetic matching.</li>
<li>If      you look into MSSLanguageResources table of Search Service application      database, you can see mappings for the nick-names.</li>
<li>What      happens in the scenario of searching with the locale as en-US is: we are      matching nickname results in en-US  - which mean with search term      Mike we return:</li>
</ul>
<p>Mike Scott (exact match )<br />
Michael Scott (nickname match) – As per the above said table, Pete is  a valid nickname match for peter in the EN US LCID [i.e. 1033]</p>
<ul>
<li>For      non English language LCIDs, the above said table <strong><span style="text-decoration: underline;">does not have      nickname entries</span></strong> by design for English names. In other words,      there is no nick-name assigned for the LCID 2057 [which is EN-GB].</li>
</ul>
<p>From all intensive purposes we should be able to add/remove nicknames via the New-spenterprisesearchlanguageresourcephrase cmdlet. In a simple test case we would be able to perform the following commands, my Search Application Id is df4fdf37-0fc3-45ab-b42f-64650e42d1a5;</p>
<pre class="c-sharp">New-spenterprisesearchlanguageresourcephrase –Name Michael -Language "en-GB" –Type "Nickname" –Mapping Mike -SearchApplication df4fdf37-0fc3-45ab-b42f-64650e42d1a5

New-spenterprisesearchlanguageresourcephrase –Name Mike -Language "en-GB" –Type "Nickname" –Mapping Michael -SearchApplication df4fdf37-0fc3-45ab-b42f-64650e42d1a5</pre>
<p>That’s using Mike and Michael as the test users. When I added them to the Search Service Application and then need invoke the “Prepare query suggestions” job, as it only runs once every 24 hours;</p>
<p>Start-SPTimerJob -Identity &#8220;Prepare query suggestions&#8221;</p>
<p>I still don’t get the nickname matching at all. I can see that the job runs successfully but we don’t get back any results. Strange. To ensure that the new nicknames are added to Search Service Applicaiton DB, I ran the following query;</p>
<p>SELECT * FROM dbo.MSSLanguageResources WHERE Locale like &#8217;2057&#8242;</p>
<p>Hmmm&#8230; All there. More investigation needed.</p>
<p><strong>UPDATE 2</strong>: Have logged a call with Microsoft UK Premier support and this is reproducible, so it looks like it could be a bug. More to come, stay tuned.</p>
<p><strong>UPDATE 3</strong>: With the help of Microsoft I&#8217;ve now been able to fix the issue. The crux of the problem is, when you install the pre-reuisites it installes the Microsoft Speech Platform Server Runtimes for en-US only. Since nicknames and phonetic search are done by the Speech server we were missing the language files for the localised searches to take place. So the fix is as follows;</p>
<ul>
<li>To install the desired runtimes, apart from en-US go to the following link;<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=E16641DB-B20C-4BB5-AB22-F382EB4F22F3&amp;amp;displaylang=en&amp;displaylang=en#filelist">http://www.microsoft.com/downloads/details.aspx?FamilyID=E16641DB-B20C-4BB5-AB22-F382EB4F22F3&amp;amp;displaylang=en&amp;displaylang=en#filelist</a></li>
<li>Download only the SR (Server Runtime) languages and not the TTS (Text to Speech) files.</li>
<li>Run the msi, it&#8217;ll finish the install without giving you a confirmation dialogue.</li>
<li>Run &#8220;net stop osearch14&#8243;</li>
<li>Run &#8220;net start osearch14&#8243;</li>
</ul>
<p>You&#8217;ll be ready to rock n&#8217; roll after this. From my above example, Mike and Micheal should work now based on the en-GB (2057 LCID). By adding the new language you will still manually have to manually add the nicknames using New-spenterprisesearchlanguageresourcephras, so rather then making up the nicknames on the fly I&#8217;ve gone ahead and converted the languageresources.txt to a CSV file and only kept the en-US (1033) nicknames. With this CSV file I can simply read the contents using the Import-CSV command. Here is the csv file as well as the PowerShell commands to import your nicknames for your particular language, remember to get your Search Application Id in my above example prior to running this command;</p>
<p>Download <a href="http://www.kowalski.ms/wp-content/uploads/2010/07/languageresources.zip">languageresources.zip</a>.<br />
<code>$names = Import-Csv d:\temp\languageresources.csv<br />
foreach ($line in $names) {<br />
New-spenterprisesearchlanguageresourcephrase –Name $($line.name) -Language "en-GB" –Type "Nickname" –Mapping $($line.nickname) -SearchApplication df4fdf37-0fc3-45ab-b42f-64650e42d1a5<br />
}</code></p>
<div>Then run;</div>
<p><code>Start-SPTimerJob -Identity "Prepare query suggestions"</code></p>
<div>Finally, check that the timer job has run successfully;</div>
<p><code>(Get-SPTimerJob -Identity "Prepare query suggestions").HistoryEntries | Format-Table -Property Status,StartTime,EndTime,ErrorMessage</code></p>
<div>Enjoy peeps, it&#8217;s been emoitional!</div>
<div>Kristof Kowalski / kristof@kowalski.ms</div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.kowalski.ms%2F2010%2F07%2F09%2Fsharepoint-server-2010-phonetic-and-nickname-search%2F&amp;title=SharePoint%20Server%202010%20Phonetic%20and%20Nickname%20Search" id="wpa2a_10">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kowalski.ms/2010/07/09/sharepoint-server-2010-phonetic-and-nickname-search/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>The Local Farm Is Not Accessible. Cmdlets With FeatureDependencyId Are Not Registered</title>
		<link>http://www.kowalski.ms/2010/05/13/the-local-farm-is-not-accessible-cmdlets-with-featuredependencyid-are-not-registered/</link>
		<comments>http://www.kowalski.ms/2010/05/13/the-local-farm-is-not-accessible-cmdlets-with-featuredependencyid-are-not-registered/#comments</comments>
		<pubDate>Thu, 13 May 2010 09:39:00 +0000</pubDate>
		<dc:creator>Kristof</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.kowalski.ms/?p=213</guid>
		<description><![CDATA[I&#8217;m in the process of finalising my unattended install script for SharePoint Server 2010 and during some of my initial playing around I came across this vague error; The Local Farm Is Not Accessible. Cmdlets With FeatureDependencyId Are Not Registered Being early in the morning and all, I was kind of spooked as the error [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in the process of finalising my unattended install script for SharePoint Server 2010 and during some of my initial playing around I came across this vague error;</p>
<blockquote><p><strong>The Local Farm Is Not Accessible. Cmdlets With FeatureDependencyId Are Not Registered</strong></p></blockquote>
<p>Being early in the morning and all, I was kind of spooked as the error is not really that descriptive. Essentially what the error means is that you don&#8217;t have the necessary permissions to access the SharePoint configuration database.</p>
<p>In my case it was a stupid move on my part where <strong>UAC </strong>(User Account Control) was on and I didn&#8217;t run the SharePoint 2010 Management Shell as Administrator. Remember to elevate your privileges before running the shell!</p>
<p>For the people out there with genuine permisions issues on this error, <strong>Add-SPShellAdmin</strong> is your friend. Check out more information here;</p>
<blockquote><p><strong>Add-SPShellAdmin</strong><a href="http://technet.microsoft.com/en-us/library/ff607596(office.14).aspx"><strong></p>
<p>http://technet.microsoft.com/en-us/library/ff607596(office.14).aspx</strong></a></p></blockquote>
<p>Kushdie!</p>
<p>&#8211; Kristof Kowalski // kristof@kowalski.ms</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.kowalski.ms%2F2010%2F05%2F13%2Fthe-local-farm-is-not-accessible-cmdlets-with-featuredependencyid-are-not-registered%2F&amp;title=The%20Local%20Farm%20Is%20Not%20Accessible.%20Cmdlets%20With%20FeatureDependencyId%20Are%20Not%20Registered" id="wpa2a_12">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kowalski.ms/2010/05/13/the-local-farm-is-not-accessible-cmdlets-with-featuredependencyid-are-not-registered/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LookSee 2.0 FUBAR Release</title>
		<link>http://www.kowalski.ms/2009/10/11/looksee-2-0-fubar-release/</link>
		<comments>http://www.kowalski.ms/2009/10/11/looksee-2-0-fubar-release/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 15:37:31 +0000</pubDate>
		<dc:creator>Kristof</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.kowalski.ms/?p=187</guid>
		<description><![CDATA[Hi All, Just wanted to say there was a slight quality control issue with the release of the 2.0 version. When you Zoom In and Out the page numbers will jump when viewing PDF files. How this escaped this eagle eye is beyond me, but there is a 2.1 release sitting in the App Store [...]]]></description>
			<content:encoded><![CDATA[<p>Hi All,</p>
<p>Just wanted to say there was a slight quality control issue with the release of the 2.0 version.</p>
<p>When you Zoom In and Out the page numbers will jump when viewing PDF files. How this escaped this eagle eye is beyond me, but there is a 2.1 release sitting in the App Store approval process already.</p>
<p>Apologies and rest assured the the offending party has been reprimanded! &#8230; Ah yeah that, would be me!?! &lt;spank&gt;</p>
<p>Kristof Kowalski | kristof@kowalski.ms</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.kowalski.ms%2F2009%2F10%2F11%2Flooksee-2-0-fubar-release%2F&amp;title=LookSee%202.0%20FUBAR%20Release" id="wpa2a_14">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kowalski.ms/2009/10/11/looksee-2-0-fubar-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WSS 3.0 and MOSS 2007 Service Pack 2 Released! Finally!</title>
		<link>http://www.kowalski.ms/2009/04/29/wss-30-and-moss-2007-service-pack-2-released-finally/</link>
		<comments>http://www.kowalski.ms/2009/04/29/wss-30-and-moss-2007-service-pack-2-released-finally/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 08:08:08 +0000</pubDate>
		<dc:creator>Kristof</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.kowalski.ms/?p=156</guid>
		<description><![CDATA[Top 5 reasons to upgrade! 1. Performance Reliability/Stability Fixes 2. Browser support for IE 8 and improvements in tier 2 browsers (Firefox) 3. Reliability improvements in Indexing and Index Corpus 4. Security Improvements 5. New STSADM Commands including some to fix corruption and relationships (orphaning) BONUS! Pre Upgrade Checker! &#8211; 960577 (http://support.microsoft.com/kb/960577/ ) List of [...]]]></description>
			<content:encoded><![CDATA[<p>Top 5 reasons to upgrade!</p>
<p>1. Performance Reliability/Stability Fixes</p>
<p>2. Browser support for IE 8 and improvements in <a href="http://office.microsoft.com/en-us/sharepointserver/HA101945391033.aspx">tier 2 browsers (Firefox)</a></p>
<p>3. Reliability improvements in Indexing and Index Corpus</p>
<p>4. Security Improvements</p>
<p>5. New STSADM Commands including some to fix corruption and relationships (orphaning)</p>
<p>BONUS! Pre Upgrade Checker! &#8211; <a href="http://support.microsoft.com/kb/960577/">960577</a> (http://support.microsoft.com/kb/960577/ ) List of all Windows SharePoint Services and SharePoint Server Pre-Upgrade Checker knowledge base articles.  This WILL Be required for the next version.  I use to LOVE Prescan with the previous version, you can guess this is going to be very HOT on my list and will add value even waaaay before you’re ready to upgrade to fix consistency issues and identify areas that will be challenges to upgrade.</p>
<p>WOW there’s a TON of SP2 information.  Soooo much!!!  You can find a choose your own adventure in reading these docs.  I’ve pulled out what I think are the most relevant, but you’ll likely find many I didn’t find in my initial pass.</p>
<p><strong><em>READ IT ALL and Test Test Test!!!</em></strong></p>
<p><em>By the way, I’m sure the SharePoint Team blog will have some similar information to this blog.  Be sure to visit <a href="http://blogs.msdn.com/sharepoint">http://blogs.msdn.com/sharepoint</a> some time later today.</em></p>
<p><a href="http://support.microsoft.com/kb/953334">Information on Service Pack 2</a> (Most of this information is in the KBs, but just want to lay this out so it’s easy to understand.</p>
<p><strong>Start Here:</strong></p>
<p><em>NOTE: Windows SharePoint Services 3.0 Service Pack 2 <strong>is required</strong> for 2007 Microsoft Office servers SP2.</em></p>
<p><a href="http://support.microsoft.com/kb/968173/">968173</a> (http://support.microsoft.com/kb/968173/ ) Known issues that you may experience when you install the 2007 Microsoft Office suite Service Pack 2 and Windows SharePoint Services 3.0 Service Pack 2</p>
<p><a href="http://support.microsoft.com/kb/968170/">968170</a> (http://support.microsoft.com/kb/968170/ ) List of all 2007 Office system Service Pack 2 and Windows SharePoint Services 3.0 Service Pack 2 packages</p>
<p><a href="http://support.microsoft.com/kb/970359/">970359</a> (http://support.microsoft.com/kb/970359/ ) Technical details about the Windows SharePoint Services 3.0 Service Pack 2 (S)</p>
<p><a href="http://support.microsoft.com/kb/970358/">970358</a> (http://support.microsoft.com/kb/970358/ ) Technical details about the 2007 Microsoft Office servers Service Pack 2 (S)</p>
<p><a href="http://support.microsoft.com/kb/945013/">945013</a> (http://support.microsoft.com/kb/945013/ ) How to deploy the 2007 Microsoft Office servers Service Pack 1 and Office Server Language Pack 2007 Service Pack 1</p>
<p><a href="http://support.microsoft.com/kb/968170">968170</a> (<a href="http://support.microsoft.com/kb/968170">http://support.microsoft.com/kb/968170</a>) Description of Windows SharePoint Services 3.0 SP2 and of Windows SharePoint Services 3.0 Language Pack SP2</p>
<p><strong>What is fixed! Thanks PFE’s for these Lists!</strong></p>
<p><a href="http://bit.ly/jFh1X">Download the Windows SharePoint Services 3.0 Service Pack 2 Changes.xlsx package.</a></p>
<p><a href="http://bit.ly/2GpSa">Download the 2007 Office servers Service Pack 2 Changes.xlsx package.</a></p>
<p><strong>WSS Specific Download Locations</strong></p>
<div class="ExternalClassDD44977E636C442E86344304A3491ABD">
<li>Windows SharePoint Services 3.0 Service Pack 2 (x86)<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=79BADA82-C13F-44C1-BDC1-D0447337051B">http://www.microsoft.com/downloads/details.aspx?FamilyId=79BADA82-C13F-44C1-BDC1-D0447337051B</a></li>
<li>Windows SharePoint Services 3.0 Service Pack 2 (x64)<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=79BADA82-C13F-44C1-BDC1-D0447337051B">http://www.microsoft.com/downloads/details.aspx?FamilyId=79BADA82-C13F-44C1-BDC1-D0447337051B</a> Windows SharePoint Services 3.0 Language Pack Service Pack 2 (x86)</li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=085E5AC8-58F6-4CF9-8012-33B95EE36C0F">http://www.microsoft.com/downloads/details.aspx?FamilyId=085E5AC8-58F6-4CF9-8012-33B95EE36C0F</a></li>
<li>Windows SharePoint Services 3.0 Language Pack Service Pack 2 (x64)<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=2C2B6CAF-B46D-45EB-AC4D-DEAAA48C3A2C">http://www.microsoft.com/downloads/details.aspx?FamilyId=2C2B6CAF-B46D-45EB-AC4D-DEAAA48C3A2C</a></li>
<p><strong>MOSS Specific download locations are here:</strong></p>
<p>2007 Microsoft Office servers Service Pack 2 (x86)</p>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B7816D90-5FC6-4347-89B0-A80DEB27A082">http://www.microsoft.com/downloads/details.aspx?FamilyId=B7816D90-5FC6-4347-89B0-A80DEB27A082</a></li>
<li>2007 Microsoft Office servers Service Pack 2 (x64)<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B7816D90-5FC6-4347-89B0-A80DEB27A082">http://www.microsoft.com/downloads/details.aspx?FamilyId=B7816D90-5FC6-4347-89B0-A80DEB27A082</a></li>
<li>2007 Microsoft Office servers Language Pack Service Pack 2 (x86)<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=01C6A3E8-E110-4956-903A-AD16284BF223">http://www.microsoft.com/downloads/details.aspx?FamilyId=01C6A3E8-E110-4956-903A-AD16284BF223</a></li>
<li>2007 Microsoft Office servers Language Pack Service Pack 2 (x64)<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=66C5026F-9F47-4642-8378-2526918009FA">http://www.microsoft.com/downloads/details.aspx?FamilyId=66C5026F-9F47-4642-8378-2526918009FA</a></li>
<p><strong>Office Suite (Client) and it’s language packs:</strong></p>
<p><a href="http://support.microsoft.com/kb/968170/">968170</a> (<a href="http://support.microsoft.com/kb/968170/">http://support.microsoft.com/kb/968170/</a>) Description of 2007 Microsoft Office Suite Service Pack 2 (SP2) and of Microsoft Office Language Pack 2007 SP2</p>
<p><strong>List of Fixes</strong></p>
<p><a href="http://download.microsoft.com/download/C/2/C/C2C36159-600C-4EEA-B80A-F988EE7A418F/2007%20Office%20Service%20Pack%202%20Changes.xlsx">Download the 2007 Office Service Pack 2 Changes.xlsx package now.</a></p>
<p><strong>Download</strong></p>
<li>2007 Microsoft Office Suite Service Pack 2<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B444BF18-79EA-46C6-8A81-9DB49B4AB6E5">http://www.microsoft.com/downloads/details.aspx?FamilyId=B444BF18-79EA-46C6-8A81-9DB49B4AB6E5</a> (http://www.microsoft.com/downloads/details.aspx?FamilyId=B444BF18-79EA-46C6-8A81-9DB49B4AB6E5)</li>
<li>Microsoft Office Language Pack 2007 Service Pack 2<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=E1203DB2-1CC9-4809-9B6E-3F232CB8899F">http://www.microsoft.com/downloads/details.aspx?FamilyId=E1203DB2-1CC9-4809-9B6E-3F232CB8899F</a>Enjoy!Kristof Kowakski | kristof@kowalski.ms</li>
</div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.kowalski.ms%2F2009%2F04%2F29%2Fwss-30-and-moss-2007-service-pack-2-released-finally%2F&amp;title=WSS%203.0%20and%20MOSS%202007%20Service%20Pack%202%20Released%21%20Finally%21" id="wpa2a_16">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kowalski.ms/2009/04/29/wss-30-and-moss-2007-service-pack-2-released-finally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Server and Windows SharePoint Services Hotfix Build Numbers</title>
		<link>http://www.kowalski.ms/2008/09/18/sharepoint-server-and-windows-sharepoint-services-hotfix-build-numbers/</link>
		<comments>http://www.kowalski.ms/2008/09/18/sharepoint-server-and-windows-sharepoint-services-hotfix-build-numbers/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 20:41:00 +0000</pubDate>
		<dc:creator>Kristof</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://kowalski.ms/?p=14</guid>
		<description><![CDATA[This has been bugging me for a while now. I have not been able to find a definitive guide to all the build numbers of Microsoft Office SharePoint Server (MOSS) 2007, Windows SharePoint Services (WSS) 2.0/3.0 and SharePoint Portal Server 2003 since they RTM&#8217;ed. So for your viewing pleasure here is a very very long [...]]]></description>
			<content:encoded><![CDATA[<p><span xmlns=''>
<p>This has been bugging me for a while now. I have not been able to find a definitive guide to all the build numbers of Microsoft Office SharePoint Server (MOSS) 2007, Windows SharePoint Services (WSS) 2.0/3.0 and SharePoint Portal Server 2003 since they RTM&#8217;ed.</p>
<p>So for your viewing pleasure here is a very very long list of Build Numbers, KB articles and Description of the hotifx.</p>
<p>Just a note, since not all .dll&#8217;s are modified for every build, the highest version across all .dlls indicates the patch level.</p>
<p><span style='font-size:14pt'><strong>Windows SharePoint Services 3.0 hotfix packages</strong></span>			</p>
<div>
<table border='0' style='border-collapse:collapse'>
<colgroup>
<col style='width:121px'/>
<col style='width:124px'/>
<col style='width:624px'/></colgroup>
<tbody valign='top'>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>Build</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>KB Article</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>Description</strong></span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.4518.1016</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'> </td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>RTM</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6004.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>931637</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: January 25, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6007.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>931636</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: February 6, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6008.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>932621</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: February 10, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6010.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>932914</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: February 28, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6011.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>933818</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: March 9, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6017.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>934790</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: April 12, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6017.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>934251</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package that includes the English, French, and German MUI: April 12, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6020.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>936867</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: May 8, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6021.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>937203</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: May 15, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6023.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>937901</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: May 25, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6023.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>938183</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: May 31, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6023.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>938241</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>of the Windows SharePoint Services 3.0 for the Multilingual User Interface pack hotfix package: May 31, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6025.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>938536</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: June 11, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6027.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>939188</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: June 24, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6028.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>939592</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: June 29, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6039.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>934525</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the security update for Windows SharePoint Services 3.0: October 9, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6219.1000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>936988</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of Windows SharePoint Services 3.0 Service Pack 1 and of Windows SharePoint Services 3.0 Language Pack Service Pack 1</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6300.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>941422</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 post-Service Pack 1 hotfix package: January 31, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6303.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>948945</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: February 21, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6303.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>948957</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: February 22, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6304.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>949399</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: February 27, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6305.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>949956</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: March 17, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6307.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>950279</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: March 21, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6308.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>950484</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: March 27, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6309.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>953484</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: May 5, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6314.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>952288</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: May 8, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6309.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>952292</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: May 12, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6315.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>952698</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: May 20, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6317.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>953473</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: June 5, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6322.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>951695</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>of the Infrastructure Update for Windows SharePoint Services 3.0: July 15, 2008 &gt;&gt; Reports (12.0.6318.5000)</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6324.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>955594</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: July 22, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6324.5001</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>956248</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: August 7, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px; border-bottom:  solid #9bbb59 1.0pt'>
<p><span style='color:#76923c'><strong>12.0.6327.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-bottom:  solid #9bbb59 1.0pt'>
<p><span style='color:#76923c'>957109</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-bottom:  solid #9bbb59 1.0pt'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 3.0 hotfix package: August 26, 2008</span></p>
</td>
</tr>
</tbody>
</table>
</div>
<p><span style='font-size:14pt'><strong>Windows SharePoint Services 2.0 hotfix packages</strong></span>			</p>
<div>
<table border='0' style='border-collapse:collapse'>
<colgroup>
<col style='width:121px'/>
<col style='width:124px'/>
<col style='width:624px'/></colgroup>
<tbody valign='top'>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>Build</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>KB Article</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>Description</strong></span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>11.0.5530.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'> </td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>RTM</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>11.0.6361.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>841876</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of Windows SharePoint Services 2.0 Service Pack 1</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>11.0.6568.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>887624</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of Windows SharePoint Services 2.0 Service Pack 2</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>11.0.8000.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>900929</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 2.0 post-Service Pack 2 hotfix package: November 15, 2005</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>11.0.8165.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>923643</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of Windows SharePoint Services 2.0 Service Pack 3</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>11.0.8205.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>941412</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 2.0 post-Service Pack 3 hotfix package: January 25, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>11.0.8209.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>948919</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 2.0 post-Service Pack 3 hotfix package: February 26, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>11.0.8210.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>950386</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 2.0 hotfix package: March 21, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>11.0.8219.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'>952903</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'>Description of the Windows SharePoint Services 2.0 hotfix package: May 12, 2008</span></p>
</td>
</tr>
</tbody>
</table>
</div>
<p><span style='font-size:14pt'><strong>SharePoint Server 2007 hotfix packages</strong></span>			</p>
<div>
<table border='0' style='border-collapse:collapse'>
<colgroup>
<col style='width:121px'/>
<col style='width:124px'/>
<col style='width:624px'/></colgroup>
<tbody valign='top'>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>Build</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>KB Article</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>Description</strong></span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.4518.1016</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'> </td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>RTM</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6005.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>931497</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: January 25, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6007.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>931496</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: February 7, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6008.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>932620</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: February 10, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6010.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>932919</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: February 26, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6010.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>932917</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: February 26, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6011.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>933586</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: March 3, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6012.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>933819</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: March 9, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6017.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>934793</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: April 12, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6020.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>936877</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package for SharePoint Server 2007 and for SharePoint Server 2007 for Search: May 8, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6021.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>937207</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: May 15, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6021.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>937208</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: May 15, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6023.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>937906</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: May 25, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6023.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>937904</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: May 25, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6024.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>938182</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package for SharePoint Server 2007 and for SharePoint Server 2007 for Search: May 31, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6025.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>938535</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: June 11, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6025.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>938537</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: June 12, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6027.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>939077</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package for SharePoint Server 2007 and for SharePoint Server 2007 for Search: June 24, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6028.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>939599</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: June 29, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6028.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>939654</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: June 29, 2007</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6030.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>939877</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: July 17, 2007</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6211.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>942390</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 issues that are fixed by the 2007 Microsoft Office servers Service Pack 1</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6300.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>944710</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: January 31, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6300.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>941653</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 post-Service Pack 1 hotfix package: January 31, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6300.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>942819</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 post-Service Pack 1 hotfix package: January 31, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6300.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>945089</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 post-Service Pack 1 hotfix package: January 31, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6301.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>941274</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 and SharePoint Server 2007 for Search post-2007 Office servers Service Pack 1 hotfix package: January 31, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6303.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>948947</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: February 21, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6304.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>949402</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 post-Service Pack 1 hotfix package: February 27, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6304.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>949955</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: March 17, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6307.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>950280</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: March 21, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6307.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>950292</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: March 21, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6308.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>950487</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: March 27, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6314.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>952294</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: May 8, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6315.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>952704</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 hotfix package: May 20, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6316.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>953137</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 post-2007 Microsoft Office servers Service Pack 1 hotfix package: May 29, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6316.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>953138</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 post-2007 Microsoft Office servers Service Pack 1 hotfix package: May 29, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6317.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>953471</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 post-2007 Microsoft Office servers Service Pack 1 hotfix package: June 5, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6324.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>955593</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 post-2007 Microsoft Office servers Service Pack 1 hotfix package: July 21, 2008</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>12.0.6322.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>951297</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the Microsoft Office Servers Infrastructure Update: July 15, 2008 &gt;&gt; Reports (12.0.6318.5000)</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>12.0.6324.5000</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'>955586</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Server 2007 post-2007 Microsoft Office servers Service Pack 1 hotfix package: July 23, 2008</span></p>
</td>
</tr>
</tbody>
</table>
</div>
<p><span style='font-size:14pt'><strong>SharePoint Portal Server 2003 hotfix packages</strong></span>			</p>
<div>
<table border='0' style='border-collapse:collapse'>
<colgroup>
<col style='width:121px'/>
<col style='width:124px'/>
<col style='width:624px'/></colgroup>
<tbody valign='top'>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>Build</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>KB Article</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-top:  solid #9bbb59 1.0pt; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>Description</strong></span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>11.0.5704.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'> </td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>RTM</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>11.0.6715.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>841883</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of SharePoint Portal Server 2003 Service Pack 1</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>11.0.8126.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>887623</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of SharePoint Portal Server 2003 Service Pack 2</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>11.0.8126.2</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>898547</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Portal Server 2003 post-Service Pack 2 hotfix package for the Spanish and German versions of SharePoint Portal Server 2003: October 24, 2005</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'><strong>11.0.8168.0</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>923644</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-right:  none'>
<p><span style='color:#76923c'>Description of SharePoint Portal Server 2003 Service Pack 3</span></p>
</td>
</tr>
<tr style='height: 18px'>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'><strong>11.0.8168.3</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>941204</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px'>
<p><span style='color:#76923c'>Description of the SharePoint Portal Server 2003 post-Service Pack 3 hotfix package: February 26, 2008</span></p>
</td>
</tr>
<tr style='height: 18px; background: #e6eed5'>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'><strong>11.0.8168.3</strong></span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'>943167</span></p>
</td>
<td style='padding-left: 7px; padding-right: 7px; border-left:  none; border-bottom:  solid #9bbb59 1.0pt; border-right:  none'>
<p><span style='color:#76923c'>Description of the SharePoint Portal Server 2003 post-Service Pack 3 hotfix package: February 26, 2008</span></p>
</td>
</tr>
</tbody>
</table>
</div>
<p>Enjoy.</p>
<p>Kristof Kowalski | kristof@kowalski.ms</p>
<p></span></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.kowalski.ms%2F2008%2F09%2F18%2Fsharepoint-server-and-windows-sharepoint-services-hotfix-build-numbers%2F&amp;title=SharePoint%20Server%20and%20Windows%20SharePoint%20Services%20Hotfix%20Build%20Numbers" id="wpa2a_18">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kowalski.ms/2008/09/18/sharepoint-server-and-windows-sharepoint-services-hotfix-build-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems After Installing MS08-040 (KB948110)</title>
		<link>http://www.kowalski.ms/2008/08/22/problems-after-installing-ms08-040-kb948110/</link>
		<comments>http://www.kowalski.ms/2008/08/22/problems-after-installing-ms08-040-kb948110/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 20:39:00 +0000</pubDate>
		<dc:creator>Kristof</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://kowalski.ms/?p=13</guid>
		<description><![CDATA[It seems like there have been some calls coming in regarding this particular issue. Funny how some problems seem to go around in waves. Just had a customer Severity A come though where this patch was rolled out automatically via Windows Update, now when the server rebooted MSSQL$SHAREPOINT fails to start. Ooops! Delving further into [...]]]></description>
			<content:encoded><![CDATA[<p>It seems like there have been some calls coming in regarding this particular issue. Funny how some problems seem to go around in waves. Just had a customer Severity A come though where this patch was rolled out automatically via Windows Update, now when the server rebooted MSSQL$SHAREPOINT fails to start.</p>
<p>Ooops!</p>
<p>Delving further into this issue it would seem that there are several work around&#8217;s to this issue depending if you are running WMSDE or SQL Server 2000.</p>
<p>The first port of call to see what is happening is checking the SQL Server <b>ERRORLOG</b>. If you go to <b>C:\Program Files\Microsoft SQL Server\MSSQL$<instancename>\Log\ERRORLOG</instancename></b> you&#8217;ll see something like this;</p>
<p>2008-07-14 11:26:13.21 spid2     Skipping startup of clean database id 4 <br />2008-07-14 11:26:13.21 spid2     Skipping startup of clean database id 6  <br />2008-07-14 11:26:13.21 spid2     Starting up database &#8216;STS_Config&#8217;.  <br />2008-07-14 11:26:13.29 spid5     Clearing tempdb database.  <br />2008-07-14 11:26:13.32 spid5     Starting up database &#8216;tempdb&#8217;.  <br />2008-07-14 11:26:13.35 spid2     Recovery complete.  <br />2008-07-14 11:26:14.26 spid2     Cannot validate object &#8216;master&#8217;.'dbo&#8217;.'sp_helptext&#8217;.  <br />2008-07-14 11:26:14.26 spid2     <b>Database &#8216;master&#8217; has invalid schema.</b></p>
<p>The issue we have here is quite evident, the &#8216;master&#8217; database scehema is invalid due to the installation logic not being aware of whether this instance is running SQL Server 2000. For anyone who has upgraded from WMSDE to SQL Server 2000, you&#8217;ll quite possibly come across this error. Before rolling the patch out I would recommend testing it out on a non product system and see what results you get.</p>
<p>Everyone has uses best practices for patch management, right? right?? Test > Replica > Live! LOL</p>
<p>Now to the fix itself, first for WMSDE which is the easier one to get around;</p>
<ul>
<li>
<p>Download <b>SQLWMSDE-KB948110-x86-ENU.exe</b> </p>
</li>
<li>
<p>Run <b>SQLWMSDE-KB948110-x86-ENU.exe /upgradesp sqlrun 1 INSTANCENAME=UDDI /l*v %windir%WMSDE.log</b> </p>
</li>
<li>
<p>Reboot </p>
</li>
</ul>
<p>Voila!</p>
<p>The SQL Server fix is a little bit more so you might need a strong coffee before reading this.</p>
<ul>
<li>
<p>Perform the upgrade again from WMSDE to SQL Server 2000. </p>
</li>
</ul>
<ul>
<p><b>Note</b> You must use the same media that was previously used to perform the upgrade to SQL Server 2000.</p>
<li>
<p>Restart the server instance. The server instance should start as the upgraded version. </p>
</li>
<li>
<p>Apply SQL Server 2000 Service Pack 4. </p>
</li>
</ul>
<ul>
<p><b>Note</b> Make sure that you apply the SQL Server 2000 Service Pack 4 and not the MSDE SP4 or WMSDE SP4 updates.</p>
<li>
<p>For more information about how to obtain SQL Server 2000 Service Pack 4, visit the following Microsoft Web page:  </p>
</li>
</ul>
<ul>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8e2dfc8d-c20e-4446-99a9-b7f0213f8bc5&amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8e2dfc8d-c20e-4446-99a9-b7f0213f8bc5&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=8e2dfc8d-c20e-4446-99a9-b7f0213f8bc5&amp;displaylang=en</a></p>
<li>
<p>Manually apply sp4_serv_uni.sql from the Install folder. To do this, type the following command at a command prompt: </p>
</li>
</ul>
<p><b>osql -n -b -d master -Slpc:%computername%\SHAREPOINT -i &#8220;%programfiles%\Microsoft SQL Server\MSSQL$SHAREPOINT\Install\sp4_serv_uni.sql&#8221; -o &#8220;%programfiles%\Microsoft SQL Server\MSSQL$SHAREPOINT\Install\sp4_serv_uni.out&#8221; -E</b></p>
</p>
<p>Hope that gets some of you out of a right pickle.</p>
<p>Case closed.<span style="font-weight: bold;"><br /></span></p>
<p>Kristof Kowalski | kristof@kowalski.ms<br /><span style="font-weight: bold;"></span></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.kowalski.ms%2F2008%2F08%2F22%2Fproblems-after-installing-ms08-040-kb948110%2F&amp;title=Problems%20After%20Installing%20MS08-040%20%28KB948110%29" id="wpa2a_20">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kowalski.ms/2008/08/22/problems-after-installing-ms08-040-kb948110/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

