<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Chris Armstrong - Info Worker Development</title>
	<atom:link href="http://homercles.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://homercles.wordpress.com</link>
	<description>MOSS,  Biztalk &#38; .Net</description>
	<lastBuildDate>Thu, 18 Aug 2011 01:27:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='homercles.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Chris Armstrong - Info Worker Development</title>
		<link>http://homercles.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://homercles.wordpress.com/osd.xml" title="Chris Armstrong - Info Worker Development" />
	<atom:link rel='hub' href='http://homercles.wordpress.com/?pushpress=hub'/>
		<item>
		<title>SharePoint 2010 Error TaxonomyPicker.ascx</title>
		<link>http://homercles.wordpress.com/2011/05/12/sharepoint-2010-error-taxonomypicker-ascx/</link>
		<comments>http://homercles.wordpress.com/2011/05/12/sharepoint-2010-error-taxonomypicker-ascx/#comments</comments>
		<pubDate>Thu, 12 May 2011 05:09:36 +0000</pubDate>
		<dc:creator>Chris Armstrong</dc:creator>
				<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Control]]></category>
		<category><![CDATA[Controls]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Environment]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[TaxonomyPicker]]></category>
		<category><![CDATA[TaxonomyPickerControl]]></category>
		<category><![CDATA[WebControls]]></category>

		<guid isPermaLink="false">https://homercles.wordpress.com/2011/05/12/sharepoint-2010-error-taxonomypicker-ascx/</guid>
		<description><![CDATA[I love having a Development Environment I can simply return to a known snapshotted point, but it seems so long between new set ups that you forget some of the gotcha’s that you fixed when you initially set it up. This is one of those really frustrating ones that seems to appear on a lot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=166&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I love having a Development Environment I can simply return to a known snapshotted point, but it seems so long between new set ups that you forget some of the gotcha’s that you fixed when you initially set it up. This is one of those really frustrating ones that seems to appear on a lot of servers in the wild and one I’d completely forgotten about until today when I had to fix it again.</p>
<p>I got the following critical error :-</p>
<p><font face="Courier New">Web Controls Critical 7043 Load control template file /_controltemplates/TaxonomyPicker.ascx failed: Could not load type &#8216;Microsoft.SharePoint.Portal.WebControls.TaxonomyPicker&#8217; from assembly &#8216;Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c&#8217;.</font></p>
<p>The fix for this is simple, open the <font face="Courier New">TaxonomyPicker.ascx</font> control which is in the hive under <font face="Courier New">ControlTemplates</font> (the full path is usually <font face="Courier New">C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\CONTROLTEMPLATES</font>) and take a look at the top of this file:-</p>
<p><font face="Courier New">&lt;%@ Control className=&quot;TaxonomyPickerControl&quot; Language=&quot;C#&quot; Inherits=&quot;Microsoft.SharePoint.Portal.WebControls.TaxonomyPicker<font>&#044;</font>Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c&quot; %&gt;</font></p>
<p>Highlighted in this snippet is the &#044; which is the html encoding for a comma (,), by adding an actual comma and a space after it this issue is fixed, so this line should look as below:-</p>
<p><font face="Courier New">&lt;%@ Control className=&quot;TaxonomyPickerControl&quot; Language=&quot;C#&quot; Inherits=&quot;Microsoft.SharePoint.Portal.WebControls.TaxonomyPicker<font>, </font>Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c&quot; %&gt;</font></p>
<p>Thats it fixed, the error is gone, if only all critical errors that appeared were that easy to fix.</p>
<br />Filed under: <a href='http://homercles.wordpress.com/category/developer-tools/'>Developer Tools</a>, <a href='http://homercles.wordpress.com/category/sharepoint-2/'>SharePoint</a> Tagged: <a href='http://homercles.wordpress.com/tag/control/'>Control</a>, <a href='http://homercles.wordpress.com/tag/controls/'>Controls</a>, <a href='http://homercles.wordpress.com/tag/development/'>Development</a>, <a href='http://homercles.wordpress.com/tag/environment/'>Environment</a>, <a href='http://homercles.wordpress.com/tag/error/'>Error</a>, <a href='http://homercles.wordpress.com/tag/fix/'>fix</a>, <a href='http://homercles.wordpress.com/tag/sharepoint/'>Sharepoint</a>, <a href='http://homercles.wordpress.com/tag/taxonomypicker/'>TaxonomyPicker</a>, <a href='http://homercles.wordpress.com/tag/taxonomypickercontrol/'>TaxonomyPickerControl</a>, <a href='http://homercles.wordpress.com/tag/webcontrols/'>WebControls</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/homercles.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/homercles.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/homercles.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/homercles.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/homercles.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/homercles.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/homercles.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/homercles.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/homercles.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/homercles.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/homercles.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/homercles.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/homercles.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/homercles.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=166&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-rating-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://homercles.wordpress.com/2011/05/12/sharepoint-2010-error-taxonomypicker-ascx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c4de7b82078b96b9292d1dcbff5599?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">Chris Armstrong</media:title>
		</media:content>
	</item>
		<item>
		<title>Booting Samsung N130 from USB Drive</title>
		<link>http://homercles.wordpress.com/2010/12/16/booting-samsung-n130-from-usb-drive/</link>
		<comments>http://homercles.wordpress.com/2010/12/16/booting-samsung-n130-from-usb-drive/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 02:41:33 +0000</pubDate>
		<dc:creator>Chris Armstrong</dc:creator>
				<category><![CDATA[Infrastructure]]></category>

		<guid isPermaLink="false">https://homercles.wordpress.com/2010/12/16/booting-samsung-n130-from-usb-drive/</guid>
		<description><![CDATA[With Christmas time around again I’ve been doing a bit of the freebie IT support for friends and family that we all seem to do. This time I got well and truly stumped trying to get Windows 7 installed from a USB flash drive on Samsung N130. I used WinToFlash to create the bootable drive [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=159&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With Christmas time around again I’ve been doing a bit of the freebie IT support for friends and family that we all seem to do. This time I got well and truly stumped trying to get Windows 7 installed from a USB flash drive on <a href="http://www.samsung.com/au/consumer/pc-peripherals/notebook-pc/mini-notebook/NP-N130-KA02AU/index.idx?pagetype=prd_detail">Samsung N130</a>. I used <a href="http://wintoflash.com/home/en/">WinToFlash</a> to create the bootable drive as I’ve previously blogged about <a href="http://homercles.wordpress.com/2009/12/02/creating-win-7-server-2008-bootable-usb-flash-drive-part-2/">here</a>.</p>
<p>I couldn’t work out how to get this PC to boot off USB drive, tried selecting the drive with the boot menu and changing the boot device to the USB drive, with no luck. I stumbled upon this post <a href="http://deanezra.com/2010/11/mac-osx-snow-leopard-hackintosh-on-samsung-n130/">here</a>, where I found my solution. All I had to do was to change the boot order to make all the USB devices appear at the top of the boot order in the BIOS making the hard drive the last device and it worked a treat. Seems pretty odd you need to this, my thoughts would be this is a bug in the bios.</p>
<p>Anyway Netbook is now running a treat with Windows 7, only had to install the Wireless Driver.</p>
<br />Filed under: <a href='http://homercles.wordpress.com/category/infrastructure/'>Infrastructure</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/homercles.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/homercles.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/homercles.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/homercles.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/homercles.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/homercles.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/homercles.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/homercles.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/homercles.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/homercles.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/homercles.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/homercles.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/homercles.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/homercles.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=159&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-rating-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://homercles.wordpress.com/2010/12/16/booting-samsung-n130-from-usb-drive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c4de7b82078b96b9292d1dcbff5599?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">Chris Armstrong</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Live Writer Beta&#8211; Post Draft to Blog</title>
		<link>http://homercles.wordpress.com/2010/06/25/windows-live-writer-beta-post-draft-to-blog/</link>
		<comments>http://homercles.wordpress.com/2010/06/25/windows-live-writer-beta-post-draft-to-blog/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 12:29:04 +0000</pubDate>
		<dc:creator>Chris Armstrong</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://homercles.wordpress.com/2010/06/25/windows-live-writer-beta-post-draft-to-blog/</guid>
		<description><![CDATA[After hearing all the buzz this afternoon on the new Beta of Windows Live Essentials release, I decided to upgrade. The main thing that has changed you will notice straight away is the new ribbon interface in it. I really like the ribbon interface, it’s actually difficult to go backwards when I’m forced to use [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=154&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After hearing all the buzz this afternoon on the new <a href="http://explore.live.com/windows-live-essentials-beta" target="_blank">Beta of Windows Live Essentials release</a>, I decided to upgrade. The main thing that has changed you will notice straight away is the new ribbon interface in it. I really like the ribbon interface, it’s actually difficult to go backwards when I’m forced to use old versions of Office when on client sites.</p>
<p><a href="http://homercles.files.wordpress.com/2010/06/image.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;margin:0 0 0 10px;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://homercles.files.wordpress.com/2010/06/image_thumb.png?w=1194&#038;h=103" width="1194" height="103" /></a></p>
<p>The one thing that I couldn’t find in this interface was the two features I use the most, “Post Draft to Blog” and “Post Draft and Edit Online”. I use these a lot as I blog from multiple PC’s so it’s fairly normal for me to start on one PC and continue on another. Although missing from the ribbons, when you look a bit deeper these features are still there. You can find these options by selecting the “Quick Access Toolbar” in the top left corner (where file used to live), then selecting “Save”.</p>
<p><a href="http://homercles.files.wordpress.com/2010/06/image1.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;margin:0 0 0 10px;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://homercles.files.wordpress.com/2010/06/image_thumb1.png?w=588&#038;h=423" width="588" height="423" /></a></p>
<p>Since I use these options all the time, by right clicking on the item you can add them to the Quick Access Toolbar so they displayed across the top.</p>
<p>&#160;</p>
<p><a href="http://homercles.files.wordpress.com/2010/06/image2.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;margin:0 0 0 10px;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://homercles.files.wordpress.com/2010/06/image_thumb2.png?w=589&#038;h=158" width="589" height="158" /></a></p>
<p><a href="http://homercles.files.wordpress.com/2010/06/image3.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;margin:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://homercles.files.wordpress.com/2010/06/image_thumb3.png?w=239&#038;h=202" width="239" height="202" /></a></p>
<br />Filed under: <a href='http://homercles.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/homercles.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/homercles.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/homercles.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/homercles.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/homercles.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/homercles.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/homercles.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/homercles.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/homercles.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/homercles.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/homercles.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/homercles.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/homercles.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/homercles.wordpress.com/154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=154&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-rating-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://homercles.wordpress.com/2010/06/25/windows-live-writer-beta-post-draft-to-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c4de7b82078b96b9292d1dcbff5599?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">Chris Armstrong</media:title>
		</media:content>

		<media:content url="http://homercles.files.wordpress.com/2010/06/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://homercles.files.wordpress.com/2010/06/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://homercles.files.wordpress.com/2010/06/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://homercles.files.wordpress.com/2010/06/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Office 2010 RTM 32bit vs 64bit Versions</title>
		<link>http://homercles.wordpress.com/2010/04/30/office-2010-rtm-32bit-vs-64bit-versions/</link>
		<comments>http://homercles.wordpress.com/2010/04/30/office-2010-rtm-32bit-vs-64bit-versions/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 23:47:11 +0000</pubDate>
		<dc:creator>Chris Armstrong</dc:creator>
				<category><![CDATA[MOSS]]></category>

		<guid isPermaLink="false">https://homercles.wordpress.com/2010/04/30/office-2010-rtm-32bit-vs-64bit-versions/</guid>
		<description><![CDATA[As we’re all aware of by now Office 2010 has been released to manufacturing which has it and SharePoint 2010 becoming available to MSDN &#38; TechNet Subscribers. On first impressions this version has been pretty good, I’ve been running the beta client pieces for the last 6+ months. It seems there’s a little confusion that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=138&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As we’re all aware of by now <a href="http://www.microsoft.com/office/2010/en/default.aspx" target="_blank">Office 2010</a> has been released to manufacturing which has it and <a href="http://sharepoint2007.microsoft.com/Pages/Default.aspx" target="_blank">SharePoint 2010</a> becoming available to MSDN &amp; TechNet Subscribers. On first impressions this version has been pretty good, I’ve been running the beta client pieces for the last 6+ months. It seems there’s a little confusion that has slipped in with this release though as for the first time we have both 32 and 64 bit versions of this release. If you’re like me and running 64bit OS (Win 7 in my case), because you need more than 4Gb of RAM. </p>
<p>A trap that I found out from <a href="http://blogs.msdn.com/bewalter/" target="_blank">Ben Walters</a> presentation at this months <a href="http://www.sharepointusers.org.au/MOSSIG/default.aspx" target="_blank">MOSSIG</a> meeting was that Microsoft’s recommendation is to use the 32 bit version of <a href="http://www.microsoft.com/office/2010/en/default.aspx" target="_blank">Office 2010</a> even on a 64 bit Operating System, unless the user needs to manipulate large files, which I’m guessing is over 4Gb given that’s the 32 bit memory limit. Another interesting point for this was also that the plug-ins are going to be harder to get in 64 bit which probably a fair point. This little gotcha isn’t very well publicised but I found this line of text “<em>In enterprise environments, the default is to install Office 2010 32-bit on computers that run either 32-bit or 64-bit editions of Windows operating systems. We recommend this option.</em>” which I found within this TechNet <a href="http://technet.microsoft.com/en-us/library/ee681792(office.14).aspx" target="_blank">article</a>.</p>
<p>Anyway time to uninstall 64 bit and go back to 32 bit.</p>
<br />Filed under: <a href='http://homercles.wordpress.com/category/moss/'>MOSS</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/homercles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/homercles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/homercles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/homercles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/homercles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/homercles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/homercles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/homercles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/homercles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/homercles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/homercles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/homercles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/homercles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/homercles.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=138&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-rating-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://homercles.wordpress.com/2010/04/30/office-2010-rtm-32bit-vs-64bit-versions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c4de7b82078b96b9292d1dcbff5599?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">Chris Armstrong</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuring SQL Report Server 2008 SP1</title>
		<link>http://homercles.wordpress.com/2009/12/28/configuring-sql-report-server-2008-sp1/</link>
		<comments>http://homercles.wordpress.com/2009/12/28/configuring-sql-report-server-2008-sp1/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 04:40:23 +0000</pubDate>
		<dc:creator>Chris Armstrong</dc:creator>
				<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://homercles.wordpress.com/2009/12/28/configuring-sql-report-server-2008-sp1/</guid>
		<description><![CDATA[Configuring SQL Report Server 2008 SP1<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=134&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When configuring a SQL 2008 SP1 reporting server I got this error, “<font face="Courier New">The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel</font>”&#160; when I trying to view the <a href="http://servername/Reports">http://servername/Reports</a> url. This appeared a bit odd as I wasn’t trying to connect via SSL to the site.</p>
<p>&#160;</p>
<p><a href="http://homercles.files.wordpress.com/2009/12/image.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://homercles.files.wordpress.com/2009/12/image_thumb.png?w=644&#038;h=118" width="644" height="118" /></a> </p>
<p>Luckily the fix here was an easy one, I simply had to alter the “<font face="Courier New">rsreportserver.config</font>” file and make the following change.</p>
<p><strong>From:</strong></p>
<pre class="csharpcode">&#160;</pre>
<div id="codeSnippetWrapper">
<div id="codeSnippet" class="csharpcode">
<pre class="alt"><span class="kwrd">&lt;</span><span class="html">Add</span> <span class="attr">Key</span><span class="kwrd">=&quot;SecureConnectionLevel&quot;</span> <span class="attr">Value</span><span class="kwrd">=&quot;2&quot;</span><span class="kwrd">/&gt;</span></pre>
<p><!--CRLF--></div>
</div>
<p><strong>To:</strong></p>
<pre class="csharpcode">&#160;</pre>
<div id="codeSnippetWrapper">
<div id="codeSnippet" class="csharpcode">
<pre class="alt"><span class="kwrd">&lt;</span><span class="html">Add</span> <span class="attr">Key</span><span class="kwrd">=&quot;SecureConnectionLevel&quot;</span> <span class="attr">Value</span><span class="kwrd">=&quot;0&quot;</span><span class="kwrd">/&gt;</span></pre>
<p><!--CRLF--></div>
</div>
<p>Which resolved the issue and displayed the page.</p>
<p><a href="http://homercles.files.wordpress.com/2009/12/image1.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://homercles.files.wordpress.com/2009/12/image_thumb1.png?w=644&#038;h=136" width="644" height="136" /></a> </p>
<p>&#160;</p>
<p>There is more detail on this <a href="http://msdn.microsoft.com/en-us/library/aa179359(SQL.80).aspx" target="_blank">here</a>. This basically means that this will need to be revisited again when it comes time to enable reporting services out to the web via an SSL.</p>
<br />Posted in Developer Tools, SQL Server  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/homercles.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/homercles.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/homercles.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/homercles.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/homercles.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/homercles.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/homercles.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/homercles.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/homercles.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/homercles.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/homercles.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/homercles.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/homercles.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/homercles.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=134&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-rating-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://homercles.wordpress.com/2009/12/28/configuring-sql-report-server-2008-sp1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c4de7b82078b96b9292d1dcbff5599?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">Chris Armstrong</media:title>
		</media:content>

		<media:content url="http://homercles.files.wordpress.com/2009/12/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://homercles.files.wordpress.com/2009/12/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating Win 7 &amp; Server 2008 bootable USB Flash Drive Part 2</title>
		<link>http://homercles.wordpress.com/2009/12/02/creating-win-7-server-2008-bootable-usb-flash-drive-part-2/</link>
		<comments>http://homercles.wordpress.com/2009/12/02/creating-win-7-server-2008-bootable-usb-flash-drive-part-2/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 21:48:22 +0000</pubDate>
		<dc:creator>Chris Armstrong</dc:creator>
				<category><![CDATA[Infrastructure]]></category>

		<guid isPermaLink="false">http://homercles.wordpress.com/2009/12/02/creating-win-7-server-2008-bootable-usb-flash-drive-part-2/</guid>
		<description><![CDATA[A while ago I blogged about installing windows from a USB Flash Drive. Since then I found an awesome tool called WinToFlash which is a point and shoot tool which will automatically create a Bootable USB Flash installation source. Try it out, it’s pretty simple and not only makes bootable copies of the install media, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=129&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A while ago I blogged about <a href="http://homercles.wordpress.com/2009/08/13/creating-a-windows-7-rtm-bootable-usb-key/">installing windows from a USB Flash Drive</a>. Since then I found an awesome tool called <a href="http://wintoflash.com/home/en/">WinToFlash</a> which is a point and shoot tool which will automatically create a Bootable USB Flash installation source. Try it out, it’s pretty simple and not only makes bootable copies of the install media, but also does some other cool stuff you can read about <a href="http://wintoflash.com/overview/en/">here</a>.</p>
<br />Posted in Infrastructure  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/homercles.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/homercles.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/homercles.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/homercles.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/homercles.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/homercles.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/homercles.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/homercles.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/homercles.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/homercles.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/homercles.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/homercles.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/homercles.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/homercles.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=129&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-rating-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://homercles.wordpress.com/2009/12/02/creating-win-7-server-2008-bootable-usb-flash-drive-part-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c4de7b82078b96b9292d1dcbff5599?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">Chris Armstrong</media:title>
		</media:content>
	</item>
		<item>
		<title>Slipstreaming SQL 2008 Sp1</title>
		<link>http://homercles.wordpress.com/2009/08/13/slipstreaming-sql-2008-sp1/</link>
		<comments>http://homercles.wordpress.com/2009/08/13/slipstreaming-sql-2008-sp1/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 11:14:03 +0000</pubDate>
		<dc:creator>Chris Armstrong</dc:creator>
				<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://homercles.wordpress.com/2009/08/13/slipstreaming-sql-2008-sp1/</guid>
		<description><![CDATA[Slipstreaming SQL 2008 Sp1 to install on Windows 7, Vista Sp2 and XP Sp3.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=124&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you try installing <a href="http://www.microsoft.com/sqlserver/" target="_blank">SQL 2008 RTM</a> on either Windows 7, Vista Sp2 or XP Sp3 you will find that install fails. There is a really easy fix for this by simply slipstreaming Sp1 with the RTM image by following these instructions <a href="http://blogs.msdn.com/petersad/archive/2009/02/25/sql-server-2008-creating-a-merged-slisptream-drop.aspx" target="_blank">here</a>.</p>
<p>In terms of the actual problem I’m not sure of what the exact cause is here although I suspect it’s related to <a href="http://sqlblog.com/blogs/aaron_bertrand/archive/2009/02/20/the-xp-sp3-msxml6-sp2-sql-server-debacle.aspx" target="_blank">this issue</a> with MSXML.</p>
<br />Posted in Developer Tools, Infrastructure, SQL Server  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/homercles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/homercles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/homercles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/homercles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/homercles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/homercles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/homercles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/homercles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/homercles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/homercles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/homercles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/homercles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/homercles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/homercles.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=124&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-rating-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://homercles.wordpress.com/2009/08/13/slipstreaming-sql-2008-sp1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c4de7b82078b96b9292d1dcbff5599?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">Chris Armstrong</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating a Windows 7 RTM bootable USB Key</title>
		<link>http://homercles.wordpress.com/2009/08/13/creating-a-windows-7-rtm-bootable-usb-key/</link>
		<comments>http://homercles.wordpress.com/2009/08/13/creating-a-windows-7-rtm-bootable-usb-key/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 10:28:00 +0000</pubDate>
		<dc:creator>Chris Armstrong</dc:creator>
				<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[Bootable USB]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://homercles.wordpress.com/?p=121</guid>
		<description><![CDATA[*** UPDATED&#160; 17th August 2009&#160; *** For some reason the copy and paste of this last point of this post didn’t come through, thanks Jason for picking this, anyway it’s all updated now. With the release over the weekend of the RTM of Windows 7 I’ve been doing a wholesale upgrade of all of our [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=121&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>*** UPDATED&#160; 17th August 2009&#160; ***</strong></p>
<p>For some reason the copy and paste of this last point of this post didn’t come through, thanks Jason for picking this, anyway it’s all updated now.</p>
<p>With the release over the weekend of the RTM of Windows 7 I’ve been doing a wholesale upgrade of all of our PC’s. On my laptop this was easy as I have a DVD drive, but we also have a couple of Netbook / Ultra Mobile PC’s a <a href="http://www.fujitsu.com/au/services/technology/pc/notebooks/useries/u1010/" target="_blank">Fujitsu U1010 Tablet</a> and an <a href="http://www.asus.com.au/products.aspx?l1=24&amp;l2=164" target="_blank">Asus EEEPC</a>. What you&#160; need to do this is a USB drive that is 4Gb or greater. Another thing to also note is that some of these USB drives come with a special partition installed by the manufacturer which will not allow the Win 7 partition to boot. In my case I used a <a href="http://www.sandisk.com/products/usb-flash-drives/sandisk-cruzer-usb-flash-drive-(new-design!).aspx" target="_blank">San Disk 8Gb Cruzer</a> which come out of the box with a <a href="http://u3.sandisk.com/" target="_blank">U3 partition</a> on it. I think this same process can be used for Vista installations but I haven’t tested this.</p>
<h2>Remove U3 Partition</h2>
<p>To remove the U3 Partition you simply have to download this <a href="http://u3uninstall.s3.amazonaws.com/U3Uninstall.exe" target="_blank">utility</a>, and run it as an Administrator. If you’d like to reinstall the U3 tools after you’ve finished you can download this <a href="http://lpinstalleru3.s3.amazonaws.com/LPInstaller.exe" target="_blank">utility</a> to restore the partition to your flash drive.</p>
<h2>Formatting the Flash Drive</h2>
<ol>
<li>Plug in the flash drive and let windows detect it. </li>
<li>Open a “<font face="Consolas">Command Prompt</font>” as “<font face="Consolas">Administrator</font>” Right Click on the Command prompt and select “<font face="Consolas">Run As Administrator</font>”, now type the following commands into this window. </li>
<li>Type “<font face="Consolas">diskpart</font>” </li>
<li>Next we need to find the drive number of the usb disk for the next step by entering “<font face="Consolas">list disk</font>”. Each disk will be listed with a number next to it, in my case this was disk 1. </li>
<li>The next step is to format the drive, simply substitute your disk number where I use 1. At this point it’s probably time for a coffee as this will take a few minutes. </li>
</ol>
<blockquote><pre class="csharpcode"><strong>select disk 1
clean
create partition primary
select partition 1
active
format fs=NTFS
assign
exit</strong></pre>
</blockquote>
<h2>Making the drive bootable</h2>
<ol>
<li>Insert the Windows 7 DVD or mount the iso. </li>
<li>In the same Command Prompt that was open before change the directory to DVD’s boot directory (“<font face="Consolas">\boot</font>”) which is “<font face="Consolas">bootsect.exe</font>” is located, this is the tool that will be used for the step of this process. </li>
<li>Run following command, assuming the “<font face="Consolas">F:</font>” is the usb drive. “<font face="Consolas">bootsect /nt60 f:</font>” </li>
</ol>
<h2></h2>
<h2></h2>
<h2>Copy the Contents of DVD to the Flash Drive</h2>
<ol>
<li>Select all files on the Windows DVD and copy them over to the USB Key. The easiest way to do this is to use Windows Explorer.</li>
</ol>
<p>Once you’ve done all the steps above your ready to go. Simply change the bios to boot off the usb device and the Windows 7 install should be ready to roll.</p>
<br />Posted in Infrastructure Tagged: Bootable USB, Windows 7 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/homercles.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/homercles.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/homercles.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/homercles.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/homercles.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/homercles.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/homercles.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/homercles.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/homercles.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/homercles.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/homercles.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/homercles.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/homercles.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/homercles.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=121&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-rating-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://homercles.wordpress.com/2009/08/13/creating-a-windows-7-rtm-bootable-usb-key/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c4de7b82078b96b9292d1dcbff5599?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">Chris Armstrong</media:title>
		</media:content>
	</item>
		<item>
		<title>Top Link Navigation in WSS</title>
		<link>http://homercles.wordpress.com/2009/05/28/top-link-navigation-in-wss/</link>
		<comments>http://homercles.wordpress.com/2009/05/28/top-link-navigation-in-wss/#comments</comments>
		<pubDate>Thu, 28 May 2009 06:40:18 +0000</pubDate>
		<dc:creator>Chris Armstrong</dc:creator>
				<category><![CDATA[WSS]]></category>
		<category><![CDATA[Navigation]]></category>

		<guid isPermaLink="false">http://homercles.wordpress.com/?p=115</guid>
		<description><![CDATA[We had an issue where we had developed a internet facing site in WSS for a client with a heavily modified navigation. As everyone probably does, we simply copy and pasted the url from the browser straight into the WSS Navigation, we found we had an strange problem, the highlighting on the top navigation of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=115&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We had an issue where we had developed a internet facing site in WSS for a client with a heavily modified navigation. As everyone probably does, we simply copy and pasted the url from the browser straight into the WSS Navigation, we found we had an strange problem, the highlighting on the top navigation of the WSS wasn’t highlighting correctly. Here are the&#160; lessons learned from this:-</p>
<ul>
<li>“<strong>DO</strong> <strong>NOT”</strong> to use either full path’s ie “http://mysite/page.aspx” but to instead use a relative path ie “/page.aspx”. </li>
<li><strong>“DO</strong> <strong>NOT” ‘</strong>%20’ for spaces, just leave spaces ie “/My%20Home%20Page.aspx” should be entered as “My Home Page.aspx”. </li>
</ul>
<br />Posted in WSS Tagged: Navigation, WSS <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/homercles.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/homercles.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/homercles.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/homercles.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/homercles.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/homercles.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/homercles.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/homercles.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/homercles.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/homercles.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/homercles.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/homercles.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/homercles.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/homercles.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=115&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-rating-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://homercles.wordpress.com/2009/05/28/top-link-navigation-in-wss/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c4de7b82078b96b9292d1dcbff5599?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">Chris Armstrong</media:title>
		</media:content>
	</item>
		<item>
		<title>Disabling the Office Live Persistent Pop Up</title>
		<link>http://homercles.wordpress.com/2009/04/23/disabling-the-office-live-persistent-pop-up/</link>
		<comments>http://homercles.wordpress.com/2009/04/23/disabling-the-office-live-persistent-pop-up/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 06:39:20 +0000</pubDate>
		<dc:creator>Chris Armstrong</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://homercles.wordpress.com/2009/04/23/disabling-the-office-live-persistent-pop-up/</guid>
		<description><![CDATA[Disabling the Office Live Persistent Pop Up<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=113&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ever since I decided to install the Office Live add on, each time I’ve opened Word, Excel etc I’m constantly prompted by this window.</p>
<p><a href="http://wintivity.wigital.net/wp-content/uploads/2009/03/get_started_with_office_live.jpg"><img title="get_started_with_office_live" alt="Get Started With Office Live" src="http://wintivity.wigital.net/wp-content/uploads/2009/03/get_started_with_office_live-300x172.jpg" width="300" height="172" /></a></p>
<p>Today I found a solution to this <a href="http://wintivity.wigital.net/troubleshooting/error-get-started-with-office-live-pop-up-is-persistant-and-continues-to-show-message" target="_blank">here</a>. The solution is to add the following registry key, “<font face="Courier">HKEY_CURRENT_USER\Software\Microsoft\OfficeLive</font>” then Office Live will be able to create the necessary DWORD to make sure it isn’t displayed again.</p>
<p>A more detailed description of the problem can be found <a href="http://wintivity.wigital.net/troubleshooting/error-get-started-with-office-live-pop-up-is-persistant-and-continues-to-show-message" target="_blank">here</a>.</p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/homercles.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/homercles.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/homercles.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/homercles.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/homercles.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/homercles.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/homercles.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/homercles.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/homercles.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/homercles.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/homercles.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/homercles.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/homercles.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/homercles.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=homercles.wordpress.com&amp;blog=1925409&amp;post=113&amp;subd=homercles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-rating-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://homercles.wordpress.com/2009/04/23/disabling-the-office-live-persistent-pop-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c4de7b82078b96b9292d1dcbff5599?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">Chris Armstrong</media:title>
		</media:content>

		<media:content url="http://wintivity.wigital.net/wp-content/uploads/2009/03/get_started_with_office_live-300x172.jpg" medium="image">
			<media:title type="html">get_started_with_office_live</media:title>
		</media:content>
	</item>
	</channel>
</rss>
