<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: How to parse &#34;special&#34; .lnk files, aka. MSI shortcuts aka. Windows Installer advertised shortcuts using C#</title>
	<atom:link href="http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/</link>
	<description>News and views from the geek tie guy.</description>
	<pubDate>Wed, 23 Jul 2008 23:47:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: GeekTieGuy</title>
		<link>http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7457</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Fri, 16 May 2008 15:35:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7457</guid>
		<description>No problem. I haven't seen problems with MS Office 2003 shortcuts myself, but I have seen Office 2007 shortcuts work. Maybe it depends on the install source (admin share, SMS, etc.)?</description>
		<content:encoded><![CDATA[<p>No problem. I haven&#8217;t seen problems with MS Office 2003 shortcuts myself, but I have seen Office 2007 shortcuts work. Maybe it depends on the install source (admin share, SMS, etc.)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Zelesnik</title>
		<link>http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7455</link>
		<dc:creator>Greg Zelesnik</dc:creator>
		<pubDate>Fri, 16 May 2008 12:41:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7455</guid>
		<description>Thanks for responding!  I am, in fact, using the WshShell method after the MsiGetShorcutTarget() returns null from parsing a .lnk file, and it works like a champ.  However, it's weird.  It's the MS Office 2003 advertising shortcuts that are returning null in my case, and I know they're installed as I use them daily.  The weird part is that the return value fromMsiGetShortcutTarget() call is 1603, which is ERROR_INSTALL_FAILED. The WshShell method returns the icon file for these links.  Not sure what's going on here, but I'm going to try it on some other advertising links that I know I have.  Thanks for responding and letting me know that it's not a fundamental Vista issue!</description>
		<content:encoded><![CDATA[<p>Thanks for responding!  I am, in fact, using the WshShell method after the MsiGetShorcutTarget() returns null from parsing a .lnk file, and it works like a champ.  However, it&#8217;s weird.  It&#8217;s the MS Office 2003 advertising shortcuts that are returning null in my case, and I know they&#8217;re installed as I use them daily.  The weird part is that the return value fromMsiGetShortcutTarget() call is 1603, which is ERROR_INSTALL_FAILED. The WshShell method returns the icon file for these links.  Not sure what&#8217;s going on here, but I&#8217;m going to try it on some other advertising links that I know I have.  Thanks for responding and letting me know that it&#8217;s not a fundamental Vista issue!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GeekTieGuy</title>
		<link>http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7451</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Fri, 16 May 2008 04:25:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7451</guid>
		<description>I've got it to work on Vista Home Premium and Ultimate. Maybe in your case the shortcuts are for things that are truly advertised and not installed yet, i.e. there is no real target at the time you try to resolve the link? Also, I apply the WshShell method after MsiGetShortcutTarget() returns null (note I didn't include that code in the downloadable sample). I assume you are doing that too?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got it to work on Vista Home Premium and Ultimate. Maybe in your case the shortcuts are for things that are truly advertised and not installed yet, i.e. there is no real target at the time you try to resolve the link? Also, I apply the WshShell method after MsiGetShortcutTarget() returns null (note I didn&#8217;t include that code in the downloadable sample). I assume you are doing that too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Zelesnik</title>
		<link>http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7445</link>
		<dc:creator>Greg Zelesnik</dc:creator>
		<pubDate>Thu, 15 May 2008 22:08:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7445</guid>
		<description>Have you ever gotten this code to work on Vista?  The MsiGetShortcutTarget() method is returning nothing for advertised shortcuts on my Vista Business OS.</description>
		<content:encoded><![CDATA[<p>Have you ever gotten this code to work on Vista?  The MsiGetShortcutTarget() method is returning nothing for advertised shortcuts on my Vista Business OS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GeekTieGuy</title>
		<link>http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7333</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Sat, 10 May 2008 03:04:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7333</guid>
		<description>Glad to be of help. And thanks for taking the time to comment as well!</description>
		<content:encoded><![CDATA[<p>Glad to be of help. And thanks for taking the time to comment as well!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Zelesnik</title>
		<link>http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7328</link>
		<dc:creator>Greg Zelesnik</dc:creator>
		<pubDate>Fri, 09 May 2008 19:38:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-7328</guid>
		<description>This was incredibly helpful to me.  Thank you for taking the time to publish this explanation and example on the web.  I have been trying to figure out how to parse advertised shortcuts for many hours, and this was just the ticket.  thanks!</description>
		<content:encoded><![CDATA[<p>This was incredibly helpful to me.  Thank you for taking the time to publish this explanation and example on the web.  I have been trying to figure out how to parse advertised shortcuts for many hours, and this was just the ticket.  thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Parsing those *.lnk type files - VB.NET version &#124; Hodson Report</title>
		<link>http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-4239</link>
		<dc:creator>Parsing those *.lnk type files - VB.NET version &#124; Hodson Report</dc:creator>
		<pubDate>Tue, 12 Feb 2008 01:51:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-4239</guid>
		<description>[...] sure to drop by his site and grab the rest of the sample code just incase you need more info - even if it is done in [...]</description>
		<content:encoded><![CDATA[<p>[...] sure to drop by his site and grab the rest of the sample code just incase you need more info - even if it is done in [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
