<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	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>Comments on: A Windows 7 Launch Party Trick!</title>
	<atom:link href="http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/</link>
	<description>(blog 'DidierStevens)</description>
	<lastBuildDate>Sat, 11 Feb 2012 16:16:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Windows&#8217;un sizi izlemekte kullandığı 5 yol! &#124; Haber &#8211; Mekanı</title>
		<link>http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/#comment-47469</link>
		<dc:creator><![CDATA[Windows&#8217;un sizi izlemekte kullandığı 5 yol! &#124; Haber &#8211; Mekanı]]></dc:creator>
		<pubDate>Tue, 15 Nov 2011 16:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1816#comment-47469</guid>
		<description><![CDATA[[...] çalıştırarak bu listeye ulaşmanız mümkündür. Aracın XP/Vista sürümünü bu adresten, Windows 7 sürümünü ise bu adresten [...]]]></description>
		<content:encoded><![CDATA[<p>[...] çalıştırarak bu listeye ulaşmanız mümkündür. Aracın XP/Vista sürümünü bu adresten, Windows 7 sürümünü ise bu adresten [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Windows 7 &#8211; MFU (Most Frequent Used Programs) &#171; Anything about IT</title>
		<link>http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/#comment-46747</link>
		<dc:creator><![CDATA[Windows 7 &#8211; MFU (Most Frequent Used Programs) &#171; Anything about IT]]></dc:creator>
		<pubDate>Sat, 22 Oct 2011 00:21:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1816#comment-46747</guid>
		<description><![CDATA[[...] Hope you found this interesting. You can download the latest version of UserAssist from here [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Hope you found this interesting. You can download the latest version of UserAssist from here [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 5 Ways to Track Windows Hidden Activities and Claim back User Privacy &#171; ADITYACE</title>
		<link>http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/#comment-46674</link>
		<dc:creator><![CDATA[5 Ways to Track Windows Hidden Activities and Claim back User Privacy &#171; ADITYACE]]></dc:creator>
		<pubDate>Tue, 18 Oct 2011 14:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1816#comment-46674</guid>
		<description><![CDATA[[...] of the tools available for this is called UserAssist, which need not be installed on the computer. After downloading and running, you can display more [...]]]></description>
		<content:encoded><![CDATA[<p>[...] of the tools available for this is called UserAssist, which need not be installed on the computer. After downloading and running, you can display more [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 5 Ways to Track Windows Hidden Activities and Claim back User Privacy</title>
		<link>http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/#comment-46497</link>
		<dc:creator><![CDATA[5 Ways to Track Windows Hidden Activities and Claim back User Privacy]]></dc:creator>
		<pubDate>Tue, 11 Oct 2011 05:32:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1816#comment-46497</guid>
		<description><![CDATA[[...] of the tools available for this is called UserAssist, which need not be installed on the computer. After downloading and running, you can display more [...]]]></description>
		<content:encoded><![CDATA[<p>[...] of the tools available for this is called UserAssist, which need not be installed on the computer. After downloading and running, you can display more [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark H.</title>
		<link>http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/#comment-45739</link>
		<dc:creator><![CDATA[Mark H.]]></dc:creator>
		<pubDate>Thu, 01 Sep 2011 17:50:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1816#comment-45739</guid>
		<description><![CDATA[Also, just in case you (I&#039;m sure you already know) or anyone else that goes through this post cares. you can add this code to convert the guid to folder path. (x = original guid path string -example -&gt; &quot;{6D809377-6AF0-444B-8957-A3773F02200E}\Adobe\Photoshop.exe&quot;)

                            Guid myguid = new Guid(x.Substring(1, 36));
                            IntPtr pPath;
                            string fullPath;

                            if (SHGetKnownFolderPath(myguid, 0, IntPtr.Zero, out pPath) == 0)
                            {
                                fullPath = System.Runtime.InteropServices.Marshal.PtrToStringUni(pPath) + x.Split(&#039;}&#039;)[1];
                                System.Runtime.InteropServices.Marshal.FreeCoTaskMem(pPath);
                            }]]></description>
		<content:encoded><![CDATA[<p>Also, just in case you (I&#8217;m sure you already know) or anyone else that goes through this post cares. you can add this code to convert the guid to folder path. (x = original guid path string -example -&gt; &#8220;{6D809377-6AF0-444B-8957-A3773F02200E}\Adobe\Photoshop.exe&#8221;)</p>
<p>                            Guid myguid = new Guid(x.Substring(1, 36));<br />
                            IntPtr pPath;<br />
                            string fullPath;</p>
<p>                            if (SHGetKnownFolderPath(myguid, 0, IntPtr.Zero, out pPath) == 0)<br />
                            {<br />
                                fullPath = System.Runtime.InteropServices.Marshal.PtrToStringUni(pPath) + x.Split(&#8216;}&#8217;)[1];<br />
                                System.Runtime.InteropServices.Marshal.FreeCoTaskMem(pPath);<br />
                            }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didier Stevens</title>
		<link>http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/#comment-45708</link>
		<dc:creator><![CDATA[Didier Stevens]]></dc:creator>
		<pubDate>Wed, 31 Aug 2011 18:19:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1816#comment-45708</guid>
		<description><![CDATA[@Mark UserAssist keys will only count programs started interactively by the user. I suggest you read my article about UserAssist in (IN)SECURE Magazine, take a look at my article list under Professional.]]></description>
		<content:encoded><![CDATA[<p>@Mark UserAssist keys will only count programs started interactively by the user. I suggest you read my article about UserAssist in (IN)SECURE Magazine, take a look at my article list under Professional.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dobbelina</title>
		<link>http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/#comment-45705</link>
		<dc:creator><![CDATA[Dobbelina]]></dc:creator>
		<pubDate>Wed, 31 Aug 2011 16:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1816#comment-45705</guid>
		<description><![CDATA[The “Focus time” (bytes 12-15) isn’t milliseconds for shortcuts (.Ink)
It’s counting the number of times the shortcut was executed.]]></description>
		<content:encoded><![CDATA[<p>The “Focus time” (bytes 12-15) isn’t milliseconds for shortcuts (.Ink)<br />
It’s counting the number of times the shortcut was executed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark H.</title>
		<link>http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/#comment-45679</link>
		<dc:creator><![CDATA[Mark H.]]></dc:creator>
		<pubDate>Tue, 30 Aug 2011 19:39:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1816#comment-45679</guid>
		<description><![CDATA[@Didier -&gt; Here&#039;s a question that you may have the answer to: when running my program (C#) I use the command &quot;System.Diagnostics.Process.Start(myprocess);&quot;. When I run a program using this method, it doesn&#039;t update the corresponding UserAssist key, (nor does it create a new key, not that it should). Is there a different method that I should be using to get it to update properly?]]></description>
		<content:encoded><![CDATA[<p>@Didier -&gt; Here&#8217;s a question that you may have the answer to: when running my program (C#) I use the command &#8220;System.Diagnostics.Process.Start(myprocess);&#8221;. When I run a program using this method, it doesn&#8217;t update the corresponding UserAssist key, (nor does it create a new key, not that it should). Is there a different method that I should be using to get it to update properly?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didier Stevens</title>
		<link>http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/#comment-45658</link>
		<dc:creator><![CDATA[Didier Stevens]]></dc:creator>
		<pubDate>Mon, 29 Aug 2011 21:52:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1816#comment-45658</guid>
		<description><![CDATA[@Mark No problem, it&#039;s public domain.]]></description>
		<content:encoded><![CDATA[<p>@Mark No problem, it&#8217;s public domain.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark H.</title>
		<link>http://blog.didierstevens.com/2009/10/21/a-windows-7-launch-party-trick/#comment-45636</link>
		<dc:creator><![CDATA[Mark H.]]></dc:creator>
		<pubDate>Mon, 29 Aug 2011 03:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1816#comment-45636</guid>
		<description><![CDATA[@Didier -&gt; It&#039;s all good. I was able to read through your post on &quot;into the boxes&quot; to make a &quot;dirty coded&quot; version of what I needed. Am I allowed to use your source or do I need to write my own? (my project will be a free, open-source project). Thanks again for all of your hard work and I love reading about your new alarm system!]]></description>
		<content:encoded><![CDATA[<p>@Didier -&gt; It&#8217;s all good. I was able to read through your post on &#8220;into the boxes&#8221; to make a &#8220;dirty coded&#8221; version of what I needed. Am I allowed to use your source or do I need to write my own? (my project will be a free, open-source project). Thanks again for all of your hard work and I love reading about your new alarm system!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

