<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" 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:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>David Blomqvist</title>
        <link>http://geekswithblogs.net/blomqvist/Default.aspx</link>
        <description> </description>
        <language>en-US</language>
        <copyright>blomqvist</copyright>
        <managingEditor>david.blomqvist@osiris.no</managingEditor>
        <generator>Subtext Version 0.0.0.0</generator>
        <image>
            <title>David Blomqvist</title>
            <url>http://geekswithblogs.net/images/RSS2Image.gif</url>
            <link>http://geekswithblogs.net/blomqvist/Default.aspx</link>
            <width>77</width>
            <height>60</height>
        </image>
        <item>
            <title>The installer was interrupted before Application could be installed - Installation success or error status: 1603</title>
            <link>http://geekswithblogs.net/blomqvist/archive/2010/11/12/the-installer-was-interrupted-before-application-could-be-installed.aspx</link>
            <description>&lt;p&gt;I was trying to install a web app that another team member built. this failed with the message:    &lt;br /&gt;“&lt;em&gt;The installer was interrupted before &amp;lt;MyApp&amp;gt; could be installed. You need to restart the installer to try again&lt;/em&gt;.”&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/Windows-Live-Writer/The-installer-was-interrupted-before-App_F27B/image_2.png"&gt;&lt;img style="background-image: none; border-right-width: 0px; margin: ; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/Windows-Live-Writer/The-installer-was-interrupted-before-App_F27B/image_thumb.png" width="479" height="392" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Trying again is (obviously) meaningless, it will just fail over and over. And the error message is very general, something failed.    &lt;br /&gt;In the eventlog we can find this error:     &lt;br /&gt;&lt;em&gt;Installation success or error status: 1603&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;If we run the installer again but with verbose logging:    &lt;br /&gt;&lt;font face="Consolas"&gt;msiexec /i MyInstaller.msi /v setup.log&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;The we can find the same error but with some more stuff&lt;/p&gt;  &lt;p&gt;&lt;font size="2" face="Consolas"&gt;INFO   : [11/11/2010 17:19:32:674] [SetTARGETSITE]: Custom Action is starting...      &lt;br /&gt;INFO   : [11/11/2010 17:19:32:674] [SetTARGETSITE]: CoInitializeEx - COM initialization Apartment Threaded...       &lt;br /&gt;ERROR  : [11/11/2010 17:19:32:677] [SetTARGETSITE]: FAILED:    -2147221164       &lt;br /&gt;ERROR  : [11/11/2010 17:19:32:677] [SetTARGETSITE]: Custom Action failed with code: '340'       &lt;br /&gt;INFO   : [11/11/2010 17:19:32:678] [SetTARGETSITE]: Custom Action completed with return code: '340'       &lt;br /&gt;CustomAction WEBCA_SetTARGETSITE returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)       &lt;br /&gt;Action ended 17:19:32: WEBCA_SetTARGETSITE. Return value 3.       &lt;br /&gt;MSI (c) (EC:6C) [17:19:32:680]: Doing action: FatalErrorForm       &lt;br /&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;So what is this? &lt;/p&gt;  &lt;p&gt;It turns out that the installer cannot speak the the IIS7 properly. It needs some IIS6 compatibility in order to do that.    &lt;br /&gt;Go to: &lt;em&gt;Control Panel &amp;gt; Programs &amp;gt; Turn Windows features on or off      &lt;br /&gt;&lt;/em&gt;and then activate “&lt;em&gt;IIS Metabase and IIS 6 configuration compatibility&lt;/em&gt;”&lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/Windows-Live-Writer/The-installer-was-interrupted-before-App_F27B/MetabaseII6_4.png"&gt;&lt;img style="background-image: none; border-right-width: 0px; margin: ; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="MetabaseII6" border="0" alt="MetabaseII6" src="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/Windows-Live-Writer/The-installer-was-interrupted-before-App_F27B/MetabaseII6_thumb_1.png" width="655" height="326" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;And now the installer worked.&lt;/p&gt;  &lt;p&gt;My setup:    &lt;br /&gt;Windows 7, IIS 7, standard VS 2010 web setup project configured for .net 4, .net 4 installed and registered in the IIS.&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;Edited:&lt;/p&gt;  &lt;p&gt;If you are on a Server 2008 you will find the setting here:&lt;/p&gt;  &lt;p&gt;&lt;em&gt;Server Manager &amp;gt; Roles     &lt;br /&gt;&lt;/em&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/Windows-Live-Writer/The-installer-was-interrupted-before-App_F27B/image_4.png"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: ; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/Windows-Live-Writer/The-installer-was-interrupted-before-App_F27B/image_thumb_1.png" width="474" height="313" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;img src="http://geekswithblogs.net/blomqvist/aggbug/142691.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>blomqvist</dc:creator>
            <guid>http://geekswithblogs.net/blomqvist/archive/2010/11/12/the-installer-was-interrupted-before-application-could-be-installed.aspx</guid>
            <pubDate>Fri, 12 Nov 2010 22:44:00 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/blomqvist/comments/142691.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/blomqvist/archive/2010/11/12/the-installer-was-interrupted-before-application-could-be-installed.aspx#feedback</comments>
            <slash:comments>11</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/blomqvist/comments/commentRss/142691.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/blomqvist/services/trackbacks/142691.aspx</trackback:ping>
        </item>
        <item>
            <title>Integration with Office from Team Explorer stopped working&amp;ndash;and how to fix it!</title>
            <link>http://geekswithblogs.net/blomqvist/archive/2010/10/25/integration-with-office-from-team-explorer-stopped-workingndashand-how-to.aspx</link>
            <description>&lt;p&gt;Last week my office integration from Team Explorer stopped working. the Team menu in excel was gone and when I tried to open a WI-query from VS I got this error message:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/Windows-Live-Writer/Integration-with-Office-from-Team-Explor_9F87/clip_image002_2.jpg"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/Windows-Live-Writer/Integration-with-Office-from-Team-Explor_9F87/clip_image002_thumb.jpg" width="486" height="230" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;TF80012: The document cannot be opened because there is a problem with the installation of the Microsoft Visual Studio v10.0 Team foundation Office integration components. Please see the Team Foundation Installation Guide for more information.&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;First I tried to fix this by repairing the Team Explorer, this did not fix the problem. The I found a blog post suggesting that re-registration of the Office add-in might solve it. The command is:&lt;/p&gt;  &lt;p&gt;For 64-bit  windows:   &lt;br /&gt;&lt;font size="2" face="Consolas"&gt;Regsvr32 "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\TFSOfficeAdd-in.dll"     &lt;br /&gt;&lt;/font&gt;&lt;/p&gt; or it you have 32-bit windows:  &lt;br /&gt;&lt;font size="2" face="Consolas"&gt;Regsvr32 "C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\TFSOfficeAdd-in.dll"   &lt;br /&gt;&lt;/font&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;And this fixed the problem! The menu is back in Excel and i can open queries from VS into office applications.   &lt;br /&gt;My environment, for reference: Windows 7 x64, VS 2010, Office 2010 32-bit&lt;/p&gt; &lt;img src="http://geekswithblogs.net/blomqvist/aggbug/142434.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>blomqvist</dc:creator>
            <guid>http://geekswithblogs.net/blomqvist/archive/2010/10/25/integration-with-office-from-team-explorer-stopped-workingndashand-how-to.aspx</guid>
            <pubDate>Mon, 25 Oct 2010 21:31:00 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/blomqvist/comments/142434.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/blomqvist/archive/2010/10/25/integration-with-office-from-team-explorer-stopped-workingndashand-how-to.aspx#feedback</comments>
            <slash:comments>11</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/blomqvist/comments/commentRss/142434.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/blomqvist/services/trackbacks/142434.aspx</trackback:ping>
        </item>
        <item>
            <title>New Blank Solution in Visual Studio 2010</title>
            <link>http://geekswithblogs.net/blomqvist/archive/2010/04/19/new-blank-solution-in-visual-studio-2010.aspx</link>
            <description>&lt;p&gt;The option to create solutions from the file menu have not been available for several generations of Visual Studio now. But new for the 2010 version is that Visual Studio does not ask me where I want my new project and solution. It always put the in My Documents:&lt;/p&gt;  &lt;p&gt;&lt;em&gt;C:\Users\db\Documents\Visual Studio 2010\Projects&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/NewBlankSolutioninVisualStudio2010_C243/VisualStudio2010NewProject_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="VisualStudio2010NewProject" border="0" alt="VisualStudio2010NewProject" src="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/NewBlankSolutioninVisualStudio2010_C243/VisualStudio2010NewProject_thumb.png" width="959" height="664" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;If you want put your projects somewhere else, or just want a blank solution without a project. The You should open “Other Project Types/Visual Studio Solutions” where “Blank solution” is available. This is much nicer than the other way I have seen suggested other places: to create a project to get a solution and then delete the project from it.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/NewBlankSolutioninVisualStudio2010_C243/VisualStudio2010NewBlankSolution_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="VisualStudio2010NewBlankSolution" border="0" alt="VisualStudio2010NewBlankSolution" src="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/NewBlankSolutioninVisualStudio2010_C243/VisualStudio2010NewBlankSolution_thumb.png" width="959" height="664" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;img src="http://geekswithblogs.net/blomqvist/aggbug/139382.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>blomqvist</dc:creator>
            <guid>http://geekswithblogs.net/blomqvist/archive/2010/04/19/new-blank-solution-in-visual-studio-2010.aspx</guid>
            <pubDate>Tue, 20 Apr 2010 11:49:25 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/blomqvist/comments/139382.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/blomqvist/archive/2010/04/19/new-blank-solution-in-visual-studio-2010.aspx#feedback</comments>
            <slash:comments>5</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/blomqvist/comments/commentRss/139382.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/blomqvist/services/trackbacks/139382.aspx</trackback:ping>
        </item>
        <item>
            <title>Copy diagram with swimlanes in Enterprise Architect</title>
            <link>http://geekswithblogs.net/blomqvist/archive/2010/04/15/copy-diagram-with-swimlanes-in-enterprise-architect.aspx</link>
            <description>&lt;p&gt;This is a post mostly to myself, so that when I forget this I can come here and check it out :)   &lt;br /&gt;(I forget about ctrl-b from time to time)&lt;/p&gt;  &lt;p&gt;When copying diagrams from Enterprise Architect you can use ctrl-B to include the swim-lanes. A normal ctrl-c will not give you the swim-lanes. A side effect is that ctrl—b gives you a copy of the whole diagram, you cannot select what objects to copy. So marking objects first or pressing ctrl-A to selects all is both unnecessary and meaningless since ctrl-b seems to mean: “copy the whole diagram now and include all the stuff in there, even the swimlanes” (which ctrl-A, ctrl-C does not).&lt;/p&gt; &lt;img src="http://geekswithblogs.net/blomqvist/aggbug/139293.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>blomqvist</dc:creator>
            <guid>http://geekswithblogs.net/blomqvist/archive/2010/04/15/copy-diagram-with-swimlanes-in-enterprise-architect.aspx</guid>
            <pubDate>Fri, 16 Apr 2010 11:04:10 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/blomqvist/comments/139293.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/blomqvist/archive/2010/04/15/copy-diagram-with-swimlanes-in-enterprise-architect.aspx#feedback</comments>
            <slash:comments>3</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/blomqvist/comments/commentRss/139293.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/blomqvist/services/trackbacks/139293.aspx</trackback:ping>
        </item>
        <item>
            <title>VS2010 changes your ASP.NET Version on setup projects to 4 - regardless</title>
            <link>http://geekswithblogs.net/blomqvist/archive/2010/04/14/vs2010-changes-your-asp.net-version-on-setup-projects-to-4.aspx</link>
            <description>&lt;p&gt;When converting your projects to VS2010 you get the question to migrate them to .net4. But even if you do not do that VS set the ASP.NET version to 4 for setup projects.&lt;/p&gt;  &lt;p&gt;And then when you try to install your application on a machine that does not have .NET 4 installed you will get the error message:&lt;/p&gt;  &lt;p&gt;&lt;em&gt;“Could not open key: Software\Microsoft\ASP.NET\4.0.30128.0. Verify that you have sufficient access to that key, or contact your support personnel”&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/VS2.NETVersiononsetupprojectsto4regardle_C26C/image_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/VS2.NETVersiononsetupprojectsto4regardle_C26C/image_thumb.png" width="453" height="165" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;What you need to do is to change the ASP.NET version back to 2.0 if that is what you want to use.   &lt;br /&gt;You do that in the properties of the setup project.&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/VS2.NETVersiononsetupprojectsto4regardle_C26C/image_4.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/VS2.NETVersiononsetupprojectsto4regardle_C26C/image_thumb_1.png" width="407" height="438" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;img src="http://geekswithblogs.net/blomqvist/aggbug/139279.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>blomqvist</dc:creator>
            <guid>http://geekswithblogs.net/blomqvist/archive/2010/04/14/vs2010-changes-your-asp.net-version-on-setup-projects-to-4.aspx</guid>
            <pubDate>Thu, 15 Apr 2010 11:49:43 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/blomqvist/comments/139279.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/blomqvist/archive/2010/04/14/vs2010-changes-your-asp.net-version-on-setup-projects-to-4.aspx#feedback</comments>
            <slash:comments>7</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/blomqvist/comments/commentRss/139279.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/blomqvist/services/trackbacks/139279.aspx</trackback:ping>
        </item>
        <item>
            <title>EntSSO stopped working</title>
            <link>http://geekswithblogs.net/blomqvist/archive/2010/03/18/entsso-stopped-working.aspx</link>
            <description>&lt;p&gt;My EntSSO (Enterprise Single Sign-On Server, part of BizTalk) did not start today, with the message:&lt;/p&gt;  &lt;p&gt;The SSO service failed to start.   &lt;br /&gt; Error Code: 0x80131700&lt;/p&gt;  &lt;p&gt;Could not create SSOSQL. To fix the problem, reinstall SSO or try 'regasm SSOSQL.dll' from a Visual Studio command prompt.   &lt;br /&gt; Error Code: 0x80131700&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;The only reason for this that I can think of is that I have just installed the .net framework 4.0 RC but I have not verified this. The solution suggest in the error message works like a charm! &lt;/p&gt;  &lt;p&gt;Open a Visual Studio command prompt and run this command:   &lt;br /&gt;regasm  ‘C:\Program Files\Common Files\Enterprise Single Sign-On\SSOSQL.dll’&lt;/p&gt;  &lt;p&gt;Problem solved!&lt;/p&gt; &lt;img src="http://geekswithblogs.net/blomqvist/aggbug/138604.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>blomqvist</dc:creator>
            <guid>http://geekswithblogs.net/blomqvist/archive/2010/03/18/entsso-stopped-working.aspx</guid>
            <pubDate>Fri, 19 Mar 2010 09:20:07 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/blomqvist/comments/138604.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/blomqvist/archive/2010/03/18/entsso-stopped-working.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/blomqvist/comments/commentRss/138604.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/blomqvist/services/trackbacks/138604.aspx</trackback:ping>
        </item>
        <item>
            <title>Bluetooth drivers for Dell Latitude D830</title>
            <link>http://geekswithblogs.net/blomqvist/archive/2010/03/09/bluetooth-drivers-for-dell-latitude-d830.aspx</link>
            <description>&lt;p&gt;I haven’t been using Bluetooth on my D830 before but now I got myself a Bluetooth mouse in order to get rid of the receiver for a wireless mouse. And then I discovered that Bluetooth did not work anymore after I installed Win7. &lt;/p&gt;  &lt;p&gt;Browsing Dell support pages for a a driver found me one (browsing by computer model etc..). But that drivers does not work. Installation looks ok and everything but no devices are found. i kept looking and found this driver, also at Dells site:&lt;/p&gt;  &lt;p&gt;&lt;a title="http://support.us.dell.com/support/downloads/download.aspx?c=us&amp;amp;l=en&amp;amp;s=gen&amp;amp;releaseid=R231570&amp;amp;formatcnt=1&amp;amp;libid=0&amp;amp;typeid=-1&amp;amp;dateid=-1&amp;amp;formatid=-1&amp;amp;fileid=333170" href="http://support.us.dell.com/support/downloads/download.aspx?c=us&amp;amp;l=en&amp;amp;s=gen&amp;amp;releaseid=R231570&amp;amp;formatcnt=1&amp;amp;libid=0&amp;amp;typeid=-1&amp;amp;dateid=-1&amp;amp;formatid=-1&amp;amp;fileid=333170"&gt;http://support.us.dell.com/support/downloads/download.aspx?c=us&amp;amp;l=en&amp;amp;s=gen&amp;amp;releaseid=R231570&amp;amp;formatcnt=1&amp;amp;libid=0&amp;amp;typeid=-1&amp;amp;dateid=-1&amp;amp;formatid=-1&amp;amp;fileid=333170&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;And that one worked!  &lt;br /&gt;Problem solved an I am now happily using my Bluetooth mouse instead.&lt;/p&gt; &lt;img src="http://geekswithblogs.net/blomqvist/aggbug/138421.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>blomqvist</dc:creator>
            <guid>http://geekswithblogs.net/blomqvist/archive/2010/03/09/bluetooth-drivers-for-dell-latitude-d830.aspx</guid>
            <pubDate>Tue, 09 Mar 2010 21:24:37 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/blomqvist/comments/138421.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/blomqvist/archive/2010/03/09/bluetooth-drivers-for-dell-latitude-d830.aspx#feedback</comments>
            <slash:comments>10</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/blomqvist/comments/commentRss/138421.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/blomqvist/services/trackbacks/138421.aspx</trackback:ping>
        </item>
        <item>
            <title>You already have all those icons</title>
            <link>http://geekswithblogs.net/blomqvist/archive/2010/03/03/you-already-have-all-those-icons.aspx</link>
            <description>&lt;p&gt;Icons for that “little application” have always been a problem for me, finding something that looks ok. And now i discovered that I have been sitting right on top of a whole bunch of them all the time. They are on your machine already if you have Visual Studio installed!&lt;/p&gt;  &lt;p&gt;You find them here (&lt;em&gt;if you have system drive=C: and 64-bit windows&lt;/em&gt;):    &lt;br /&gt;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\VS2010ImageLibrary\1033&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;Read more about it here at MSDN: &lt;a title="http://msdn.microsoft.com/en-us/library/ms246582(VS.100).aspx" href="http://msdn.microsoft.com/en-us/library/ms246582(VS.100).aspx"&gt;http://msdn.microsoft.com/en-us/library/ms246582(VS.100).aspx&lt;/a&gt;&lt;/p&gt; &lt;img src="http://geekswithblogs.net/blomqvist/aggbug/138301.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>blomqvist</dc:creator>
            <guid>http://geekswithblogs.net/blomqvist/archive/2010/03/03/you-already-have-all-those-icons.aspx</guid>
            <pubDate>Wed, 03 Mar 2010 12:12:40 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/blomqvist/comments/138301.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/blomqvist/archive/2010/03/03/you-already-have-all-those-icons.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/blomqvist/comments/commentRss/138301.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/blomqvist/services/trackbacks/138301.aspx</trackback:ping>
        </item>
        <item>
            <title>Visual Studio 2010 RC Ultimate includes Team Explorer</title>
            <link>http://geekswithblogs.net/blomqvist/archive/2010/03/02/visual-studio-2010-rc-ultimate-includes-team-explorer.aspx</link>
            <description>&lt;p&gt;When the 2010 RC was released I installed it to replace the Beta2. An on top of that I installed the Team Explorer that was released at the same time. That is not the way to go! The Team Explorer is now already included in Visual Studio 2010 RC Ultimate and there is no need to install it separately as you had to do with earlier versions of Visual Studio. &lt;/p&gt;  &lt;p&gt;In fact you should NOT install it. The Team Explorer install makes Visual Studio behave strange when you do this. When I build setup applications (web applications in this case to be exact) Visual Studio displays a dialog telling you:&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;“Please wait while Windows configures Microsoft Visual Studio 2010 Shell (Integrated) – ENU…”&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/VisualStudio2010RCUltimateincludesTeamEx_86E3/VisualStudioErrorTE_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="VisualStudioErrorTE" border="0" alt="VisualStudioErrorTE" src="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/VisualStudio2010RCUltimateincludesTeamEx_86E3/VisualStudioErrorTE_thumb.png" width="412" height="164" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;  And it takes a long time to build the project. Like 10 minutes instead of 30 seconds. &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;The solution is to uninstall the Team Explorer.&lt;/strong&gt; &lt;/p&gt;  &lt;p&gt;This is the only issues that I have seen with this, it might be the only thing or there might be more, I do not know. But this behaviour is confirmed by MS and they will have it fixed in the RTM version. &lt;/p&gt; &lt;img src="http://geekswithblogs.net/blomqvist/aggbug/138295.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>blomqvist</dc:creator>
            <guid>http://geekswithblogs.net/blomqvist/archive/2010/03/02/visual-studio-2010-rc-ultimate-includes-team-explorer.aspx</guid>
            <pubDate>Wed, 03 Mar 2010 08:35:36 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/blomqvist/comments/138295.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/blomqvist/archive/2010/03/02/visual-studio-2010-rc-ultimate-includes-team-explorer.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/blomqvist/comments/commentRss/138295.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/blomqvist/services/trackbacks/138295.aspx</trackback:ping>
        </item>
        <item>
            <title>Windows 7 Sticky Notes</title>
            <link>http://geekswithblogs.net/blomqvist/archive/2010/03/01/windows-7-sticky-notes.aspx</link>
            <description>&lt;p&gt;One thing that I like about windows 7 is the sticky notes app. I have seen several discussions about the default font, mainly that people don’t like it. I don’t like it either and it is not possible to change the font in the Sticky Notes but you can solve the problem with a workaround. Sticky Notes accepts the formatting of the text when you paste it from another application. What I usually do is to keep one instance of wordpad open, type my text there and then paste it into a new note when I need one. Or just do this for the first note, then copy a piece of text from the one onto the new one. This will give you the formatting that you want.&lt;/p&gt;
&lt;p&gt;What do I use them for?&lt;/p&gt;
&lt;p&gt;I have replaced my “TODO” paper that I used to have, with a listing of what to do today. Just to keep track of what to do. For this purpose I find the electronic task system to complicated. Like Outlooks task, they are great for things that shall be performed before a task at or before a specific date. But it is to complicated for my simple list of “today's work”.&lt;/p&gt;
&lt;p&gt;So now I have my own little one day sprint planning board on my desktop. I just split the background image of windows into TODO, DOING, DONE and move around my sticky notes. Hopefully the TODO section is empty by the end of the day. And I just delete things when they are not needed anymore. But putting the notes i DONE serves to purposes. It gives a nice feeling of having accomplished some work during the day and it gives me a good picture of what I have done when it is time to do my time reporting.&lt;/p&gt;
&lt;p&gt;So my desktop looks like this:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/Windows7StickyNotes_81DB/image_4.png"&gt;&lt;img title="image" border="0" alt="image" width="644" height="401" style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" src="http://geekswithblogs.net/images/geekswithblogs_net/blomqvist/WindowsLiveWriter/Windows7StickyNotes_81DB/image_thumb_1.png" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;img src="http://geekswithblogs.net/blomqvist/aggbug/138270.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>blomqvist</dc:creator>
            <guid>http://geekswithblogs.net/blomqvist/archive/2010/03/01/windows-7-sticky-notes.aspx</guid>
            <pubDate>Tue, 02 Mar 2010 08:14:19 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/blomqvist/comments/138270.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/blomqvist/archive/2010/03/01/windows-7-sticky-notes.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/blomqvist/comments/commentRss/138270.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/blomqvist/services/trackbacks/138270.aspx</trackback:ping>
        </item>
    </channel>
</rss>
