<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>andreas glaser</title>
    <description>SharePoint 2007 - WCMS, Administration / Hyper-V / SharePoint 2010</description>
    <link>http://www.andreasglaser.net/</link>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>BlogEngine.NET 1.5.0.7</generator>
    <language>en-US</language>
    <blogChannel:blogRoll>http://www.andreasglaser.net/opml.axd</blogChannel:blogRoll>
    <blogChannel:blink>http://andreasglaser.net/syndication.axd</blogChannel:blink>
    <dc:creator>Andreas Glaser</dc:creator>
    <dc:title>andreas glaser</dc:title>
    <geo:lat>0.000000</geo:lat>
    <geo:long>0.000000</geo:long>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/AndreasGlaser" type="application/rss+xml" /><item>
      <title>MOSS 2007 / WCMS development: PortalSiteMapProvider, SPNavigationSiteMapNode and external links</title>
      <description>&lt;p&gt;This is one of the things in&lt;strong&gt; MOSS 2007 / WCMS development&lt;/strong&gt; which are not obvious but can save some time if you know it.&amp;#160; Some time ago i blogged about the &lt;strong&gt;PortalSiteMapProvider&lt;/strong&gt; and how you can use it to build your &lt;strong&gt;custom navigation&lt;/strong&gt;:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a title="PortalSiteMapProvider, SiteMapNodeCollection, SiteMapNode - SPNavigationNodeCollection, SPNavigationNode and IsVisible" href="http://andreasglaser.net/post/2008/11/09/MOSS-2007-WCMS-development-PortalSiteMapProvider-SiteMapNodeCollection-SiteMapNode-SPNavigationNodeCollection-SPNavigationNode-and-IsVisible.aspx"&gt;PortalSiteMapProvider, SiteMapNodeCollection, SiteMapNode - SPNavigationNodeCollection, SPNavigationNode and IsVisible&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a title="PortalSiteMapProvider and SecurityTrimmingEnabled" href="http://andreasglaser.net/post/2009/04/26/MOSS-2007-WCMS-development-e28093-PortalSiteMapProvider-and-SecurityTrimmingEnabled.aspx"&gt;PortalSiteMapProvider and SecurityTrimmingEnabled&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;These things work really fine but if you want to have &lt;strong&gt;external links&lt;/strong&gt; in your navigation you need to be aware that the object behind a navigation node can be different. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://andreasglaser.net/image.axd?picture=image_33.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://andreasglaser.net/image.axd?picture=image_thumb_33.png" width="244" height="153" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Here you can see 3 different types in the SharePoint UI: &lt;/p&gt;  &lt;p&gt;&lt;a href="http://andreasglaser.net/image.axd?picture=image_34.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://andreasglaser.net/image.axd?picture=image_thumb_34.png" width="244" height="58" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;The first 2 nodes are of type &lt;strong&gt;site&lt;/strong&gt;, the next 2 are &lt;strong&gt;pages&lt;/strong&gt; and the last is my&lt;strong&gt; external link&lt;/strong&gt;. External link means that if you click it the link should be opened in a new tab (target=’_blank’).&lt;/p&gt;  &lt;h2&gt;PortalSiteMapProvider and SPNavigationSiteMapNode &lt;/h2&gt;  &lt;p&gt;You get a &lt;strong&gt;PortalSiteMapProvider&lt;/strong&gt; object like I have described it in the older posts:&lt;/p&gt;  &lt;blockquote&gt;   &lt;div style="font-family: courier new; background: white; color: black; font-size: 10pt; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial"&gt;     &lt;pre style="margin: 0px"&gt;&lt;span style="color: rgb(43,145,175)"&gt;PortalSiteMapProvider&lt;/span&gt; map = &lt;span style="color: blue"&gt;new&lt;/span&gt; &lt;span style="color: rgb(43,145,175)"&gt;PortalSiteMapProvider&lt;/span&gt;();&lt;/pre&gt;

    &lt;pre style="margin: 0px"&gt;&lt;span style="color: rgb(43,145,175)"&gt;SiteMapNodeCollection&lt;/span&gt; nodeColl = map.CurrentNode.ChildNodes;
	&lt;/pre&gt;

    &lt;pre style="margin: 0px"&gt;&lt;span style="color: blue"&gt;foreach&lt;/span&gt; (&lt;span style="color: rgb(43,145,175)"&gt;SiteMapNode&lt;/span&gt; childNode &lt;span style="color: blue"&gt;in&lt;/span&gt; nodeColl)
{&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/pre&gt;

    &lt;pre style="margin: 0px"&gt;    &lt;span style="color: green"&gt;//childNode.Title;&lt;/span&gt;&amp;#160;&amp;#160;&amp;#160; &lt;/pre&gt;

    &lt;pre style="margin: 0px"&gt;    &lt;span style="color: green"&gt;//childNode.Key;&lt;/span&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/pre&gt;

    &lt;pre style="margin: 0px"&gt;    &lt;span style="color: green"&gt;//childNode.Url;&lt;/span&gt;
}&lt;/pre&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;

&lt;p&gt;If you iterate through the &lt;strong&gt;childNodes&lt;/strong&gt; you have an object of type [Microsoft.SharePoint.Publishing.Navigation.&lt;strong&gt;PortalWebSiteMapNode&lt;/strong&gt;] which has no property where it says that this link is external or not. The external link has an object of type [Microsoft.SharePoint.Publishing.Navigation.&lt;strong&gt;SPNavigationSiteMapNode&lt;/strong&gt;] which has a property called isExternal (boolean). You need to cast the childNode:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color: blue"&gt;if &lt;/span&gt;(childNode.GetType() == &lt;span style="color: blue"&gt;typeof&lt;/span&gt;(Microsoft.SharePoint.Publishing.Navigation.&lt;br /&gt;     &lt;span style="color: #2b91af"&gt;SPNavigationSiteMapNode&lt;/span&gt;))
{
    &lt;span style="color: blue"&gt;bool &lt;/span&gt;externalLink = ((Microsoft.SharePoint.Publishing.Navigation.&lt;br /&gt;        &lt;span style="color: #2b91af"&gt;SPNavigationSiteMapNode&lt;/span&gt;)(childNode)).IsExternal;
}&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;Works great ;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AndreasGlaser/~4/D0zWpGn5esA" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/AndreasGlaser/~3/D0zWpGn5esA/post.aspx</link>
      <author>Andreas Glaser</author>
      <comments>http://www.andreasglaser.net/post/2009/07/07/MOSS-2007-WCMS-development-PortalSiteMapProvider-SPNavigationSiteMapNode-and-external-links.aspx#comment</comments>
      <guid isPermaLink="false">http://www.andreasglaser.net/post.aspx?id=9db14274-2436-4260-8c38-530c335eb652</guid>
      <pubDate>Tue, 07 Jul 2009 17:18:36 +0200</pubDate>
      <category>SharePoint 2007</category>
      <dc:publisher>Andreas Glaser</dc:publisher>
      <pingback:server>http://www.andreasglaser.net/pingback.axd</pingback:server>
      <pingback:target>http://www.andreasglaser.net/post.aspx?id=9db14274-2436-4260-8c38-530c335eb652</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.andreasglaser.net/trackback.axd?id=9db14274-2436-4260-8c38-530c335eb652</trackback:ping>
      <wfw:comment>http://www.andreasglaser.net/post/2009/07/07/MOSS-2007-WCMS-development-PortalSiteMapProvider-SPNavigationSiteMapNode-and-external-links.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andreasglaser.net/syndication.axd?post=9db14274-2436-4260-8c38-530c335eb652</wfw:commentRss>
    <feedburner:origLink>http://www.andreasglaser.net/post.aspx?id=9db14274-2436-4260-8c38-530c335eb652</feedburner:origLink></item>
    <item>
      <title>SharePoint 2007 resources – June 2009: WCMS and virtualization (Hyper-V)</title>
      <description>&lt;p&gt;A little bit later than usual but here are the in my opinion most interesting &lt;strong&gt;SharePoint 2007 resources&lt;/strong&gt; in &lt;strong&gt;June 2009&lt;/strong&gt;… with every link comes a short description of the content available. This month is about SharePoint 2007 in general and &lt;strong&gt;WCMS&lt;/strong&gt; as well as &lt;strong&gt;virtualization&lt;/strong&gt;.&lt;/p&gt;  &lt;h2&gt;SharePoint 2007 WCMS&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a title="Modifying out-of-the-box SharePoint files" href="http://blogs.msdn.com/uksharepoint/archive/2009/06/19/modifying-out-of-the-box-sharepoint-files.aspx" target="_blank"&gt;Modifying out-of-the-box SharePoint files&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a title="How to incrementally deploy SharePoint MySites" href="http://blogs.msdn.com/uksharepoint/archive/2009/06/23/quick-tip-how-to-incrementally-allow-users-to-have-a-mysite.aspx" target="_blank"&gt;How to incrementally deploy SharePoint MySites&lt;/a&gt;       &lt;br /&gt;Want to modify out-of-the-box SharePoint files? The UK SharePoint Team writes about common modifications and suggests alternatives. You can also find an easy way to incrementally deploy the My Site to users. &lt;/li&gt; &lt;/ul&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a title="Limitations of STSADM -o export/import related to publishing sites" href="http://blogs.technet.com/stefan_gossner/archive/2009/05/27/limitations-of-stsadm-o-export-import-related-to-publishing-sites.aspx" target="_blank"&gt;Limitations of STSADM -o export/import related to publishing sites&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a title="SharePoint application pool hang on servers where Visual Studio has been installed in the past (last updated: May 27th, 2009)" href="http://blogs.technet.com/stefan_gossner/archive/2009/05/26/sharepoint-application-pool-hang-on-servers-where-visual-studio-has-been-installed-in-the-past.aspx" target="_blank"&gt;SharePoint application pool hang on servers where Visual Studio has been installed in the past (last updated: May 27th, 2009)&lt;/a&gt;       &lt;br /&gt;Don’t install Visual Studio or the .NET Framework 2.0 SDK on a production server. Why? Stefan Gossner explains in detail… &lt;/li&gt; &lt;/ul&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a title="Service pack 2 Update." href="http://blogs.msdn.com/sharepoint/archive/2009/06/25/service-pack-2-update.aspx" target="_blank"&gt;Service pack 2 Update.&lt;/a&gt;       &lt;br /&gt;There is a fix for the product expiration which came with Service Pack 2 for SharePoint 2007. &lt;/li&gt; &lt;/ul&gt;  &lt;h2&gt;Virtualization (Hyper-V)&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a title="Changes to virtual machine snapshots in Windows Server 2008 R2" href="http://blogs.msdn.com/virtual_pc_guy/archive/2009/06/18/changes-to-virtual-machine-snapshots-in-windows-server-2008-r2.aspx" target="_blank"&gt;Changes to virtual machine snapshots in Windows Server 2008 R2&lt;/a&gt;       &lt;br /&gt;Ben explains 5 changes to virtual machine snapshots in Windows Server 2008 R2. &lt;/li&gt; &lt;/ul&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a title="Hyper-V and in-place upgrade to Windows Server 2008 R2 Release Candidate" href="http://blogs.technet.com/jhoward/archive/2009/05/05/hyper-v-and-in-place-upgrade-to-windows-server-2008-r2-release-candidate.aspx" target="_blank"&gt;Hyper-V and in-place upgrade to Windows Server 2008 R2 Release Candidate&lt;/a&gt;       &lt;br /&gt;Don’t disable the Hyper-V role even if you read a notice while upgrading Windows Server 2008. &lt;/li&gt; &lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/AndreasGlaser/~4/k42KMGTI6ac" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/AndreasGlaser/~3/k42KMGTI6ac/post.aspx</link>
      <author>Andreas Glaser</author>
      <comments>http://www.andreasglaser.net/post/2009/07/05/SharePoint-2007-resources-e28093-June-2009-WCMS-and-virtualization-(Hyper-V).aspx#comment</comments>
      <guid isPermaLink="false">http://www.andreasglaser.net/post.aspx?id=3cc72e9d-1186-44eb-b5bc-47e46637872d</guid>
      <pubDate>Sun, 05 Jul 2009 22:29:54 +0200</pubDate>
      <category>SharePoint 2007</category>
      <dc:publisher>Andreas Glaser</dc:publisher>
      <pingback:server>http://www.andreasglaser.net/pingback.axd</pingback:server>
      <pingback:target>http://www.andreasglaser.net/post.aspx?id=3cc72e9d-1186-44eb-b5bc-47e46637872d</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.andreasglaser.net/trackback.axd?id=3cc72e9d-1186-44eb-b5bc-47e46637872d</trackback:ping>
      <wfw:comment>http://www.andreasglaser.net/post/2009/07/05/SharePoint-2007-resources-e28093-June-2009-WCMS-and-virtualization-(Hyper-V).aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andreasglaser.net/syndication.axd?post=3cc72e9d-1186-44eb-b5bc-47e46637872d</wfw:commentRss>
    <feedburner:origLink>http://www.andreasglaser.net/post.aspx?id=3cc72e9d-1186-44eb-b5bc-47e46637872d</feedburner:origLink></item>
    <item>
      <title>Changes to andreasglaser.net</title>
      <description>&lt;p&gt;I have made some changes regarding the layout and topics of my blog. Besides the new layout which you can see right now I have clearly defined my fields of work: The &lt;strong&gt;categories&lt;/strong&gt; as well as the &lt;strong&gt;tag cloud&lt;/strong&gt; now represent my knowledge. &lt;/p&gt;  &lt;h2&gt;Categories&lt;/h2&gt;  &lt;p&gt;I reduced the amount of categories from 6 to 5. The category &lt;strong&gt;Windows&lt;/strong&gt; is now integrated within “&lt;strong&gt;Event Viewer, Tips&lt;/strong&gt;” which means that you will find there tips around Windows as well as error messages from Windows Server 2003 / 2008 event viewer.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Event Viewer, Tips &lt;/li&gt;    &lt;li&gt;SharePoint 2007 &lt;/li&gt;    &lt;li&gt;SharePoint 2010 &lt;/li&gt;    &lt;li&gt;SharePoint Online &lt;/li&gt;    &lt;li&gt;Virtualization &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;SharePoint 2007&lt;/strong&gt;, &lt;strong&gt;SharePoint 2010&lt;/strong&gt; and&lt;strong&gt; SharePoint Online&lt;/strong&gt; are clear. &lt;strong&gt;Virtualization&lt;/strong&gt; means Hyper-V although there are some postings about Virtual PC and Virtual Server 2005.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://andreasglaser.net/image.axd?picture=image_29.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Categories of my blog." border="0" alt="Categories of my blog." src="http://andreasglaser.net/image.axd?picture=image_thumb_29.png" width="244" height="178" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;h2&gt;Tag cloud&lt;/h2&gt;  &lt;p&gt;I removed the tag &lt;strong&gt;SharePoint 2007&lt;/strong&gt; since this was and is a category. I added a new tag called &lt;strong&gt;administration&lt;/strong&gt; since I do a lot of SharePoint administration.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://andreasglaser.net/image.axd?picture=image_30.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://andreasglaser.net/image.axd?picture=image_thumb_30.png" width="244" height="178" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;h2&gt;Breadcrumb&lt;/h2&gt;  &lt;p&gt;All of my posts have one category and several tags which are now presented as a &lt;strong&gt;breadcrumb&lt;/strong&gt;. It should be easier to navigate through content which you find interesting.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://andreasglaser.net/image.axd?picture=image_31.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://andreasglaser.net/image.axd?picture=image_thumb_31.png" width="244" height="185" /&gt;&lt;/a&gt;&amp;#160;&lt;a href="http://andreasglaser.net/image.axd?picture=image_32.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://andreasglaser.net/image.axd?picture=image_thumb_32.png" width="244" height="185" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;h2&gt;Summary&lt;/h2&gt;  &lt;p&gt;There are a lot of changes regarding layout and the structure of my content. I hope you as a reader benefit from the changes. If not drop a comment below.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AndreasGlaser/~4/fzq_2jfQF8c" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/AndreasGlaser/~3/fzq_2jfQF8c/post.aspx</link>
      <author>Andreas Glaser</author>
      <comments>http://www.andreasglaser.net/post/2009/07/02/Changes-to-andreasglasernet.aspx#comment</comments>
      <guid isPermaLink="false">http://www.andreasglaser.net/post.aspx?id=3940d28d-cf5e-43b3-8b3f-51a0f0362221</guid>
      <pubDate>Thu, 02 Jul 2009 22:31:43 +0200</pubDate>
      <category>SharePoint 2007</category>
      <dc:publisher>Andreas Glaser</dc:publisher>
      <pingback:server>http://www.andreasglaser.net/pingback.axd</pingback:server>
      <pingback:target>http://www.andreasglaser.net/post.aspx?id=3940d28d-cf5e-43b3-8b3f-51a0f0362221</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.andreasglaser.net/trackback.axd?id=3940d28d-cf5e-43b3-8b3f-51a0f0362221</trackback:ping>
      <wfw:comment>http://www.andreasglaser.net/post/2009/07/02/Changes-to-andreasglasernet.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andreasglaser.net/syndication.axd?post=3940d28d-cf5e-43b3-8b3f-51a0f0362221</wfw:commentRss>
    <feedburner:origLink>http://www.andreasglaser.net/post.aspx?id=3940d28d-cf5e-43b3-8b3f-51a0f0362221</feedburner:origLink></item>
    <item>
      <title>MOSS 2007 / WCMS development: onet.xml and Site Collection features</title>
      <description>&lt;p&gt;Today I had a problem with a site collection feature I wanted to activate using a custom &lt;strong&gt;onet.xml&lt;/strong&gt;. I’m developing a WCMS intranet site with custom Master pages and Page layouts so I created my own features and a custom&lt;strong&gt; onet.xml&lt;/strong&gt;. I referenced the &lt;strong&gt;feature GUID&lt;/strong&gt; of the MOSS 2007 &lt;strong&gt;Publishing Site feature&lt;/strong&gt; in the &lt;strong&gt;SiteFeatures&lt;/strong&gt; section. &lt;/p&gt;  &lt;p&gt;After creating the Site Collection the feature was not activated and I wondered why. I got no error message… the feature was just not activated. &lt;/p&gt;  &lt;p&gt;This is how I referenced the Publishing Site feature in the &lt;strong&gt;SiteFeatures&lt;/strong&gt; section:&lt;/p&gt;  &lt;blockquote&gt;   &lt;pre class="code"&gt;&lt;span style="color: blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;SiteFeatures&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;br /&gt;...&lt;br /&gt;&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;lt;!—&lt;/span&gt;&lt;span style="color: green"&gt;PublishingSite &lt;/span&gt;&lt;span style="color: blue"&gt;--&amp;gt;&lt;br /&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;Feature&lt;/span&gt;&lt;span style="color: red"&gt;ID&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;&amp;quot; &lt;span style="color: blue"&gt;f6924d36-2fa8-4f0b-b16d-06b7250180fa&lt;/span&gt;&amp;quot; &lt;span style="color: blue"&gt;/&amp;gt;&lt;br /&gt;...&lt;br /&gt;&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;SiteFeatures&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;&lt;span style="color: blue"&gt;&lt;/span&gt;As you can see I made a mistake because I inserted a blank right before the &lt;strong&gt;feature GUID&lt;/strong&gt;. &lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color: blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;SiteFeatures&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;br /&gt;...&lt;br /&gt;&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;lt;!—&lt;/span&gt;&lt;span style="color: green"&gt;PublishingSite &lt;/span&gt;&lt;span style="color: blue"&gt;--&amp;gt;&lt;br /&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;Feature&lt;/span&gt;&lt;span style="color: red"&gt;ID&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;&amp;quot;&lt;span style="color: blue"&gt;f6924d36-2fa8-4f0b-b16d-06b7250180fa&lt;/span&gt;&amp;quot; &lt;span style="color: blue"&gt;/&amp;gt;&lt;br /&gt;...&lt;br /&gt;&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;SiteFeatures&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;After removing the blank I did an &lt;strong&gt;iisreset&lt;/strong&gt; and recreated my Site Collection.&lt;/p&gt;

&lt;p&gt;I hope this helps before someone searches hours ;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AndreasGlaser/~4/563nBMcSnvs" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/AndreasGlaser/~3/563nBMcSnvs/post.aspx</link>
      <author>Andreas Glaser</author>
      <comments>http://www.andreasglaser.net/post/2009/06/22/MOSS-2007-WCMS-development-onetxml-and-Site-Collection-features.aspx#comment</comments>
      <guid isPermaLink="false">http://www.andreasglaser.net/post.aspx?id=2731bab3-4f17-4737-a0db-74cbd3e01cf9</guid>
      <pubDate>Mon, 22 Jun 2009 00:32:14 +0200</pubDate>
      <category>SharePoint 2007</category>
      <dc:publisher>Andreas Glaser</dc:publisher>
      <pingback:server>http://www.andreasglaser.net/pingback.axd</pingback:server>
      <pingback:target>http://www.andreasglaser.net/post.aspx?id=2731bab3-4f17-4737-a0db-74cbd3e01cf9</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.andreasglaser.net/trackback.axd?id=2731bab3-4f17-4737-a0db-74cbd3e01cf9</trackback:ping>
      <wfw:comment>http://www.andreasglaser.net/post/2009/06/22/MOSS-2007-WCMS-development-onetxml-and-Site-Collection-features.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andreasglaser.net/syndication.axd?post=2731bab3-4f17-4737-a0db-74cbd3e01cf9</wfw:commentRss>
    <feedburner:origLink>http://www.andreasglaser.net/post.aspx?id=2731bab3-4f17-4737-a0db-74cbd3e01cf9</feedburner:origLink></item>
    <item>
      <title>Relaunch of SharePointCommunity.de</title>
      <description>&lt;p&gt;Fabian Moritz and Michael Greth, both SharePoint MVPs, put their blogs and the community board under one platform: &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;/a&gt;&lt;a href="http://sharepointcommunity.de" target="_blank"&gt;SharePointCommunity.de&lt;/a&gt;&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.sharepointcommunity.de/blogs" target="_blank"&gt;SharePointCommunity.de/blogs&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The board and the blogs are running with Community Server 2008.5. &lt;/p&gt;  &lt;p&gt;If you have subscribed to their feed it’s time to update the Url. &lt;/p&gt;  &lt;h2&gt;Read more&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://sharepointcommunity.de/blogs/mgreth/archive/2009/06/15/relaunch-der-sharepointcommunity.aspx" target="_blank"&gt;Relaunch der SharePointCommunity&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://sharepointcommunity.de/blogs/fabianm/archive/2009/06/16/umstellung-des-weblogs-und-der-sharepointcommunity.aspx" target="_blank"&gt;Umstellung des Weblogs und der SharePointCommunity&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AndreasGlaser/~4/M_ScKUETLP4" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/AndreasGlaser/~3/M_ScKUETLP4/post.aspx</link>
      <author>Andreas Glaser</author>
      <comments>http://www.andreasglaser.net/post/2009/06/16/Relaunch-of-SharePointCommunityde.aspx#comment</comments>
      <guid isPermaLink="false">http://www.andreasglaser.net/post.aspx?id=d567c653-b648-4ab9-a846-00fe75350794</guid>
      <pubDate>Tue, 16 Jun 2009 13:00:41 +0200</pubDate>
      <category>SharePoint 2007</category>
      <dc:publisher>Andreas Glaser</dc:publisher>
      <pingback:server>http://www.andreasglaser.net/pingback.axd</pingback:server>
      <pingback:target>http://www.andreasglaser.net/post.aspx?id=d567c653-b648-4ab9-a846-00fe75350794</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.andreasglaser.net/trackback.axd?id=d567c653-b648-4ab9-a846-00fe75350794</trackback:ping>
      <wfw:comment>http://www.andreasglaser.net/post/2009/06/16/Relaunch-of-SharePointCommunityde.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andreasglaser.net/syndication.axd?post=d567c653-b648-4ab9-a846-00fe75350794</wfw:commentRss>
    <feedburner:origLink>http://www.andreasglaser.net/post.aspx?id=d567c653-b648-4ab9-a846-00fe75350794</feedburner:origLink></item>
    <item>
      <title>SharePoint 2007 resources – May 2009: WCMS and virtualization (Hyper-V)</title>
      <description>&lt;p&gt;Here are the in my opinion most interesting &lt;strong&gt;SharePoint 2007 resources&lt;/strong&gt; in &lt;strong&gt;May 2009&lt;/strong&gt;… with every link comes a short description of the content available. This month is about SharePoint 2007 in general and &lt;strong&gt;WCMS&lt;/strong&gt; as well as &lt;strong&gt;virtualization&lt;/strong&gt;.&lt;/p&gt;  &lt;h2&gt;SharePoint 2007 WCMS&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;     &lt;p&gt;&lt;a title="SharePoint Master Page Content Place Holders" href="http://blogs.msdn.com/uksharepoint/archive/2009/05/21/sharepoint-master-page-content-place-holders.aspx" target="_blank"&gt;SharePoint Master Page Content Place Holders&lt;/a&gt;         &lt;br /&gt;The UK SharePoint Team has released a table which “provides a list of the ContentPlaceHolder Ids and corresponding UI element for the default.master Master Page”.         &lt;br /&gt;&lt;/p&gt;   &lt;/li&gt; &lt;/ul&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a title="The April cumulative update for WSS V3 and MOSS 2007 has been released yesterday" href="http://blogs.technet.com/stefan_gossner/archive/2009/05/01/the-april-cumulative-update-for-wss-v3-and-moss-2007-has-been-released-yesterday.aspx" target="_blank"&gt;The April cumulative update for WSS V3 and MOSS 2007 has been released yesterday&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a title="Red is Green, Up is Down and the Unsupported suddenly becomes Supported!" href="http://blogs.technet.com/stefan_gossner/archive/2009/05/01/red-is-green-up-is-down-and-the-unsupported-suddenly-becomes-supported.aspx" target="_blank"&gt;Red is Green, Up is Down and the Unsupported suddenly becomes Supported!&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a title="MOSS 2007 Blob caching and it&amp;#39;s limitations" href="http://blogs.technet.com/stefan_gossner/archive/2009/05/02/moss-2007-blob-caching-and-it-s-limitations.aspx" target="_blank"&gt;MOSS 2007 Blob caching and it's limitations&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a title="MOSS 2007 SP2 - a must have for everyone who uses Variations on his site" href="http://blogs.technet.com/stefan_gossner/archive/2009/05/03/moss-2007-sp2-a-must-have-for-everyone-who-uses-variations-on-his-site.aspx" target="_blank"&gt;MOSS 2007 SP2 - a must have for everyone who uses Variations on his site&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a title="Technet article on how to troubleshoot Content Deployment has been released" href="http://blogs.technet.com/stefan_gossner/archive/2009/05/03/technet-article-on-how-to-troubleshoot-content-deployment-has-been-released.aspx" target="_blank"&gt;Technet article on how to troubleshoot Content Deployment has been released&lt;/a&gt;       &lt;br /&gt;Stefan Gossner has written some interesting and important articles in May 2009. You should definitely check them out! :) &lt;/li&gt; &lt;/ul&gt;  &lt;h2&gt;Virtualization (Hyper-V)&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a title="New in Hyper-V Windows Server 2008 R2 Part 1 – Dedicated Networks" href="http://blogs.technet.com/jhoward/archive/2009/05/04/new-in-hyper-v-windows-server-2008-r2-part-1-dedicated-networks.aspx" target="_blank"&gt;New in Hyper-V Windows Server 2008 R2 Part 1 – Dedicated Networks&lt;/a&gt;&amp;#160; &lt;br /&gt;John Howard always describes important things like networking with Hyper-V with a lot of pictures.       &lt;br /&gt;      &lt;br /&gt;&lt;/li&gt;    &lt;li&gt;&lt;a title="Hyper-V and in-place upgrade to Windows Server 2008 R2 Release Candidate" href="http://blogs.technet.com/jhoward/archive/2009/05/05/hyper-v-and-in-place-upgrade-to-windows-server-2008-r2-release-candidate.aspx" target="_blank"&gt;Hyper-V and in-place upgrade to Windows Server 2008 R2 Release Candidate&lt;/a&gt;       &lt;br /&gt;Don’t disable the Hyper-V role even if you read a notice while upgrading Windows Server 2008.       &lt;br /&gt;      &lt;br /&gt;&lt;/li&gt;    &lt;li&gt;&lt;a title="Hyper-V R2 Import/Export – Part 1 – The Case for New Import/Export Functionality" href="http://blogs.technet.com/virtualization/archive/2009/05/20/hyper-v-r2-import-export-part-1-the-case-for-new-import-export-functionality.aspx" target="_blank"&gt;Hyper-V R2 Import/Export – Part 1 – The Case for New Import/Export Functionality&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a title="Hyper-V R2 Import/Export – Part 2 - The New Import/Export APIs" href="http://blogs.technet.com/virtualization/archive/2009/05/21/hyper-v-r2-import-export-part-2-the-new-import-export-apis.aspx" target="_blank"&gt;Hyper-V R2 Import/Export – Part 2 - The New Import/Export APIs&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a title="Hyper-V R2 Import/Export – Part 3 – The UI" href="http://blogs.technet.com/virtualization/archive/2009/05/22/hyper-v-r2-import-export-part-3-the-ui.aspx" target="_blank"&gt;Hyper-V R2 Import/Export – Part 3 – The UI&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a title="Hyper-V R2 Import/Export – Part 4 – Export code sample" href="http://blogs.technet.com/virtualization/archive/2009/05/27/hyper-v-r2-import-export-part-4-export-code-sample.aspx" target="_blank"&gt;Hyper-V R2 Import/Export – Part 4 – Export code sample&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a title="Hyper-V R2 Import/Export – Part 5 – Import code sample" href="http://blogs.technet.com/virtualization/archive/2009/05/28/hyper-v-r2-import-export-part-5-import-code-sample.aspx" target="_blank"&gt;Hyper-V R2 Import/Export – Part 5 – Import code sample&lt;/a&gt;       &lt;br /&gt;Not satisfied with import and export in Hyper-V v1? Here are the new features like “Copy on Import” (missed that one a lot in v1). &lt;/li&gt; &lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/AndreasGlaser/~4/5QVXSN7AxRI" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/AndreasGlaser/~3/5QVXSN7AxRI/post.aspx</link>
      <author>Andreas Glaser</author>
      <comments>http://www.andreasglaser.net/post/2009/05/31/SharePoint-2007-resources-e28093-May-2009-WCMS-and-virtualization-(Hyper-V).aspx#comment</comments>
      <guid isPermaLink="false">http://www.andreasglaser.net/post.aspx?id=6ede0607-ecf5-47eb-888d-107a92aebf16</guid>
      <pubDate>Sun, 31 May 2009 11:15:02 +0200</pubDate>
      <category>SharePoint 2007</category>
      <dc:publisher>Andreas Glaser</dc:publisher>
      <pingback:server>http://www.andreasglaser.net/pingback.axd</pingback:server>
      <pingback:target>http://www.andreasglaser.net/post.aspx?id=6ede0607-ecf5-47eb-888d-107a92aebf16</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.andreasglaser.net/trackback.axd?id=6ede0607-ecf5-47eb-888d-107a92aebf16</trackback:ping>
      <wfw:comment>http://www.andreasglaser.net/post/2009/05/31/SharePoint-2007-resources-e28093-May-2009-WCMS-and-virtualization-(Hyper-V).aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andreasglaser.net/syndication.axd?post=6ede0607-ecf5-47eb-888d-107a92aebf16</wfw:commentRss>
    <feedburner:origLink>http://www.andreasglaser.net/post.aspx?id=6ede0607-ecf5-47eb-888d-107a92aebf16</feedburner:origLink></item>
    <item>
      <title>SharePoint 2007 SP2 – Known problems</title>
      <description>&lt;p&gt;There are some problems so far related to the &lt;strong&gt;SharePoint 2007 SP2&lt;/strong&gt;. The last update comes from the &lt;a title="Attention Important Information on Service Pack 2" href="http://blogs.msdn.com/sharepoint/archive/2009/05/21/attention-important-information-on-service-pack-2.aspx" target="_blank"&gt;Microsoft SharePoint Team Blog&lt;/a&gt;:&lt;/p&gt;  &lt;p&gt;“During the installation of SP2, a product expiration date is improperly activated. This means SharePoint will expire as though it was a trial installation 180 days after SP2 is deployed. The activation of the expiration date will not affect the normal function of SharePoint up until the expiration date passes. Furthermore, product expiration 180 days after SP2 installation will not affect customer’s data, configuration or application code but will render SharePoint inaccessible for end-users. &lt;/p&gt;  &lt;p&gt;We are working to release a hotfix to automatically fix this issue. A manual work-around is currently available and involves customers re-entering their Product ID number (PID) on the Convert License Type page in Central Administration.&amp;#160; For more information and detailed steps please read this &lt;a href="http://support.microsoft.com/kb/971620"&gt;KB article&lt;/a&gt;.”&lt;/p&gt;  &lt;h2&gt;Summary&lt;/h2&gt;  &lt;p&gt;There is a nice summary of know problems caused by SharePoint SP2 which is provided by &lt;a title="Wictor Wilén" href="http://www.wictorwilen.se/Post/SharePoint-Service-Pack-2-known-found-and-experienced-problems.aspx" target="_blank"&gt;Wictor Wilén&lt;/a&gt;.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;     &lt;p&gt;Important information on Service Pack 2 from the Microsoft SharePoint Team.&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;Nintex Workflow 2007 problem with Service Pack 2 &lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;Failure when running configuration wizard after applying SP2 (problem and solution)&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;Problem with SQL Server and AWE memory allocation&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;Some people says that it takes some time to start SharePoint after applying the update &lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;Me and some others had some problems when running the installer which was due to the fact that the download of the updates failed so the installation package was corrupt. I had to retry a few times to get all the bits &lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;SharePoint SP2 and SPDatabaseGbwSequence error is caused by free SharePoint templates&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;SharePoint Designer needs Service Pack 2 to connect to a SharePoint Service Pack 2 farm &lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;MSI error 1603 while installing MOSS Service Pack 2&lt;/p&gt;   &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Please visit his blog to get more detailed information.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AndreasGlaser/~4/0aoSGqkoiwo" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/AndreasGlaser/~3/0aoSGqkoiwo/post.aspx</link>
      <author>Andreas Glaser</author>
      <comments>http://www.andreasglaser.net/post/2009/05/25/SharePoint-2007-SP2-e28093-Known-problems.aspx#comment</comments>
      <guid isPermaLink="false">http://www.andreasglaser.net/post.aspx?id=6920c760-960c-45e9-ae1c-281c53fcdf94</guid>
      <pubDate>Mon, 25 May 2009 07:33:13 +0200</pubDate>
      <category>SharePoint 2007</category>
      <dc:publisher>Andreas Glaser</dc:publisher>
      <pingback:server>http://www.andreasglaser.net/pingback.axd</pingback:server>
      <pingback:target>http://www.andreasglaser.net/post.aspx?id=6920c760-960c-45e9-ae1c-281c53fcdf94</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.andreasglaser.net/trackback.axd?id=6920c760-960c-45e9-ae1c-281c53fcdf94</trackback:ping>
      <wfw:comment>http://www.andreasglaser.net/post/2009/05/25/SharePoint-2007-SP2-e28093-Known-problems.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andreasglaser.net/syndication.axd?post=6920c760-960c-45e9-ae1c-281c53fcdf94</wfw:commentRss>
    <feedburner:origLink>http://www.andreasglaser.net/post.aspx?id=6920c760-960c-45e9-ae1c-281c53fcdf94</feedburner:origLink></item>
    <item>
      <title>Virtual PC 2007 or Virtual Server 2005 to Hyper-V migration guide</title>
      <description>&lt;p&gt;I’m working with &lt;strong&gt;Hyper-V&lt;/strong&gt; since more than 1 year and now I’m migrating the developer images of my company from &lt;strong&gt;Virtual PC&lt;/strong&gt; or &lt;strong&gt;Virtual Server 2005&lt;/strong&gt; to Hyper-V. For me the process is straightforward since I have done it a lot of times last year but I thought this might be interesting for someone else.&lt;/p&gt;  &lt;p&gt;This guide doesn’t use any third party tools or the&lt;strong&gt; System Center Virtual Machine Manager&lt;/strong&gt; and it doesn’t include clustering. For a list of Hyper-V supported guest operating systems please read &lt;a title="About Virtual Machines and Guest Operating Systems" href="http://technet.microsoft.com/en-us/library/cc794868.aspx" target="_blank"&gt;About Virtual Machines and Guest Operating Systems&lt;/a&gt;. There are also a lot of information at TechNet:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;strong&gt;Hyper-V&lt;/strong&gt;       &lt;br /&gt;&lt;a title="http://technet.microsoft.com/en-us/library/cc753637(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/cc753637(WS.10).aspx"&gt;http://technet.microsoft.com/en-us/library/cc753637(WS.10).aspx&lt;/a&gt;       &lt;br /&gt;      &lt;br /&gt;&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Virtual Machine Migration Guide: How To Migrate from Virtual Server to Hyper-V        &lt;br /&gt;&lt;/strong&gt;&lt;a title="http://technet.microsoft.com/en-us/library/dd296684.aspx" href="http://technet.microsoft.com/en-us/library/dd296684.aspx"&gt;http://technet.microsoft.com/en-us/library/dd296684.aspx&lt;/a&gt;&amp;#160; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;If you are interested in Hyper-V networking with a&lt;strong&gt; Loopback Adapter&lt;/strong&gt; you might want to take a look at the following articles:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://andreasglaser.net/post/2008/08/01/Hyper-V-Virtual-Server-and-Loopback-Adapter.aspx"&gt;Hyper-V - Virtual Server and Loopback Adapter – Part1&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://andreasglaser.net/post/2008/08/01/Hyper-V-Virtual-Server-and-Loopback-Adapter-Part2.aspx"&gt;Hyper-V - Virtual Server and Loopback Adapter – Part2&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;In my case I had to migrate a virtual machine from Virtual PC 2007 SP1 to Hyper-V so you will see Virtual PC instead of Virtual Server 2005 in the screenshots.&lt;/p&gt;  &lt;h2&gt;Prepare the virtual machine &lt;/h2&gt;  &lt;p&gt;Before you can run the image with Hyper-V you need to prepare the virtual machine using Virtual PC or Virtual Server.&lt;/p&gt;  &lt;h3&gt;Document your virtual machine configuration&lt;/h3&gt;  &lt;p&gt;First of all you need to remember your &lt;strong&gt;virtual machine configuration&lt;/strong&gt; so you can recreate it later with Hyper-V. Without 3rd party tools you need to write it down or to make a screenshot.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andreasglaser.net/image.axd?picture=image_8.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Remember your virtual machine configuration so you can recreate it later with Hyper-V." border="0" alt="Remember your virtual machine configuration so you can recreate it later with Hyper-V." src="http://www.andreasglaser.net/image.axd?picture=image_thumb_8.png" width="260" height="190" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;As you can see in the picture I’m using 2 virtual network adapters: one for the communication between the images and one for getting access to resources outside your image (file share, internet). The communication between the images is faster using a local network adapter.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Important:&lt;/strong&gt; “You cannot use a SCSI disk to boot a virtual machine in Hyper-V. If the boot disk of your virtual machine is not IDE, you should change it before migration. You can use a script for changing virtual machine disk type to automate changing the disk controller configuration type from SCSI to IDE. The script is available at &lt;a href="http://go.microsoft.com/fwlink/?LinkId=135672"&gt;http://go.microsoft.com/fwlink/?LinkId=135672&lt;/a&gt;.” (from the &lt;strong&gt;Virtual Machine Migration Guide&lt;/strong&gt;)&lt;/p&gt;  &lt;h3&gt;Update your operating system with required updates and hotfixes&lt;/h3&gt;  &lt;p&gt;You need to update your image in order to meet Hyper-V guest operating system requirements. At the beginning of this guide you can find the requirements. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andreasglaser.net/image.axd?picture=image_9.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Installing Windows Server SP2." border="0" alt="Installing Windows Server SP2." src="http://www.andreasglaser.net/image.axd?picture=image_thumb_9.png" width="260" height="200" /&gt;&lt;/a&gt; &lt;a href="http://www.andreasglaser.net/image.axd?picture=image_10.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="You need to update your image in order to meet Hyper-V requirements." border="0" alt="You need to update your image in order to meet Hyper-V requirements." src="http://www.andreasglaser.net/image.axd?picture=image_thumb_10.png" width="260" height="191" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;In my case I needed to update Windows Server 2003 SP1 to SP2. Otherwise you can’t install the &lt;strong&gt;Hyper-V Integration Services&lt;/strong&gt;.&lt;/p&gt;  &lt;h3&gt;Uninstall the virtual machine additions&lt;/h3&gt;  &lt;p&gt;After installing all necessary updates you need to uninstall the &lt;strong&gt;Virtual Machine Additions&lt;/strong&gt;. In Windows Server 2003 you can do this using Control Panel – Add or remove programs.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andreasglaser.net/image.axd?picture=image_11.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="After installing all necessary updates you need to uninstall the Virtual Machine Additions. " border="0" alt="After installing all necessary updates you need to uninstall the Virtual Machine Additions. " src="http://www.andreasglaser.net/image.axd?picture=image_thumb_11.png" width="260" height="200" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;After uninstall I restart the image in order to be sure everything worked fine.&lt;/p&gt;  &lt;h3&gt;Remove network settings and shut down virtual machine &lt;/h3&gt;  &lt;p&gt;Before you shut down your image you need to remove the network settings. Since &lt;strong&gt;Hyper-V Integration Services&lt;/strong&gt; will install new &lt;strong&gt;network adapters&lt;/strong&gt; you will get an error message when you try to reuse static IP settings.&lt;/p&gt;  &lt;p&gt;After removing the network settings you need to shut down the image. Using a saved state will not work.&lt;/p&gt;  &lt;h2&gt;Create Hyper-V virtual machine &lt;/h2&gt;  &lt;p&gt;Now it’s time to get the image working with Hyper-V. &lt;/p&gt;  &lt;h3&gt;Create the virtual machine&lt;/h3&gt;  &lt;p&gt;At first I created the virtual machine using the Hyper-V wizard. Here you need the settings documented in the first step.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andreasglaser.net/image.axd?picture=image_12.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Creating a virtual machine configuration with the dopcumentes settings." border="0" alt="Creating a virtual machine configuration with the dopcumentes settings." src="http://www.andreasglaser.net/image.axd?picture=image_thumb_12.png" width="215" height="201" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;h3&gt;Install Hyper-V Integration Services&lt;/h3&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;When you connect to a Hyper-V image a &lt;strong&gt;console&lt;/strong&gt; will open where you can select Action – &lt;strong&gt;Insert Integration Services Setup Disc&lt;/strong&gt; from the menu (no need for searching the .iso file manually ;) ). This will automatically start the setup.exe inside the image. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andreasglaser.net/image.axd?picture=image_13.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Installing the Hyper-V Integration Services." border="0" alt="Installing the Hyper-V Integration Services." src="http://www.andreasglaser.net/image.axd?picture=image_thumb_13.png" width="230" height="201" /&gt;&lt;/a&gt;     &lt;br /&gt;At first a new &lt;strong&gt;HAL&lt;/strong&gt; will be installed and after rebooting the rest of the &lt;strong&gt;Integration Services&lt;/strong&gt; will be installed which needs a second reboot. Please be aware that you need an install disc of your operating system if you deleted all &lt;strong&gt;drivers&lt;/strong&gt; from your Windows folder. I did it when I created the image since it saved a lot of disc space and doing a copy of my image needed less time.&lt;/p&gt;  &lt;h3&gt;Recreating network settings&lt;/h3&gt;  &lt;p&gt;At the end you need to recreate the&lt;strong&gt; network settings&lt;/strong&gt; since the &lt;strong&gt;Hyper-V Integration Services&lt;/strong&gt; installed new network adapters. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andreasglaser.net/image.axd?picture=image_14.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Recreating the IP settings of the virtual network adapters." border="0" alt="Recreating the IP settings of the virtual network adapters." src="http://www.andreasglaser.net/image.axd?picture=image_thumb_14.png" width="236" height="201" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;If you didn’t remove &lt;strong&gt;static IP addresses&lt;/strong&gt; at the end of the preparation process you will get an error message saying that the IP address is already assigned to an other network adapter. You can chose no if you don’t want to assign a new IP address. Using the same address worked for me without errors so far.&lt;/p&gt;  &lt;h2&gt;Conclusion&lt;/h2&gt;  &lt;p&gt;When doing a migration from Virtual PC or Virtual Server 2005 to Hyper-V you need to take care of a few things. Although I don’t have a cluster I can imagine that this might not be straightforward like it is written in this post. &lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AndreasGlaser/~4/LxxTFs3eGSg" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/AndreasGlaser/~3/LxxTFs3eGSg/post.aspx</link>
      <author>Andreas Glaser</author>
      <comments>http://www.andreasglaser.net/post/2009/05/13/Virtual-PC-2007-or-Virtual-Server-2005-to-Hyper-V-migration-guide.aspx#comment</comments>
      <guid isPermaLink="false">http://www.andreasglaser.net/post.aspx?id=d416fee8-627e-4384-9d00-95d4a53a4dfa</guid>
      <pubDate>Wed, 13 May 2009 07:58:17 +0200</pubDate>
      <category>Virtualization</category>
      <dc:publisher>Andreas Glaser</dc:publisher>
      <pingback:server>http://www.andreasglaser.net/pingback.axd</pingback:server>
      <pingback:target>http://www.andreasglaser.net/post.aspx?id=d416fee8-627e-4384-9d00-95d4a53a4dfa</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.andreasglaser.net/trackback.axd?id=d416fee8-627e-4384-9d00-95d4a53a4dfa</trackback:ping>
      <wfw:comment>http://www.andreasglaser.net/post/2009/05/13/Virtual-PC-2007-or-Virtual-Server-2005-to-Hyper-V-migration-guide.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andreasglaser.net/syndication.axd?post=d416fee8-627e-4384-9d00-95d4a53a4dfa</wfw:commentRss>
    <feedburner:origLink>http://www.andreasglaser.net/post.aspx?id=d416fee8-627e-4384-9d00-95d4a53a4dfa</feedburner:origLink></item>
    <item>
      <title>SharePoint 2007 and HTTP Error 401.1 - Unauthorized: Access is denied due to invalid credentials.</title>
      <description>&lt;p&gt;Ok this was one of the weeks where I had some trouble with my environment… After a year without problems this week had some challenges for me.&amp;#160; &lt;/p&gt;  &lt;h2&gt;HTTP Error 401.1 - Unauthorized: Access is denied due to invalid credentials.&lt;/h2&gt;  &lt;p&gt;Here is the scenario: I have a development environment with &lt;strong&gt;Windows Server 2003 SP1&lt;/strong&gt; as a domain controller and &lt;strong&gt;Windows Server 2003 R2&lt;/strong&gt; as the &lt;strong&gt;SharePoint 2007 &lt;/strong&gt;server. After applying a lot of updates I wasn’t able to browse my SharePoint web:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&amp;quot;You are not authorized to view this page&amp;quot; &lt;/p&gt;    &lt;p&gt;“You do not have permission to view this directory or page using the credentials that you supplied.”&lt;/p&gt;    &lt;p&gt;“HTTP Error 401.1 - Unauthorized: Access is denied due to invalid credentials.”&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Soon I discovered that the reason was neither related to the &lt;strong&gt;SQL Server&lt;/strong&gt; nor to insufficient permissions within &lt;strong&gt;SharePoint&lt;/strong&gt;. After doing an IIS reset the SharePoint web immediately&amp;#160; prompted for an login without even starting the application pool.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andreasglaser.net/image.axd?picture=image_7.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="You are not authorized to view this page error message." border="0" alt="You are not authorized to view this page error message." src="http://www.andreasglaser.net/image.axd?picture=image_thumb_7.png" width="260" height="233" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;h2&gt;Solution &lt;/h2&gt;  &lt;p&gt;I remembered that I had tried to enable &lt;strong&gt;Kerberos&lt;/strong&gt; on the image which did not succeed. I also created SPNs in the active directory… So I just changed the &lt;strong&gt;IIS Authentication Settings&lt;/strong&gt; to Kerberos and it worked again.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andreasglaser.net/image.axd?picture=image4_1.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Solution was to enable kerberos in central administration for the web application." border="0" alt="Solution was to enable kerberos in central administration for the web application." src="http://www.andreasglaser.net/image.axd?picture=image4_thumb_1.png" width="227" height="238" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Ok enough challenges for the month… ;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AndreasGlaser/~4/J7ovxMVsIXk" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/AndreasGlaser/~3/J7ovxMVsIXk/post.aspx</link>
      <author>Andreas Glaser</author>
      <comments>http://www.andreasglaser.net/post/2009/05/10/SharePoint-2007-and-HTTP-Error-4011-Unauthorized-Access-is-denied-due-to-invalid-credentials.aspx#comment</comments>
      <guid isPermaLink="false">http://www.andreasglaser.net/post.aspx?id=d2831659-8d82-4478-be91-ced0c875c584</guid>
      <pubDate>Sun, 10 May 2009 15:33:33 +0200</pubDate>
      <category>SharePoint 2007</category>
      <dc:publisher>Andreas Glaser</dc:publisher>
      <pingback:server>http://www.andreasglaser.net/pingback.axd</pingback:server>
      <pingback:target>http://www.andreasglaser.net/post.aspx?id=d2831659-8d82-4478-be91-ced0c875c584</pingback:target>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://www.andreasglaser.net/trackback.axd?id=d2831659-8d82-4478-be91-ced0c875c584</trackback:ping>
      <wfw:comment>http://www.andreasglaser.net/post/2009/05/10/SharePoint-2007-and-HTTP-Error-4011-Unauthorized-Access-is-denied-due-to-invalid-credentials.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andreasglaser.net/syndication.axd?post=d2831659-8d82-4478-be91-ced0c875c584</wfw:commentRss>
    <feedburner:origLink>http://www.andreasglaser.net/post.aspx?id=d2831659-8d82-4478-be91-ced0c875c584</feedburner:origLink></item>
    <item>
      <title>SharePoint 2007 SP2: Failed to detect if this server is joined to a server farm and Failed to register SharePoint services error messages</title>
      <description>&lt;p&gt;Ok the last days I got some error messages while installing&lt;strong&gt; SharePoint 2007 SP2&lt;/strong&gt;. The error messages didn’t occur because of SP2… the problem was my development environment so it was easy to find a solution. &lt;/p&gt;  &lt;h2&gt;Failed to detect if this server is joined to a server farm. &lt;/h2&gt;  &lt;p&gt;The first error message was &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;“Failed to detect if this server is joined to a server farm.&amp;#160; Possible reasons for this failure could be that you no longer have the appropriate permissions to the server farm, the database server hosting the server farm is unresponsive, the configuration database is inaccessible or this server has been removed from the server farm.&amp;#160; To diagnose this problem further, review the extended error information located at {0}.&amp;#160; If this problem persists, choose to disconnect from the server farm.&amp;#160; After disconnecting, run the wizard again to create or connect to an existing server farm.” &lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;The problem was related to my SQL Server service which wasn’t running. So after restarting the service the installation of &lt;strong&gt;SharePoint 2007 SP2&lt;/strong&gt; was no problem.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andreasglaser.net/image.axd?picture=image_4.png" target="_blank"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.andreasglaser.net/image.axd?picture=image_thumb_4.png" width="260" height="225" /&gt;&lt;/a&gt;&amp;#160;&lt;a href="http://www.andreasglaser.net/image.axd?picture=image_5.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.andreasglaser.net/image.axd?picture=image_thumb_5.png" width="260" height="215" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;h2&gt;Failed to register SharePoint services. &lt;/h2&gt;  &lt;p&gt;After installation I was running the SharePoint Products and Technologies Configuration Wizard which stopped with the following error message:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;“Failed to register SharePoint services. An exception of type System.Security.SecurityException was thrown.&amp;#160; Additional exception information: Access denied. Completed configuration settings will not be rolled back.&amp;#160; Resolve the problem and run this configuration wizard again.&amp;#160; The following contains detailed information about the failure:”&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;It was a long time ago when I received this error message and I remembered to &lt;strong&gt;restart&lt;/strong&gt; the wizard which was successful the second time. &lt;/p&gt;  &lt;h2&gt;Conclusion&lt;/h2&gt;  &lt;p&gt;The problems may occur in scenarios where SP2 is not involved since they were related to my environment. ;) I hope this helps if you are having problems installing &lt;strong&gt;SharePoint 2007 SP2&lt;/strong&gt; or something else.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/AndreasGlaser/~4/i9wfJgCl03U" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/AndreasGlaser/~3/i9wfJgCl03U/post.aspx</link>
      <author>Andreas Glaser</author>
      <comments>http://www.andreasglaser.net/post/2009/05/06/SharePoint-2007-SP2-Failed-to-detect-if-this-server-is-joined-to-a-server-farm-and-Failed-to-register-SharePoint-services-error-messages.aspx#comment</comments>
      <guid isPermaLink="false">http://www.andreasglaser.net/post.aspx?id=59f4504f-0170-4c13-88f6-264b8567baf2</guid>
      <pubDate>Wed, 06 May 2009 12:33:59 +0200</pubDate>
      <category>SharePoint 2007</category>
      <dc:publisher>Andreas Glaser</dc:publisher>
      <pingback:server>http://www.andreasglaser.net/pingback.axd</pingback:server>
      <pingback:target>http://www.andreasglaser.net/post.aspx?id=59f4504f-0170-4c13-88f6-264b8567baf2</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.andreasglaser.net/trackback.axd?id=59f4504f-0170-4c13-88f6-264b8567baf2</trackback:ping>
      <wfw:comment>http://www.andreasglaser.net/post/2009/05/06/SharePoint-2007-SP2-Failed-to-detect-if-this-server-is-joined-to-a-server-farm-and-Failed-to-register-SharePoint-services-error-messages.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andreasglaser.net/syndication.axd?post=59f4504f-0170-4c13-88f6-264b8567baf2</wfw:commentRss>
    <feedburner:origLink>http://www.andreasglaser.net/post.aspx?id=59f4504f-0170-4c13-88f6-264b8567baf2</feedburner:origLink></item>
  </channel>
</rss>
