Archive for May, 2010

Updating to the Release Version of Outlook 2010 from the Beta Removes RSS Feeds

Wednesday, May 12th, 2010

Looks like there is a problem during the installation of the release version of Outlook 2010 in that the RSS feeds are not preserved (it appears it keeps the last added feed). Prior to uninstalling the beta version of Outlook 2010, make sure to export the RSS feeds as an OPML file. Then, after the installation is complete, import the OPML file to restore the RSS feeds.

To export the RSS Feeds, click on the File tab in the Ribbon and click on Open on the left pane. Select “Import” to start the Import and Export Wizard. From there, select Export RSS Feeds to an OPML file and continue as directed. Use the same process to Import the RSS Feeds from an OPML file.

If you are in the same boat as I, try restoring a previous version of the RSS Feeds file. On my Windows 7 box, it exists in:

%USERPROFILE%\AppData\Local\Microsoft\Outlook

My file ends with .sharing.xml.obi and it was about 3k.

First, close all running instances of Outlook.

Navigating to that directory, right click on the file and select Restore previous versions. Select the most recent version prior to the date of the installation.

Next, make sure to copy that file as it will be rewritten by Outlook when it is run again.

I am unable to determine how to get Outlook to recognize this file so the .obi file needs to be converted to an OPML file that can be imported into Outlook. This is simply achieved through an XSL transformation. By applying the following XSL on the .sharing.xml.obi file, an OPML file is created that can be used to import the RSS feeds into Outlook.

Prior to importing the RSS feeds, delete the folders, otherwise duplicate folders will appear under RSS Feeds.

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
  <xsl:template match="/">
    <opml version="1.0">
      <head>
        <title>OPML exported from Outlook</title>
        <dateCreated>Wed, 12 May 2010 16:00:00 -0400</dateCreated>
        <dateModified>Wed, 12 May 2010 16:00:00 -0400</dateModified>
      </head>
      <body>
        <xsl:for-each select="sharing/bindings/binding">
          <xsl:element name="outline">
            <xsl:attribute name="text"><xsl:value-of select="local/@name"/></xsl:attribute>
            <xsl:attribute name="type">rss</xsl:attribute>
            <xsl:attribute name="xmlUrl"><xsl:value-of select="remote/@path"/></xsl:attribute>
          </xsl:element>
        </xsl:for-each>
      </body>
    </opml>
  </xsl:template>
</xsl:stylesheet>

Virtual CloneDrive Error: Can’t Open VCD

Wednesday, May 12th, 2010

I have not used Virtual CloneDrive for since January 2010 on my Windows Server 2008 R2 machine. Today, when trying to mount an ISO file on a drive letter i received a dialog stating it “Can’t Open VCD.” I tried everything to fix it but to no avail. Out of desperation I uninstalled and reinstalled the same version (5.4.4.0) and it now works again!

Fixing a Broken Keurig B70 Coffee Drip

Tuesday, May 11th, 2010

Keurig B70 LidI love my Keurig coffee maker, but have had continual problems with it. I must admit their customer service has been exceptional in resolving these issues. The latest issue had to do with not being able to close the lid, and when I did get it closed, coffee would pour out over the k-cup in addition to the normal route through the k-cup.

I really didn’t want to call Keurig customer support again, so I decided to take a closer look. It turns out there is a safety mechanism employed such that if the lid is opened too far or with too much force, there are plastic tabs on both sides of the k-cup holder that connect to the lid, and the become disengaged. The fix is simple, just push the tabs back into their slots and problem solved.

Woopra Analytics

Monday, May 10th, 2010

I’ve always enjoyed Google Analytics and thought it was an excellent free offering, that is, until I found Woopra. I am considering ditching Google Analytics all together and just use Woopra.

Woopra provides a level of detail Google cannot, giving me live information about what is occurring on my site at any moment; it even offers the ability to chat with someone currently browsing my site! Besides from the standard analytical information, Woopra offers lots of information that can help me determine how to improve the content I offer. And it is all in real time!

I cannot give it the justice it deserves; I suggest heading to www.woopra.com and downloading it for yourself. There are a number of plug-ins to make it easy to connect your site with Woopra. I added the javascript to my pages; it took just a few minutes.

I suggest you try Woopra; you won’t be disappointed (at least in the choice of analytical tool). And, I forgot to mention, it’s free!

Quick Way to Capture Lists

Tuesday, May 4th, 2010

Shopping List SnapshotThis entry is really low-tech but involves technology I carry with me every day – my smart phone. I’ve purchased a number of applications to maintain shopping lists on my iPhone, but the method I really prefer is to write what we need on a dry-erase board that is magnetically attached to our refrigerator and when I head out to the store, instead of copying the information, I just snap a picture of it. It’s quick and dirty and works really well!

stop spam with honeypot!