<?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/"
		>
<channel>
	<title>Comments on: How to Add Your Name in Desktop Context Menu in Windows XP?</title>
	<atom:link href="http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/</link>
	<description>Technology News, Internet, Tips-n-Tricks, Tutorials, Software Reviews, Themes, Skins, Wallpapers</description>
	<lastBuildDate>Sat, 21 Nov 2009 12:06:51 +0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: VG</title>
		<link>http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/comment-page-11/#comment-81239</link>
		<dc:creator>VG</dc:creator>
		<pubDate>Sun, 08 Nov 2009 20:11:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/#comment-81239</guid>
		<description>^^ No. But its possible in Windows 7:

http://www.askvg.com/how-to-add-your-name-in-windows-7-desktop-context-menu/</description>
		<content:encoded><![CDATA[<p>^^ No. But its possible in Windows 7:</p>
<p><a href="http://www.askvg.com/how-to-add-your-name-in-windows-7-desktop-context-menu/" rel="nofollow">http://www.askvg.com/how-to-add-your-name-in-windows-7-desktop-context-menu/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AJ</title>
		<link>http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/comment-page-11/#comment-80484</link>
		<dc:creator>AJ</dc:creator>
		<pubDate>Wed, 04 Nov 2009 10:13:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/#comment-80484</guid>
		<description>Hey, VG... Will this work on Vista. If not, can you make a tutorial to do the same thing for Vista.. please.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hey, VG... Will this work on Vista. If not, can you make a tutorial to do the same thing for Vista.. please.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Downloader</title>
		<link>http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/comment-page-11/#comment-75109</link>
		<dc:creator>Downloader</dc:creator>
		<pubDate>Thu, 15 Oct 2009 02:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/#comment-75109</guid>
		<description>@MNK: BTW what 33333(Identifier) stands for? Isn&#039;t it a folder icon identifier in shell32.dll?

That number should stand for define which command perform when you click at that text in menu. Example my file:

[code]
215 MENUEX
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
{
POPUP &quot;&quot;, 0, MFT_STRING, MFS_ENABLED, 0
{
	MENUITEM &quot;~nnq&amp;2603~&quot;, 2603, MFT_STRING, MFS_ENABLED &#124; MFS_DEFAULT
	MENUITEM &quot;&quot;, 65535, MFT_SEPARATOR, MFS_ENABLED
	POPUP &quot;&amp;View&quot;, 28674, MFT_STRING, MFS_ENABLED, 0
	{
		MENUITEM &quot;Filmstri&amp;p&quot;, 28719, MFT_STRING, MFS_ENABLED
		MENUITEM &quot;T&amp;humbnails&quot;, 28717, MFT_STRING, MFS_ENABLED
		MENUITEM &quot;Tile&amp;s&quot;, 28718, MFT_STRING, MFS_ENABLED
		MENUITEM &quot;Ico&amp;ns&quot;, 28713, MFT_STRING, MFS_ENABLED
		MENUITEM &quot;&amp;List&quot;, 28715, MFT_STRING, MFS_ENABLED
		MENUITEM &quot;&amp;Details&quot;, 28716, MFT_STRING, MFS_ENABLED

[/code]

28718 stands for thumbnails mode viewing.
28716 stands for details mode viewing.
etc...
33333 I&#039;m not sure, but probably it&#039;s meaningless. Just a place where you&#039;ve to put some number for correct procedual. For me, I put 2603 and nothing going wrong with me even I click it (enable, not grayed).

As I guess, problem&#039;d be there if you put a number that duplicate any existed/functionable number. Whenever you click your name in context menu, a certain unwanted command performs (but in grayed mode, I think probably any number allow, &#039;coz disabled all of them already).</description>
		<content:encoded><![CDATA[<p>@MNK: BTW what 33333(Identifier) stands for? Isn't it a folder icon identifier in shell32.dll?</p>
<p>That number should stand for define which command perform when you click at that text in menu. Example my file:</p>
<p>[code]<br />
215 MENUEX<br />
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US<br />
{<br />
POPUP "", 0, MFT_STRING, MFS_ENABLED, 0<br />
{<br />
	MENUITEM "~nnq&amp;2603~", 2603, MFT_STRING, MFS_ENABLED | MFS_DEFAULT<br />
	MENUITEM "", 65535, MFT_SEPARATOR, MFS_ENABLED<br />
	POPUP "&amp;View", 28674, MFT_STRING, MFS_ENABLED, 0<br />
	{<br />
		MENUITEM "Filmstri&amp;p", 28719, MFT_STRING, MFS_ENABLED<br />
		MENUITEM "T&amp;humbnails", 28717, MFT_STRING, MFS_ENABLED<br />
		MENUITEM "Tile&amp;s", 28718, MFT_STRING, MFS_ENABLED<br />
		MENUITEM "Ico&amp;ns", 28713, MFT_STRING, MFS_ENABLED<br />
		MENUITEM "&amp;List", 28715, MFT_STRING, MFS_ENABLED<br />
		MENUITEM "&amp;Details", 28716, MFT_STRING, MFS_ENABLED</p>
<p>[/code]</p>
<p>28718 stands for thumbnails mode viewing.<br />
28716 stands for details mode viewing.<br />
etc...<br />
33333 I'm not sure, but probably it's meaningless. Just a place where you've to put some number for correct procedual. For me, I put 2603 and nothing going wrong with me even I click it (enable, not grayed).</p>
<p>As I guess, problem'd be there if you put a number that duplicate any existed/functionable number. Whenever you click your name in context menu, a certain unwanted command performs (but in grayed mode, I think probably any number allow, 'coz disabled all of them already).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VG</title>
		<link>http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/comment-page-11/#comment-56662</link>
		<dc:creator>VG</dc:creator>
		<pubDate>Tue, 18 Aug 2009 20:56:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/#comment-56662</guid>
		<description>^^ No. Thats not possible.</description>
		<content:encoded><![CDATA[<p>^^ No. Thats not possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TMong</title>
		<link>http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/comment-page-11/#comment-56129</link>
		<dc:creator>TMong</dc:creator>
		<pubDate>Mon, 17 Aug 2009 18:48:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/#comment-56129</guid>
		<description>Hey VG,

Love the site and tutorials, about this name in the menu though,.. its just a visual thing, is it possible to assign it a command, make it open my userprofile by clicking it? maybe adding this command

&quot;explorer.exe %userprofile%&quot;

Thanks for the tutorials =]</description>
		<content:encoded><![CDATA[<p>Hey VG,</p>
<p>Love the site and tutorials, about this name in the menu though,.. its just a visual thing, is it possible to assign it a command, make it open my userprofile by clicking it? maybe adding this command</p>
<p>"explorer.exe %userprofile%"</p>
<p>Thanks for the tutorials =]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KonstantinMiller</title>
		<link>http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/comment-page-10/#comment-46100</link>
		<dc:creator>KonstantinMiller</dc:creator>
		<pubDate>Mon, 06 Jul 2009 17:30:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/#comment-46100</guid>
		<description>I think I will try to recommend this post to my friends and family, cuz it&#039;s really helpful.</description>
		<content:encoded><![CDATA[<p>I think I will try to recommend this post to my friends and family, cuz it's really helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VG</title>
		<link>http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/comment-page-10/#comment-23689</link>
		<dc:creator>VG</dc:creator>
		<pubDate>Mon, 13 Apr 2009 06:49:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/#comment-23689</guid>
		<description>^^ The _original file is created by default as a backup. There is no need to worry about that file. You must have made some mistake while editing the file thats why its giving invalid win32 app error.

Try to save the file somewhere else after editing and then use Replace to replace the file.</description>
		<content:encoded><![CDATA[<p>^^ The _original file is created by default as a backup. There is no need to worry about that file. You must have made some mistake while editing the file thats why its giving invalid win32 app error.</p>
<p>Try to save the file somewhere else after editing and then use Replace to replace the file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Subrata</title>
		<link>http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/comment-page-10/#comment-23683</link>
		<dc:creator>Subrata</dc:creator>
		<pubDate>Mon, 13 Apr 2009 00:46:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/#comment-23683</guid>
		<description>I did try your tips to change “Start” word to something else. There are few problems. I am using winXP SP2. In Step2, after editing the expolrer.exe through ResHaker as i compile the script it makes another copy of explorer.exe and name it explorer_original.exe. I can not stop it, even though i have stopped the windows file protection by wfps10. finally i have deleted it in safe mode but the problem is when i try to start a new task through task manager it says it is not a valid win32 app. Any solution?</description>
		<content:encoded><![CDATA[<p>I did try your tips to change “Start” word to something else. There are few problems. I am using winXP SP2. In Step2, after editing the expolrer.exe through ResHaker as i compile the script it makes another copy of explorer.exe and name it explorer_original.exe. I can not stop it, even though i have stopped the windows file protection by wfps10. finally i have deleted it in safe mode but the problem is when i try to start a new task through task manager it says it is not a valid win32 app. Any solution?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imbeshat Ahmad Khan</title>
		<link>http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/comment-page-10/#comment-19403</link>
		<dc:creator>Imbeshat Ahmad Khan</dc:creator>
		<pubDate>Fri, 13 Feb 2009 08:18:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/#comment-19403</guid>
		<description>HI vg. I have a problem regarding this. When i Try to paste the following code:-
215 MENUEX
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
{
POPUP &quot;&quot;, 0, MFT_STRING, MFS_ENABLED, 0
{

an error message occured in res.hacker the messsage is:-&quot;menuitem or popup expected&quot; what to do now? plz help...</description>
		<content:encoded><![CDATA[<p>HI vg. I have a problem regarding this. When i Try to paste the following code:-<br />
215 MENUEX<br />
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US<br />
{<br />
POPUP "", 0, MFT_STRING, MFS_ENABLED, 0<br />
{</p>
<p>an error message occured in res.hacker the messsage is:-"menuitem or popup expected" what to do now? plz help...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manoj</title>
		<link>http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/comment-page-10/#comment-18363</link>
		<dc:creator>Manoj</dc:creator>
		<pubDate>Tue, 27 Jan 2009 11:15:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.askvg.com/how-to-add-your-name-in-desktop-context-menu-in-windows-xp/#comment-18363</guid>
		<description>THanks Yaar U r superb at knowledge......</description>
		<content:encoded><![CDATA[<p>THanks Yaar U r superb at knowledge......</p>
]]></content:encoded>
	</item>
</channel>
</rss>
