<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Joe Rodgers</title><subtitle type="html">Various posts on my daily findings with SharePoint 2003 and SharePoint 2007</subtitle><id>http://blogs.msdn.com/josrod/atom.xml</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/josrod/atom.xml" /><generator uri="http://communityserver.org" version="2.1.61025.2">Community Server</generator><updated>2008-01-31T17:47:00Z</updated><entry><title>One or more files in the restored site collection will exceed the maximum supported path length. Please select a shorter destination site address and try again.</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2009/05/28/one-or-more-files-in-the-restored-site-collection-will-exceed-the-maximum-supported-path-length-please-select-a-shorter-destination-site-address-and-try-again.aspx" /><id>http://blogs.msdn.com/josrod/archive/2009/05/28/one-or-more-files-in-the-restored-site-collection-will-exceed-the-maximum-supported-path-length-please-select-a-shorter-destination-site-address-and-try-again.aspx</id><published>2009-05-29T02:37:57Z</published><updated>2009-05-29T02:37:57Z</updated><content type="html">&lt;p&gt;I had a customer encounter an error while trying to restore a site collection using &lt;em&gt;STSADM -O RESTORE. &lt;/em&gt;&amp;#160; They had backed up the site collection without error from the same farm, but when they tried to restore the site collection using a new URL to the same farm, STSADM gave them the following error:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;em&gt;One or more files in the restored site collection will exceed the maximum supported path length. Please select a shorter destination site address and try again.&lt;/em&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;After some investigation I found out, as the error message alludes to, the path we are trying to restore to is violating the 260 character path length restriction in SharePoint.&amp;#160; There are a few tables in the database that can trigger a violation of the path length, in our case it was in the docs table.&amp;#160; In our scenario, the original URL was &lt;em&gt;sites/abc&lt;/em&gt;.&amp;#160; In this site collection, we have a document library with a nested folder structure, the longest folder path being 259 characters, just under the 260 limit.&amp;#160; The URL we used to restore the site collection backup to was &lt;em&gt;sites/abcxyz, &lt;/em&gt;three characters longer than the original URL.&amp;#160; These extra three characters made our 259 character folder path in the original URL, 262 characters, which is over the 260 character limit, causing the error to be thrown.&lt;/p&gt;  &lt;p&gt;To understand the root of the problem, I kept digging and finally tracked the error down to the &lt;em&gt;proc_RenameSite&lt;/em&gt; stored procedure, which is called &lt;strong&gt;AFTER&lt;/strong&gt; the process restores all the content to the content database.&amp;#160; The bad part about the &lt;strong&gt;AFTER&lt;/strong&gt; statement, is that if you have a large site collection (10’s of GBs), you will likely be waiting a several hours for the restore process to reach this point in the process, have it error out and roll back the restore and exit, leaving you in a very “happy” mood.&amp;#160; &lt;/p&gt;  &lt;p&gt;You have a couple courses of action to work around this problem.&amp;#160; The easiest, but not always practical, method is to shorten the name of the site collection you are restoring, something like &lt;em&gt;sites/sweng&lt;/em&gt; instead of &lt;em&gt;sites/software_engineering, &lt;/em&gt;giving you 15 extra characters in your folder paths.&amp;#160; Second, if you still have the original site collection available, you could rename some folders, files, etc, to shrink the URL length well below the 260 character limit, so you have the extra characters available for your restored site URL.&amp;#160; Finally, if you do not have the original site collection available to you, and you cannot choose a shorter URL for your restored site, you could run the restore processing again, choosing a temporary short site collection URL, like &lt;em&gt;sites/x&lt;/em&gt;, rename some of the longer paths in your site collection, backup the &lt;em&gt;sites/x &lt;/em&gt;site collection, and try the restore again using your desired URL.&amp;#160; It’s not a pretty or easy method, but it may be your only solution.&lt;/p&gt;  &lt;p&gt;Here is a bit of SQL that you can use to examine your DOCS table in the content database, to look for long paths.&amp;#160; The &lt;em&gt;Total &lt;/em&gt;column is the combination that cannot exceed 260 characters.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#0000ff"&gt;SELECT&lt;/font&gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#ff00ff"&gt;LEN&lt;/font&gt;(DirName + &lt;font color="#ff0000"&gt;N’/'&lt;/font&gt;&lt;font color="#333333"&gt; + &lt;/font&gt;LeafName) &lt;font color="#0000ff"&gt;AS&lt;/font&gt; Total,&amp;#160; &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; DirName,       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; LeafName       &lt;br /&gt;&lt;font color="#0000ff"&gt;FROM&lt;/font&gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; Docs &lt;font color="#0000ff"&gt;WITH (NOLOCK) &lt;/font&gt;      &lt;br /&gt;&lt;font color="#0000ff"&gt;ORDER BY&lt;/font&gt; Total &lt;font color="#0000ff"&gt;DESC&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9650916" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author></entry><entry><title>Latest WSS &amp; MOSS Patches and Service Pack 2 04/2009</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2009/05/15/latest-wss-moss-patches-and-service-pack-2-04-2009.aspx" /><id>http://blogs.msdn.com/josrod/archive/2009/05/15/latest-wss-moss-patches-and-service-pack-2-04-2009.aspx</id><published>2009-05-15T17:01:50Z</published><updated>2009-05-15T17:01:50Z</updated><content type="html">&lt;p&gt;Good news for those of you who like the “pleasure” of patching SharePoint, we have four new updates for you, WSS and MOSS Service Pack 2 and the WSS and MOSS April Cumulative Update packages.&amp;#160; If you have a multi-lingual farm, you will also need SP2 for each language pack you install.&lt;/p&gt;  &lt;p&gt;You can find out everything you ever wanted to know about SP2 on this SharePoint team &lt;a href="http://blogs.msdn.com/sharepoint/archive/2009/04/28/announcing-service-pack-2-for-office-sharepoint-server-2007-and-windows-sharepoint-services-3-0.aspx"&gt;blog&lt;/a&gt; post.&amp;#160; The April CU package is the post SP2 rollup package, which is the release that will contain all the updates that did not make it into the SP2.&amp;#160; You can find more info on the April CU, including installation instructions, on this SharePoint team &lt;a href="http://blogs.msdn.com/sharepoint/archive/2009/05/13/april-cumulative-update-packages-ready-for-download.aspx"&gt;blog&lt;/a&gt; post.&lt;/p&gt;  &lt;p&gt;You can download all four server packages with the following links:&lt;/p&gt;  &lt;blockquote&gt;&lt;strong&gt;Service Pack 2 for Windows SharePoint Services 3.0, x86 &amp;amp; x64&lt;/strong&gt;     &lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=79BADA82-C13F-44C1-BDC1-D0447337051B&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=79BADA82-C13F-44C1-BDC1-D0447337051B&amp;amp;displaylang=en&lt;/a&gt;     &lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=79BADA82-C13F-44C1-BDC1-D0447337051B"&gt;&lt;/a&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkId=148403"&gt;&lt;/a&gt;    &lt;br /&gt;&lt;strong&gt;Service Pack 2 for Office SharePoint Server 2007, x86 &amp;amp; x64&lt;/strong&gt;     &lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B7816D90-5FC6-4347-89B0-A80DEB27A082&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=B7816D90-5FC6-4347-89B0-A80DEB27A082&amp;amp;displaylang=en&lt;/a&gt; &lt;/blockquote&gt;  &lt;blockquote&gt;&lt;b&gt;Description of the Windows SharePoint Services 3.0 cumulative update package(WSS server-package): April 30, 2009&lt;/b&gt;     &lt;br /&gt;&lt;a href="http://support.microsoft.com/kb/968850/en-us"&gt;http://support.microsoft.com/kb/968850/en-us&lt;/a&gt;     &lt;br /&gt;Package Download Link:     &lt;br /&gt;&lt;a href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=968850&amp;amp;kbln=en-us"&gt;http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=968850&amp;amp;kbln=en-us&lt;/a&gt; &lt;/blockquote&gt;  &lt;blockquote&gt;&lt;b&gt;Description of the SharePoint Server 2007 cumulative update package (MOSS server-package): April 28, 2009 &lt;/b&gt;    &lt;br /&gt;&lt;a href="http://support.microsoft.com/kb/968851/en-us"&gt;http://support.microsoft.com/kb/968851/en-us&lt;/a&gt; (not public yet)     &lt;br /&gt;Package Download Link:     &lt;br /&gt;&lt;a href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=968851&amp;amp;kbln=en-us"&gt;http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=968851&amp;amp;kbln=en-us&lt;/a&gt; &lt;/blockquote&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Here are the links to the download site for the WSS and MOSS language pack Service Pack 2:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;b&gt;The 2007 Microsoft Office Servers Language Pack Service Pack 2 (SP2)&lt;/b&gt;       &lt;br /&gt;&lt;a title="http://www.microsoft.com/downloads/details.aspx?FamilyID=01c6a3e8-e110-4956-903a-ad16284bf223&amp;amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=01c6a3e8-e110-4956-903a-ad16284bf223&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=01c6a3e8-e110-4956-903a-ad16284bf223&amp;amp;displaylang=en&lt;/a&gt; &lt;/p&gt;    &lt;p&gt;     &lt;br /&gt;&lt;b&gt;Windows SharePoint Services 3.0 Language Pack Service Pack 2 (SP2)&lt;/b&gt;       &lt;br /&gt;&lt;a title="http://www.microsoft.com/downloads/details.aspx?FamilyID=085e5ac8-58f6-4cf9-8012-33b95ee36c0f&amp;amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=085e5ac8-58f6-4cf9-8012-33b95ee36c0f&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=085e5ac8-58f6-4cf9-8012-33b95ee36c0f&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9618545" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author></entry><entry><title>How to Disable Property Promotion In WSS</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2009/05/11/how-to-disable-property-promotion-in-wss.aspx" /><id>http://blogs.msdn.com/josrod/archive/2009/05/11/how-to-disable-property-promotion-in-wss.aspx</id><published>2009-05-12T01:03:33Z</published><updated>2009-05-12T01:03:33Z</updated><content type="html">&lt;p&gt;I was working with a customer recently that has a business need to disable property promotion/demotion in WSS/MOSS.&amp;#160; If you don’t know what property promotion is, it’s the functionality in WSS that pulls the document metadata (e.g. Title, Subject, etc) from Office 2003/2007 documents during upload and sets those values to their corresponding column in WSS.&amp;#160; Property demotion is just the opposite, if you update the document properties (like Title) via the WSS UI, that property value is written back to the file.&amp;#160; Basically, with property promotion/demotion, we keep the properties in the document and in WSS in sync.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/josrod/WindowsLiveWriter/HowtoDisablePropertyPromotionInWSS_FDE7/image_8.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/josrod/WindowsLiveWriter/HowtoDisablePropertyPromotionInWSS_FDE7/image_thumb_3.png" width="644" height="336" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Disabling property promotion and demotion is very easy.&amp;#160; The &lt;a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.aspx"&gt;SPWeb&lt;/a&gt; object has a &lt;a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.parserenabled.aspx"&gt;ParserEnabled&lt;/a&gt; property, which enables or disables this functionality.&amp;#160; Using the below PowerShell sample script, we can turn off this functionality at the web level.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;PS C:\&amp;gt;[system.reflection.assembly]::LoadWithPartialName(&amp;quot;Microsoft.SharePoint&amp;quot;)&lt;/p&gt;    &lt;p&gt;PS C:\&amp;gt; $site = new-object Microsoft.SharePoint.SPSite(&amp;quot;http://mossweb/sites/test&amp;quot;)&lt;/p&gt;    &lt;p&gt;PS C:\&amp;gt; $site.RootWeb.ParserEnabled = $false&lt;/p&gt;    &lt;p&gt;PS C:\&amp;gt; $site.RootWeb.ParserEnabled&lt;/p&gt;    &lt;p&gt;False&lt;/p&gt;    &lt;p&gt;PS C:\&amp;gt; $site.RootWeb.Update()&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;To enable document property promotion, just set the ParserEnabled property to true:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;PS C:\Users\administrator.LAB&amp;gt; $site.RootWeb.ParserEnabled = $true&lt;/p&gt; &lt;/blockquote&gt;  &lt;blockquote&gt;   &lt;p&gt;PS C:\Users\administrator.LAB&amp;gt; $site.RootWeb.Update()&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;If you want to learn more about document property promotion, see this article on MSDN:&lt;/p&gt;  &lt;p&gt;Document Parser Processing: &lt;a title="http://msdn.microsoft.com/en-us/library/aa543341.aspx" href="http://msdn.microsoft.com/en-us/library/aa543341.aspx"&gt;http://msdn.microsoft.com/en-us/library/aa543341.aspx&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9604746" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author></entry><entry><title>Flush BlobCache on all Servers In the Farm</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2009/04/24/flush-blobcache-on-all-servers-in-the-farm.aspx" /><id>http://blogs.msdn.com/josrod/archive/2009/04/24/flush-blobcache-on-all-servers-in-the-farm.aspx</id><published>2009-04-24T18:19:54Z</published><updated>2009-04-24T18:19:54Z</updated><content type="html">&lt;p&gt;A colleague of mine was working on a BlobCache issue with a customer.&amp;#160; During troubleshooting, they wanted to flush the cache store on all the servers in the farm.&amp;#160; Under Site Settings, we provide site administrators the option to flush the cache on “this server”, but not on all servers in the farm.&amp;#160; Now if you have one or two WFE servers in the farm, this isn’t a big deal, but if you have a bunch, it can be very time consuming to force your connection to a specific WFE and execute the cache flush.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/josrod/WindowsLiveWriter/FlushBlobCacheonallServersIntheFarm_9F58/image_4.png"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/josrod/WindowsLiveWriter/FlushBlobCacheonallServersIntheFarm_9F58/image_thumb_1.png" width="904" height="67" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Some research into this page a bit more, I found we actually have a check box build into the Object Cache Settings page to allow a site administrator to flush the cache on the farm, but it’s not visible.&amp;#160; I have no idea why, but it would be very handy to have this feature available from the browser.&amp;#160; I have yet to find a solution to flush the cache without requiring server access.&amp;#160; However, if you have server access, you can execute the following sequence of STSADM commands to force a flush of the cache on all the servers. We need to first execute the following to get the current property value: &lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;em&gt;stsadm -o getproperty -pn blobcacheflushcount -url &amp;lt;Web App or Site URL&amp;gt;&lt;/em&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;This command will return some XML, like the following: &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;em&gt;&amp;lt;Property Exist=&amp;quot;Yes&amp;quot; Value=&amp;quot;&lt;font color="#ff0000"&gt;1&lt;/font&gt;&amp;quot; /&amp;gt;&lt;/em&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;The value attribute of this XML represents a incrementing value we store internally to determine when the farm should flush the blob cache.&amp;#160; To force the cache to flush, we need to increment this value, which can be accomplished using the following command:&lt;/p&gt;  &lt;blockquote&gt;&lt;em&gt;stsadm -o setproperty -propertyname blobcacheflushcount -propertyvalue &amp;lt;value returned from “get” command +1&amp;gt; -url &amp;lt;Web App or Site URL&amp;gt;&lt;/em&gt;&lt;/blockquote&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9566861" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author></entry><entry><title>WSS and MOSS Language Pack Slipstreaming</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2009/03/10/wss-and-moss-language-pack-slipstreaming.aspx" /><id>http://blogs.msdn.com/josrod/archive/2009/03/10/wss-and-moss-language-pack-slipstreaming.aspx</id><published>2009-03-10T21:37:41Z</published><updated>2009-03-10T21:37:41Z</updated><content type="html">&lt;p&gt;In case you didn’t know, you can slipstream server pack 1 (or the latest SP) of a language pack into the RTM service pack installation point, creating a single install point for each language pack include includes SP1.&amp;#160; You may think, big deal, I’m saving one installation.&amp;#160; That’s true, but if you have a a medium or large farm, it cuts the number of items you need to install by half, which can add up over time, especially if you have a dev and QA/staging environment you keep in sync.&amp;#160; Unfortunately, you can only do this per language, so you still need to do one install per language, but every little bit helps.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;For WSS Language Packs (example here is for the Spanish language pack):&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Download the WSS Language Pack RTM and SP1 packages for the languages you are installing to C:/WSS_LPs/Spanish. &lt;/li&gt;    &lt;li&gt;Extract the RTM package to a folder using the following command:      &lt;blockquote&gt;       &lt;p&gt;&lt;i&gt;C:\WSS_LPs\Spanish&amp;gt;SharePointLanguagePack.exe /extract:C:\WSS_LPs\Spanish\&lt;/i&gt;&lt;/p&gt;     &lt;/blockquote&gt;   &lt;/li&gt;    &lt;li&gt;Extract the SP1 package to the UPDATES folder inside your language folder, using the following command:      &lt;blockquote&gt;&lt;i&gt;C:\WSS_LPs\Spanish&amp;gt;wssv3lpsp1-kb936988-x86-fullfile-es-es.exe /extract:C:\WSS_LPs\Spanish\Updates&lt;/i&gt; &lt;/blockquote&gt;   &lt;/li&gt;    &lt;li&gt;Install the language pack with SP1 by executing &lt;i&gt;C:\WSS_LPs\Spanish\setup.exe&lt;/i&gt; &lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;For MOSS Language Packs (example is for the Spanish language pack):&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Download the MOSS Language Pack RTM and SP1 packages for the languages you are installing to C:\MOSS_LPs/Spanish. &lt;/li&gt;    &lt;li&gt;Mount the ServerLanguagePack.img file using a virtual CD drive application &lt;/li&gt;    &lt;li&gt;Copy all the contents from the mounted volume to &lt;i&gt;C:\MOSS_LPs\Spanish\&lt;/i&gt; &lt;/li&gt;    &lt;li&gt;Extract the SP1 package to the UPDATES folder inside of your language folder, using the following command:      &lt;blockquote&gt;       &lt;p&gt;&lt;i&gt;C:\MOSSLanguagePacks\Spanish&amp;gt;officeserverlp2007sp1-kb936984-x64-fullfile-es-es.exe /extract:C:\MOSS_LPs\Spanish\Updates&lt;/i&gt;&lt;/p&gt;     &lt;/blockquote&gt;   &lt;/li&gt;    &lt;li&gt;Install the language pack with SP1 by executing &lt;i&gt;C:\MOSS_LPs\Spanish\setup.exe&lt;/i&gt; &lt;/li&gt; &lt;/ol&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9469475" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author><category term="Services Packs" scheme="http://blogs.msdn.com/josrod/archive/tags/Services+Packs/default.aspx" /></entry><entry><title>Latest WSS &amp; MOSS Patches 02/2009</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2009/03/10/latest-wss-moss-patches-02-2009.aspx" /><id>http://blogs.msdn.com/josrod/archive/2009/03/10/latest-wss-moss-patches-02-2009.aspx</id><published>2009-03-10T17:00:00Z</published><updated>2009-03-10T17:00:00Z</updated><content type="html">&lt;p&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3" face="Calibri"&gt;The WSS and MOSS server packages for the February Cumulative Update have been released.&amp;#160; These two packages are cumulative from SP1, so on new or existing farms you only need to install SP1 (use the pre-build the slipstreamed downloads (&lt;a target="_blank" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=2E6E5A9C-EBF6-4F7F-8467-F4DE6BD6B831&amp;amp;displaylang=en"&gt;x86&lt;/a&gt; &amp;amp; &lt;a target="_blank" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3015FDE4-85F6-4CBC-812D-55701FBFB563&amp;amp;displaylang=en"&gt;x64&lt;/a&gt;)) and these two server packages and you’ll be up to date.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;961755"&gt;961755&lt;/a&gt; - Description of the Windows SharePoint Services 3.0 cumulative update package: February 24, 2009 &lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;(download &lt;a target="_blank" href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=961755"&gt;here&lt;/a&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;961756"&gt;961756&lt;/a&gt; - Description of the SharePoint Server 2007 cumulative update package (MOSS server-package): February 24, 2009 &lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;(download &lt;a target="_blank" href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=961756"&gt;here&lt;/a&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;If you have the x64 Microsoft iFilter package installed on your farm, you’ll also want to install an update for the Visio and PowerPoint iFilters, which will not be part of any WSS/MOSS packages.&amp;#160; See Jamesbl’s blog &lt;a target="_blank" href="http://blogs.msdn.com/jb/archive/2009/03/05/daemon-crashes-when-crawling-visio-vsd-files.aspx"&gt;post&lt;/a&gt; for more info on this issue.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9469068" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author></entry><entry><title>Latest WSS and MOSS Patches</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2008/12/17/latest-wss-and-moss-patches.aspx" /><id>http://blogs.msdn.com/josrod/archive/2008/12/17/latest-wss-and-moss-patches.aspx</id><published>2008-12-17T18:06:00Z</published><updated>2008-12-17T18:06:00Z</updated><content type="html">&lt;p style="margin: 0in 0in 0pt" class="MsoNormal"&gt;Update, see the latest update on the February CU packages &lt;a title="2009" href="http://blogs.msdn.com/josrod/archive/2009/03/10/latest-wss-moss-patches-02-2009.aspx"&gt;here&lt;/a&gt;.&lt;/p&gt;  &lt;p style="margin: 0in 0in 0pt" class="MsoNormal"&gt;&amp;#160;&lt;/p&gt;  &lt;p style="margin: 0in 0in 0pt" class="MsoNormal"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;&lt;span style="color: red; mso-ansi-language: en" lang="EN"&gt;Great news for WSS and MOSS patching!&lt;/span&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt; &lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;From this point forward each Cumulative Update will also consist of a package that contains the latest of every hotfix patch that we have shipped.&amp;#160;&amp;#160; What this means is that if you build a new MOSS server, you can apply the latest service pack (SP1), the latest WSS CU package and the latest MOSS CU package and be completely up-to-date.&amp;#160; &lt;p&gt;&lt;/p&gt;       &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin: 0in 0in 0pt" class="MsoNormal"&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;     &lt;p&gt;&lt;font size="3" face="Calibri"&gt;&amp;#160;&lt;/font&gt;&lt;/p&gt;   &lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0in 0in 0pt" class="MsoNormal"&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;A few key points on the structure of the new format:         &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="text-indent: -0.25in; margin: 0in 0in 0pt 0.5in; mso-list: l0 level1 lfo1" class="MsoListParagraph"&gt;&lt;span style="font-family: symbol; mso-ansi-language: en; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol" lang="EN"&gt;&lt;span style="mso-list: ignore"&gt;&lt;font size="3"&gt;·&lt;/font&gt;&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;WSS continues to remain separate and is not included in the MOSS package.         &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="text-indent: -0.25in; margin: 0in 0in 0pt 0.5in; mso-list: l0 level1 lfo1" class="MsoListParagraph"&gt;&lt;span style="font-family: symbol; mso-ansi-language: en; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol" lang="EN"&gt;&lt;span style="mso-list: ignore"&gt;&lt;font size="3"&gt;·&lt;/font&gt;&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;All of the latest Global and Local patches for WSS are in the WSS uber package.         &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="text-indent: -0.25in; margin: 0in 0in 0pt 0.5in; mso-list: l0 level1 lfo1" class="MsoListParagraph"&gt;&lt;span style="font-family: symbol; mso-ansi-language: en; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol" lang="EN"&gt;&lt;span style="mso-list: ignore"&gt;&lt;font size="3"&gt;·&lt;/font&gt;&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;All of the latest Global and Local patches for MOSS (Excel Server, DLC, etc are part of MOSS), InfoPath Forms Server, Project Server are in the Office Server uber package.         &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="text-indent: -0.25in; margin: 0in 0in 0pt 0.5in; mso-list: l0 level1 lfo1" class="MsoListParagraph"&gt;&lt;span style="font-family: symbol; mso-ansi-language: en; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol" lang="EN"&gt;&lt;span style="mso-list: ignore"&gt;&lt;font size="3"&gt;·&lt;/font&gt;&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;The list of what is in the package is an accumulation over time of what we have shipped since RTM.         &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="text-indent: -0.25in; margin: 0in 0in 0pt 0.5in; mso-list: l0 level1 lfo1" class="MsoListParagraph"&gt;&lt;span style="font-family: symbol; mso-ansi-language: en; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol" lang="EN"&gt;&lt;span style="mso-list: ignore"&gt;&lt;font size="3"&gt;·&lt;/font&gt;&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;The package includes the Infrastructure Update, there is no reason to install it separately.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="text-indent: -0.25in; margin: 0in 0in 0pt 0.5in; mso-list: l0 level1 lfo1" class="MsoListParagraph"&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3" face="Calibri"&gt;&lt;/font&gt;&lt;/span&gt;&amp;#160;&lt;/p&gt;  &lt;p style="text-indent: -0.25in; margin: 0in 0in 0pt 0.5in; mso-list: l0 level1 lfo1" class="MsoListParagraph"&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3" face="Calibri"&gt;All you will need to install from this point forward is WSS SP1, MOSS SP1, WSS CU and MOSS CU.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="text-indent: -0.25in; margin: 0in 0in 0pt 0.5in; mso-list: l0 level1 lfo1" class="MsoListParagraph"&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;/span&gt;&amp;#160;&lt;/p&gt;  &lt;p style="margin: 0in 0in 0pt 0.25in" class="MsoNormal"&gt;&lt;a href="http://support.microsoft.com/kb/960010" mce_href="http://support.microsoft.com/kb/960010"&gt;&lt;font color="#0000ff" size="3" face="Calibri"&gt;960010&lt;/font&gt;&lt;/a&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt; &lt;strong&gt;- Windows SharePoint Services 3.0 cumulative update package (WSS uber-package): December 16, 2008 &lt;/strong&gt;(download &lt;a target="_blank" href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=960010&amp;amp;kbln=en-us" mce_href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=960010&amp;amp;kbln=en-us"&gt;here&lt;/a&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="text-indent: -0.25in; margin: 0in 0in 0pt 0.5in; mso-list: l0 level1 lfo1" class="MsoListParagraph"&gt;&lt;span style="mso-ansi-language: en" lang="EN"&gt;&lt;font size="3" face="Calibri"&gt;&lt;/font&gt;&lt;/span&gt;&amp;#160;&lt;/p&gt; &lt;span style="mso-ansi-language: en" lang="EN"&gt;   &lt;p style="margin: 0in 0in 0pt 0.25in" class="MsoNormal"&gt;&lt;a href="http://support.microsoft.com/kb/960011" mce_href="http://support.microsoft.com/kb/960011"&gt;&lt;font color="#0000ff" size="3" face="Calibri"&gt;960011&lt;/font&gt;&lt;/a&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;&lt;strong&gt; - SharePoint Server 2007 cumulative update package (MOSS uber-package): December 16, 2008 &lt;/strong&gt;(download &lt;a target="_blank" href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=960011&amp;amp;kbln=en-us" mce_href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=960011&amp;amp;kbln=en-us"&gt;here&lt;/a&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;    &lt;p style="margin: 0in 0in 0pt 0.25in" class="MsoNormal"&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;           &lt;p&gt;&lt;/p&gt;         &lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&amp;#160;&lt;/p&gt; &lt;/span&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9230993" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author></entry><entry><title>Lastest WSS and MOSS Patches - 10/2008</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2008/11/03/latest-patches-11-2008.aspx" /><id>http://blogs.msdn.com/josrod/archive/2008/11/03/latest-patches-11-2008.aspx</id><published>2008-11-03T23:11:00Z</published><updated>2008-11-03T23:11:00Z</updated><content type="html">&lt;FONT color=red size=3&gt;&lt;FONT face=Calibri&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;FONT color=red size=3&gt;&lt;FONT face=Calibri&gt;Please refer to the newest updates, posted here:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;FONT color=red size=3&gt;&lt;FONT face=Calibri&gt;&lt;A href="http://blogs.msdn.com/josrod/archive/2008/12/17/latest-wss-and-moss-patches.aspx"&gt;http://blogs.msdn.com/josrod/archive/2008/12/17/latest-wss-and-moss-patches.aspx&lt;/A&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;FONT color=red size=3&gt;&lt;FONT face=Calibri&gt;UPDATED: 12/11/2008 - &lt;A href="http://support.microsoft.com/kb/957693"&gt;957693&lt;/A&gt; was relased with &lt;A href="http://support.microsoft.com/kb/957175"&gt;957175&lt;/A&gt;&amp;nbsp; built in (they are identical patches [complicated stort as to why this had to be]), so&amp;nbsp;if you have installed &lt;A href="http://support.microsoft.com/kb/957693"&gt;957693&lt;/A&gt;, you don't need to install &lt;A href="http://support.microsoft.com/kb/957175"&gt;957175&lt;/A&gt;.&amp;nbsp; If you installed &lt;A href="http://support.microsoft.com/kb/957175"&gt;957175&lt;/A&gt;, you won't need to install &lt;A href="http://support.microsoft.com/kb/957693"&gt;957693&lt;/A&gt;, when you install the Oct CU updates on your farm. Again, they are identical patches, so you only need to install one of them.&amp;nbsp; If you try to install both, you will get an error message when you try stating that "this update is already installed."&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;FONT color=red size=3&gt;&lt;FONT face=Calibri&gt;&lt;/FONT&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;/FONT&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Microsoft has released the October cumulative update (CU)&amp;nbsp;packages for WSS 2007 and MOSS 2007.&amp;nbsp;&amp;nbsp;The WSS&amp;nbsp;CU has&amp;nbsp;two packages and MOSS has five packages.&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT size=3 face=Calibri&gt;The information listed below assumes your&amp;nbsp;farm has&amp;nbsp;SP1 installed for both WSS and MOSS.&amp;nbsp; If you are running a farm that is pre-SP1, you need to install WSS and MOSS&amp;nbsp;SP1 prior to installing the updates below.&amp;nbsp; If you&amp;nbsp;are&amp;nbsp;building a new farm using&amp;nbsp;media with SP1 integrated, you have WSS and MOSS SP1 already, so you only need to install the updates below.&amp;nbsp; Keep in mind, any updates that are labeld "Local" are language specific and may require you to install the same patch severals times, once for each language of MOSS you have installed.&amp;nbsp; I have yet to figure out why the product group will sometimes release a single patch with all the languages included and sometimes the releaes a seperate patch for each lanaguage.&amp;nbsp; I know most customers prefer a single patch, as&amp;nbsp;it greatly reduce the number of patches you need to install, which is always&amp;nbsp;a good thing.&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3 face=Calibri&gt;&lt;STRONG&gt;WSS Packages&lt;/STRONG&gt; &lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;A href="http://support.microsoft.com/kb/957691"&gt;957691&lt;/A&gt; WSS Global – Windows SharePoint Services 3.0 hotfix package (Sts.msp): October 28, 2008 &lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://support.microsoft.com/kb/956612"&gt;956612&lt;/A&gt; WSS Global (DST) – Windows SharePoint Services 3.0 that applies to daylight saving time (DST) changes &lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;Microsoft Office SharePoint Server Packages&lt;/STRONG&gt; &lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;A href="http://support.microsoft.com/kb/957693"&gt;957693&lt;/A&gt; MOSS Global – SharePoint Server 2007 hotfix package (Coreserver.msp): October 28, 2008 &lt;FONT color=red&gt;(Not necessary if patch #8 has already been installed)&lt;/FONT&gt; &lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://support.microsoft.com/kb/958567"&gt;958567&lt;/A&gt; MOSS Local – SharePoint Server 2007 hotfix package (Coreservermui.msp): October 28, 2008&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://support.microsoft.com/kb/955586"&gt;955586&lt;/A&gt; MOSS Local (DLC) – SharePoint Server 2007 post-2007 Microsoft Office servers Service Pack 1 hotfix package (Dlcmui.msp): July 23, 2008&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://support.microsoft.com/kb/958569"&gt;958569&lt;/A&gt; MOSS Global (DLC) – SharePoint Server 2007 hotfix package (Dlc.msp): October 28, 2008&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://support.microsoft.com/kb/955937"&gt;955937&lt;/A&gt; MOSS Security – MS07-057: Security update for Excel Services in Microsoft Office SharePoint Server 2007: October 14, 2008&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://support.microsoft.com/kb/957694"&gt;957694&lt;/A&gt; MOSS Forms Server (MOSS Enterprise SKU only) – Forms Server 2007 hotfix package (Ifswfe.msp): October 28, 2008&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.microsoft.com/downloads/info.aspx?na=49&amp;amp;p=1&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=a208f2b5-2b0d-43bb-8f8a-58d4a3fc64f5&amp;amp;u=http%3a%2f%2fsupport.microsoft.com%2f%3fkbid%3d951597"&gt;951597&lt;/A&gt; MOSS Security - MS08-069:&amp;nbsp;Security Update for 2007 Microsoft Office System Servers: November 11, 2008&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://support.microsoft.com/kb/957175"&gt;957175&lt;/A&gt; MOSS Security – MS08-077: Security Update for 2007 Microsoft Office System Servers: December 08, 2008 &lt;FONT color=red&gt;(Not necessary if patch #1 has already been installed)&lt;/FONT&gt;&lt;/LI&gt;&lt;/OL&gt;
&lt;P mce_keep="true"&gt;&lt;/FONT&gt;&lt;FONT size=3 face=Calibri&gt;I can’t stress enough the need to review the software update procedures.&amp;nbsp; Checking and removing orphaned content is a vital prerequisite for update installation, orphaned content will cause some packages to fail.&amp;nbsp; One additional orphan check that is not detachable by &lt;/FONT&gt;&lt;FONT color=#0000ff size=3 face=Calibri&gt;&lt;A target=_blank href="http://technet.microsoft.com/en-us/library/cc263282.aspx" mce_href="http://technet.microsoft.com/en-us/library/cc263282.aspx"&gt;STSADM -o databaserepair&lt;/A&gt;&lt;/FONT&gt;&lt;FONT size=3 face=Calibri&gt;, that I also highly recommend running, is outlined &lt;/FONT&gt;&lt;A href="http://blogs.technet.com/corybu/archive/2007/05/31/sharepoint-orphans-explained.aspx" mce_href="http://blogs.technet.com/corybu/archive/2007/05/31/sharepoint-orphans-explained.aspx"&gt;&lt;FONT color=#0000ff size=3 face=Calibri&gt;here&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in" class=MsoNormal&gt;&lt;B&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Deploy software updates for Office SharePoint Server 2007&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in" class=MsoNormal&gt;&lt;A href="http://technet.microsoft.com/en-us/library/cc263467.aspx" mce_href="http://technet.microsoft.com/en-us/library/cc263467.aspx"&gt;&lt;FONT color=#0000ff size=3 face=Calibri&gt;http://technet.microsoft.com/en-us/library/cc263467.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in" class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in" class=MsoNormal&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;B&gt;Deploy software updates for Windows SharePoint Services 3.0&lt;/B&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in" class=MsoNormal&gt;&lt;A href="http://technet.microsoft.com/en-us/library/cc288269.aspx" mce_href="http://technet.microsoft.com/en-us/library/cc288269.aspx"&gt;&lt;FONT color=#0000ff size=3 face=Calibri&gt;http://technet.microsoft.com/en-us/library/cc288269.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9034863" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author><category term="Sharepoint" scheme="http://blogs.msdn.com/josrod/archive/tags/Sharepoint/default.aspx" /><category term="MOSS" scheme="http://blogs.msdn.com/josrod/archive/tags/MOSS/default.aspx" /><category term="SharePoint Patches" scheme="http://blogs.msdn.com/josrod/archive/tags/SharePoint+Patches/default.aspx" /></entry><entry><title>Lastest WSS and MOSS Patches - 9/2008</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2008/09/16/lastest-wss-and-moss-patches-9-2008.aspx" /><id>http://blogs.msdn.com/josrod/archive/2008/09/16/lastest-wss-and-moss-patches-9-2008.aspx</id><published>2008-09-16T23:13:00Z</published><updated>2008-09-16T23:13:00Z</updated><content type="html">&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;For those of you that are building a new WSS and/or MOSS farm, I've assembled a list of the patches you will need to build a "lastest and greatest" farm.&amp;nbsp;&amp;nbsp;The list below is published for an RTM farm, but if you have a farm in production already, you only need to install the patches dated after your current patch level.&amp;nbsp; For example, if you have the IU installed, you only need to install&amp;nbsp;&lt;A href="http://support.microsoft.com/kb/957109" mce_href="http://support.microsoft.com/kb/957109"&gt;&lt;FONT face=Calibri size=3&gt;957109&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp;and &lt;A href="http://support.microsoft.com/kb/956057" mce_href="http://support.microsoft.com/kb/956057"&gt;&lt;FONT face=Calibri size=3&gt;956057&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt; &lt;/FONT&gt;&lt;/FONT&gt;for WSS and &lt;A href="http://support.microsoft.com/kb/955586" mce_href="http://support.microsoft.com/kb/955586"&gt;955586&lt;/A&gt;, &lt;A href="http://support.microsoft.com/kb/956056" mce_href="http://support.microsoft.com/kb/956056"&gt;&lt;FONT face=Calibri size=3&gt;956056&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt; and &lt;A href="http://support.microsoft.com/kb/953397" mce_href="http://support.microsoft.com/kb/953397"&gt;&lt;FONT face=Calibri size=3&gt;953397&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp;for MOSS.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&lt;/FONT&gt;&lt;/o:p&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;To hopefully clear up some confusion, for localized WSS and MOSS patches, you need to install a localized patch for every lanague you have installed.&amp;nbsp; At&amp;nbsp;a minimum, this is one patch, which is for the base lanaguge of MOSS you have installed.&amp;nbsp; For example, if you have an English SKU of WSS and MOSS, you need to install the English WSS and MOSS localized patches.&amp;nbsp; If you have a German SKU of MOSS installed, you need to install the German WSS and MOSS localized patches.&amp;nbsp; &lt;/FONT&gt;&lt;/o:p&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;You will also need to install a localization patch for each language pack you have installed.&amp;nbsp; So if you have an English SKU of WSS and MOSS and have the German and Spanish language packs installed, you need to install a English, German and Spanish localization update.&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&lt;/FONT&gt;&lt;/o:p&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&lt;STRONG&gt;Lastest bits required for WSS 2007&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l1 level1 lfo1"&gt;&lt;SPAN style="mso-fareast-font-family: Calibri; mso-bidi-font-family: Calibri"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&lt;FONT face=Calibri size=3&gt;1.&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;WSS SP1&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l1 level1 lfo1"&gt;&lt;SPAN style="mso-fareast-font-family: Calibri; mso-bidi-font-family: Calibri"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&lt;FONT face=Calibri size=3&gt;2.&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;WSS Localized – &lt;/FONT&gt;&lt;A href="http://support.microsoft.com/kb/957109" mce_href="http://support.microsoft.com/kb/957109"&gt;&lt;FONT face=Calibri size=3&gt;957109&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt; – August 26&lt;SUP&gt;th&lt;/SUP&gt; Package&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l1 level1 lfo1"&gt;&lt;SPAN style="mso-fareast-font-family: Calibri; mso-bidi-font-family: Calibri"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&lt;FONT face=Calibri size=3&gt;3.&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;WSS Global – &lt;/FONT&gt;&lt;A href="http://support.microsoft.com/kb/956057" mce_href="http://support.microsoft.com/kb/956057"&gt;&lt;FONT face=Calibri size=3&gt;956057&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt; – August 26&lt;SUP&gt;th&lt;/SUP&gt; Package&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&lt;STRONG&gt;Lastest bits required for MOSS 2007 (in addition to the WSS bits above)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l1 level1 lfo1"&gt;&lt;/FONT&gt;&lt;/o:p&gt;&lt;SPAN style="mso-fareast-font-family: Calibri; mso-bidi-font-family: Calibri"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&lt;FONT face=Calibri size=3&gt;1.&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;MOSS SP1&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l0 level1 lfo2"&gt;&lt;SPAN style="mso-fareast-font-family: Calibri; mso-bidi-font-family: Calibri"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&lt;FONT face=Calibri size=3&gt;2.&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;MOSS Global&amp;nbsp;– &lt;SPAN style="COLOR: #1f497d"&gt;&lt;A href="http://support.microsoft.com/kb/951297" mce_href="http://support.microsoft.com/kb/951297"&gt;951297&lt;/A&gt; &lt;/SPAN&gt;–&amp;nbsp;July 15&lt;SUP&gt;th&lt;/SUP&gt; Package (a.k.a.&amp;nbsp;IU package)&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l0 level1 lfo2"&gt;&lt;SPAN style="mso-fareast-font-family: Calibri; mso-bidi-font-family: Calibri"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&lt;FONT face=Calibri size=3&gt;3.&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;MOSS Local (Document Life Cycle) –&lt;SPAN style="COLOR: #1f497d"&gt; &lt;A href="http://support.microsoft.com/kb/955586" mce_href="http://support.microsoft.com/kb/955586"&gt;955586&lt;/A&gt; &lt;/SPAN&gt;– July 23&lt;SUP&gt;rd &lt;/SUP&gt;Package&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l0 level1 lfo2"&gt;&lt;SPAN style="mso-fareast-font-family: Calibri; mso-bidi-font-family: Calibri"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&lt;FONT face=Calibri size=3&gt;4.&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;MOSS Global – &lt;/FONT&gt;&lt;A href="http://support.microsoft.com/kb/956056" mce_href="http://support.microsoft.com/kb/956056"&gt;&lt;FONT face=Calibri size=3&gt;956056&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt; – August 26&lt;SUP&gt;th&lt;/SUP&gt; Package&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l0 level1 lfo2"&gt;&lt;SPAN style="mso-fareast-font-family: Calibri; mso-bidi-font-family: Calibri"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&lt;FONT face=Calibri size=3&gt;5.&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;MOSS Global – &lt;/FONT&gt;&lt;A href="http://support.microsoft.com/kb/953397" mce_href="http://support.microsoft.com/kb/953397"&gt;&lt;FONT face=Calibri size=3&gt;953397&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;B&gt; &lt;/B&gt;– MS08-043: August 12&lt;SUP&gt;th&lt;/SUP&gt; Package&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="COLOR: #1f497d"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT face=Calibri size=3&gt;I can’t stress enough the need to review the software update procedures.&amp;nbsp; Checking and removing orphaned content is a vital prerequisite for update installation, orphaned content will cause some packages to fail.&amp;nbsp; One additional orphan check that is not detachable by &lt;/FONT&gt;&lt;A href="http://technet.microsoft.com/en-us/library/cc263282.aspx" mce_href="http://technet.microsoft.com/en-us/library/cc263282.aspx"&gt;&lt;FONT face=Calibri size=3&gt;STSADM -o databaserepair &lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;, that I also highly recommend running, is outlined &lt;/FONT&gt;&lt;A href="http://blogs.technet.com/corybu/archive/2007/05/31/sharepoint-orphans-explained.aspx" mce_href="http://blogs.technet.com/corybu/archive/2007/05/31/sharepoint-orphans-explained.aspx"&gt;&lt;FONT face=Calibri size=3&gt;here&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;B&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Deploy software updates for Office SharePoint Server 2007&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;A href="http://technet.microsoft.com/en-us/library/cc263467.aspx" mce_href="http://technet.microsoft.com/en-us/library/cc263467.aspx"&gt;&lt;FONT face=Calibri size=3&gt;http://technet.microsoft.com/en-us/library/cc263467.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Deploy software updates for Windows SharePoint Services 3.0&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;A href="http://technet.microsoft.com/en-us/library/cc288269.aspx" mce_href="http://technet.microsoft.com/en-us/library/cc288269.aspx"&gt;&lt;FONT face=Calibri size=3&gt;http://technet.microsoft.com/en-us/library/cc288269.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8954345" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author><category term="Sharepoint" scheme="http://blogs.msdn.com/josrod/archive/tags/Sharepoint/default.aspx" /><category term="MOSS" scheme="http://blogs.msdn.com/josrod/archive/tags/MOSS/default.aspx" /><category term="Services Packs" scheme="http://blogs.msdn.com/josrod/archive/tags/Services+Packs/default.aspx" /></entry><entry><title>WSS and MOSS Infrastructure Updates Released</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2008/07/15/wss-and-moss-infrastructure-updates-released.aspx" /><id>http://blogs.msdn.com/josrod/archive/2008/07/15/wss-and-moss-infrastructure-updates-released.aspx</id><published>2008-07-16T01:13:00Z</published><updated>2008-07-16T01:13:00Z</updated><content type="html">&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Today we released some very important updates for WSS 3.0, SharePoint 2007, Project Server 2007, Search Server 2008 (Full and Express) and Project Professional 2007.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;This updates includes fixes for several areas of the product, including search, content deployment, performance and some core platform components.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;I’ve included the links to the WSS and MOSS updates below for your convenience.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Because of the magnitude and amount of updates included in these package, I strongly encourage you to schedule these updates for deployment into your environments.&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Search Enhancements&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;FONT face=Calibri size=3&gt;The Infrastructure Update for MOSS contains the new Enterprise Search features that were shipped in Search Server 2008 and Search Server 2008 Express that were are not already in SharePoint Server 2007; this includes Federated Search capability, a unified administration dashboard and several Search core platform performance updates.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Additional information on the new search capabilities can be found &lt;/FONT&gt;&lt;A class="" href="http://blogs.msdn.com/enterprisesearch/archive/2008/07/15/announcing-availability-of-infrastructure-updates.aspx" target=_blank mce_href="http://blogs.msdn.com/enterprisesearch/archive/2008/07/15/announcing-availability-of-infrastructure-updates.aspx"&gt;&lt;FONT face=Calibri size=3&gt;here&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Content Deployment Enhancements&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;FONT face=Calibri size=3&gt;For the folks that are using Content Deployment, there are a number of additional fixes included in this update that are not in the Content Deployment ( &lt;/FONT&gt;&lt;A class="" href="http://support.microsoft.com/kb/952704/" target=_blank mce_href="http://support.microsoft.com/kb/952704/"&gt;&lt;FONT face=Calibri size=3&gt;952704&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt; &amp;amp; &lt;/FONT&gt;&lt;A class="" href="http://support.microsoft.com/kb/952698/" target=_blank mce_href="http://support.microsoft.com/kb/952698/"&gt;&lt;FONT face=Calibri size=3&gt;952698&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt;) update released on May 20&lt;SUP&gt;th&lt;/SUP&gt;. Details on the additional content deployment fixes can be &lt;/FONT&gt;&lt;A class="" href="http://blogs.msdn.com/ecm/archive/2008/07/15/content-deployment-and-the-infrastructure-update.aspx" target=_blank mce_href="http://blogs.msdn.com/ecm/archive/2008/07/15/content-deployment-and-the-infrastructure-update.aspx"&gt;&lt;FONT face=Calibri size=3&gt;here&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="COLOR: #e36c0a; mso-themecolor: accent6; mso-themeshade: 191"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 14pt; COLOR: #e36c0a; mso-themecolor: accent6; mso-themeshade: 191"&gt;&lt;FONT face=Calibri&gt;MOSS 2007 Links&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Description of the Microsoft Office Servers Infrastructure Update: July 15, 2008&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;A class="" href="http://support.microsoft.com/kb/951297" target=_blank mce_href="http://support.microsoft.com/kb/951297"&gt;&lt;FONT face=Calibri size=3&gt;http://support.microsoft.com/kb/951297&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Issues that are fixed in Microsoft Office Servers by the Microsoft Office Servers Infrastructure Update&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in"&gt;&lt;A class="" href="http://support.microsoft.com/kb/953750/" target=_blank mce_href="http://support.microsoft.com/kb/953750/"&gt;&lt;FONT face=Calibri size=3&gt;http://support.microsoft.com/kb/953750/&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-tab-count: 1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;Installation Instructions&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in"&gt;&lt;A class="" href="http://technet.microsoft.com/en-us/library/cc718729.aspx" target=_blank mce_href="http://technet.microsoft.com/en-us/library/cc718729.aspx"&gt;&lt;FONT face=Calibri size=3&gt;http://technet.microsoft.com/en-us/library/cc718729.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-tab-count: 1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;Download Links:&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;(x86) &lt;A class="" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3811C371-0E83-47C8-976B-0B7F26A3B3C4" target=_blank mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3811C371-0E83-47C8-976B-0B7F26A3B3C4"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=3811C371-0E83-47C8-976B-0B7F26A3B3C4&lt;/A&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=256CE3C3-6A42-4953-8E1B-E0BF27FD465B" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyId=256CE3C3-6A42-4953-8E1B-E0BF27FD465B"&gt;&lt;FONT face=Calibri size=3&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-tab-count: 1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;(x64) &lt;A class="" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=6E4F31AB-AF25-47DF-9BF1-423E248FA6FC" target=_blank mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyId=6E4F31AB-AF25-47DF-9BF1-423E248FA6FC"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=6E4F31AB-AF25-47DF-9BF1-423E248FA6FC&lt;/A&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 14pt; COLOR: #e36c0a; mso-themecolor: accent6; mso-themeshade: 191"&gt;&lt;FONT face=Calibri&gt;Windows SharePoint Services 3.0 Links&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Description of the Infrastructure Update for Windows SharePoint Services 3.0: July 15, 2008&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;A class="" href="http://support.microsoft.com/kb/951695" target=_blank mce_href="http://support.microsoft.com/kb/951695"&gt;&lt;FONT face=Calibri size=3&gt;http://support.microsoft.com/kb/951695&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Issues that are fixed in Windows SharePoint Services 3.0 by the Windows SharePoint Services 3.0 Infrastructure Update&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in"&gt;&lt;A class="" href="http://support.microsoft.com/kb/953749/" target=_blank mce_href="http://support.microsoft.com/kb/953749/"&gt;&lt;FONT face=Calibri size=3&gt;http://support.microsoft.com/kb/953749/&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-tab-count: 1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;Installation Instructions&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in"&gt;&lt;A class="" href="http://support.microsoft.com/kb/953749/" target=_blank mce_href="http://support.microsoft.com/kb/953749/"&gt;&lt;FONT face=Calibri size=3&gt;http://technet.microsoft.com/en-us/library/cc288269.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-tab-count: 1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Download Links:&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-tab-count: 1"&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-tab-count: 1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;(x86) &lt;/FONT&gt;&lt;/FONT&gt;&lt;A class="" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=256CE3C3-6A42-4953-8E1B-E0BF27FD465B" target=_blank mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyId=256CE3C3-6A42-4953-8E1B-E0BF27FD465B"&gt;&lt;FONT face=Calibri size=3&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=256CE3C3-6A42-4953-8E1B-E0BF27FD465B&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-tab-count: 1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;(x64) &lt;/FONT&gt;&lt;/FONT&gt;&lt;A class="" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3A74E566-CB4A-4DB9-851C-E3FBBE5E6D6E" target=_blank mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3A74E566-CB4A-4DB9-851C-E3FBBE5E6D6E"&gt;&lt;FONT face=Calibri color=#0000ff size=3&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=3A74E566-CB4A-4DB9-851C-E3FBBE5E6D6E&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8735409" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author><category term="Sharepoint" scheme="http://blogs.msdn.com/josrod/archive/tags/Sharepoint/default.aspx" /><category term="MOSS" scheme="http://blogs.msdn.com/josrod/archive/tags/MOSS/default.aspx" /></entry><entry><title>A SharePoint "Related" Patch</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2008/07/02/a-sharepoint-related-patch.aspx" /><id>http://blogs.msdn.com/josrod/archive/2008/07/02/a-sharepoint-related-patch.aspx</id><published>2008-07-02T20:26:00Z</published><updated>2008-07-02T20:26:00Z</updated><content type="html">&lt;P class=MsoPlainText style="MARGIN: 0in 0in 0pt"&gt;There's an IIS 6.0 update that recently came out that should be applied to all WSS/MOSS servers, as it often falls victim.&amp;nbsp; JB has more on his blog at: &lt;A href="http://blogs.msdn.com/jb/archive/2008/02/28/so-your-iis-manager-comes-up-blank-too.aspx" mce_href="http://blogs.msdn.com/jb/archive/2008/02/28/so-your-iis-manager-comes-up-blank-too.aspx"&gt;http://blogs.msdn.com/jb/archive/2008/02/28/so-your-iis-manager-comes-up-blank-too.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P class=MsoPlainText style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoPlainText style="MARGIN: 0in 0in 0pt"&gt;You can get the details at &lt;A href="http://support.microsoft.com/kb/946517" mce_href="http://support.microsof.tcom/kb/946517"&gt;http://support.microsoft.com/kb/946517&lt;/A&gt; &lt;/P&gt;
&lt;P class=MsoPlainText style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8681809" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author><category term="MOSS" scheme="http://blogs.msdn.com/josrod/archive/tags/MOSS/default.aspx" /></entry><entry><title>Windows SharePoint Services &amp; Microsoft Office SharePoint Server hotfixes for March 27, 2008</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2008/04/14/wss-moss-2007-hotfixes-for-march-27-2008.aspx" /><id>http://blogs.msdn.com/josrod/archive/2008/04/14/wss-moss-2007-hotfixes-for-march-27-2008.aspx</id><published>2008-04-14T20:55:00Z</published><updated>2008-04-14T20:55:00Z</updated><content type="html">The&amp;nbsp;latest&amp;nbsp;post SP1 global WSS and MOSS patches are: 
&lt;BLOCKQUOTE&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt"&gt;&lt;B&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Description of the SharePoint Server 2007 hotfix package: March 27, 2008&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt"&gt;&lt;A href="http://support.microsoft.com/?id=950487" mce_href="http://support.microsoft.com/?id=950487"&gt;&lt;FONT face=Calibri size=3&gt;http://support.microsoft.com/?id=950487&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt"&gt;&lt;B&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Description of the Windows SharePoint Services 3.0 hotfix package: March 27, 2008&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt"&gt;&lt;A href="http://support.microsoft.com/?id=950484" mce_href="http://support.microsoft.com/?id=950484"&gt;&lt;FONT face=Calibri size=3&gt;http://support.microsoft.com/?id=950484&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;FONT face=Arial size=2&gt;The lastest post SP1 localized WSS (no localized MOSS patches after SP1 yet) patch is:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;STRONG&gt;Description of the Windows SharePoint Services 3.0 hotfix package: February 22, 2008&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;STRONG&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt"&gt;&lt;A href="http://support.microsoft.com/?id=948957" mce_href="http://support.microsoft.com/?id=950484"&gt;&lt;FONT face=Calibri size=3&gt;http://support.microsoft.com/?id=948957&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;You need all three of these patches installed to be running the most current WSS and MOSS updates.&lt;/P&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt"&gt;Your build number will be &lt;STRONG&gt;12.0.0.6308&lt;/STRONG&gt; after this installation.&lt;/P&gt;
&lt;P class=MsoNoSpacing style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8393769" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author><category term="Sharepoint" scheme="http://blogs.msdn.com/josrod/archive/tags/Sharepoint/default.aspx" /><category term="MOSS" scheme="http://blogs.msdn.com/josrod/archive/tags/MOSS/default.aspx" /><category term="Services Packs" scheme="http://blogs.msdn.com/josrod/archive/tags/Services+Packs/default.aspx" /></entry><entry><title>Lastest SharePoint 2003 Post SP3 Updates Released</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2008/03/17/lastest-sharepoint-2003-post-sp3-updates-released.aspx" /><id>http://blogs.msdn.com/josrod/archive/2008/03/17/lastest-sharepoint-2003-post-sp3-updates-released.aspx</id><published>2008-03-18T01:52:00Z</published><updated>2008-03-18T01:52:00Z</updated><content type="html">&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;FONT size=3&gt;Just in case anyone is looking, the WSS &amp;amp; SPS 2003 post SP3 rollup packages have been released.&amp;nbsp; The links are below for quick reference.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;/SPAN&gt;&lt;/B&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;FONT size=3&gt;Windows SharePoint Services 2003&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN lang=EN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN"&gt;Windows SharePoint Services SP3 Download Site&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN lang=EN style="FONT-SIZE: 11pt; COLOR: blue; FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN"&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=2BBFC89B-EB59-49FF-B58F-684693CB25A7&amp;amp;displaylang=en"&gt;&lt;FONT color=#0000ff&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=2BBFC89B-EB59-49FF-B58F-684693CB25A7&amp;amp;displaylang=en&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN lang=EN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;Description of the Windows SharePoint Services 2.0 post-Service Pack 3 hotfix package: February 26, 2008&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: blue; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;A href="http://support.microsoft.com/kb/948919"&gt;http://support.microsoft.com/kb/948919&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B&gt;&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;FONT size=3&gt;SharePoint Portal Server 2003&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;SharePoint Portal Server 2003 SP3 Download Site&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=ab086d48-1148-48de-b4ec-a6298367e5f0&amp;amp;displaylang=en"&gt;&lt;SPAN style="COLOR: #1f497d"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=ab086d48-1148-48de-b4ec-a6298367e5f0&amp;amp;displaylang=en&lt;/SPAN&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;o:p&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Description of the SharePoint Portal Server 2003 post-Service Pack 3 hotfix package: February 26, 2008&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;A href="http://support.microsoft.com/kb/941204"&gt;http://support.microsoft.com/kb/941204&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in"&gt;Description of the SharePoint Portal Server 2003 post-Service Pack 3 hotfix package: February 27, 2008 &lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;A href="http://support.microsoft.com/kb/943167"&gt;http://support.microsoft.com/kb/943167&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8297602" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author><category term="SharePoint 2003" scheme="http://blogs.msdn.com/josrod/archive/tags/SharePoint+2003/default.aspx" /></entry><entry><title>Install Zune 2.3 on Server 2008 x64</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2008/02/03/install-zune-2-3-on-server-2008-x64.aspx" /><id>http://blogs.msdn.com/josrod/archive/2008/02/03/install-zune-2-3-on-server-2008-x64.aspx</id><published>2008-02-04T00:38:00Z</published><updated>2008-02-04T00:38:00Z</updated><content type="html">&lt;P&gt;After a couple failed attempts and a bunch of swearing&amp;nbsp;at the&amp;nbsp;"&lt;A class="" href="http://support.microsoft.com/kb/944938" target=_blank mce_href="http://support.microsoft.com/kb/944938"&gt;The media for installation package couldn't be found. It might be incomplete or corrupt.&lt;/A&gt;" error message, I ended up going through the required components, finding that "Windows Format SDK" requires Windows Media Player.&amp;nbsp; After&amp;nbsp;installing the Desktop feature in 2008, which incldues Windows Media player, the Zune install completed with no problems.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7420045" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author><category term="Zune" scheme="http://blogs.msdn.com/josrod/archive/tags/Zune/default.aspx" /><category term="Server 2008" scheme="http://blogs.msdn.com/josrod/archive/tags/Server+2008/default.aspx" /></entry><entry><title>WSS 2003 Post SP3 Hotfix Package Released</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/josrod/archive/2008/01/31/wss-2003-post-sp3-hotfix-package-released.aspx" /><id>http://blogs.msdn.com/josrod/archive/2008/01/31/wss-2003-post-sp3-hotfix-package-released.aspx</id><published>2008-02-01T01:47:00Z</published><updated>2008-02-01T01:47:00Z</updated><content type="html">&lt;P&gt;Details are in &lt;A class="" href="http://support.microsoft.com/kb/941412" mce_href="http://support.microsoft.com/kb/941412"&gt;KB941412&lt;/A&gt;, but it's got a couple notable updates, one specifically for a New Zealand DST change.&amp;nbsp; You'll have to contact MS to get the download or use our new &lt;A class="" href="https://support.microsoft.com/contactus2/emailcontact.aspx?scid=sw;[LN];1414&amp;amp;from=KBHotfix&amp;amp;WS=hotfix" target=_blank mce_href="https://support.microsoft.com/contactus2/emailcontact.aspx?scid=sw;[LN];1414&amp;amp;from=KBHotfix&amp;amp;WS=hotfix"&gt;hotfix request system&lt;/A&gt; linked in the KB.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/kb/941412"&gt;http://support.microsoft.com/kb/941412&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7360697" width="1" height="1"&gt;</content><author><name>rodgerjt</name><uri>http://blogs.msdn.com/members/rodgerjt.aspx</uri></author><category term="Sharepoint" scheme="http://blogs.msdn.com/josrod/archive/tags/Sharepoint/default.aspx" /><category term="SharePoint 2003" scheme="http://blogs.msdn.com/josrod/archive/tags/SharePoint+2003/default.aspx" /></entry></feed>