<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Aditech &#187; windows registry</title>
	<atom:link href="http://blog.aditech.info/category/windows-registry/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.aditech.info</link>
	<description>There is something for everyone !!</description>
	<lastBuildDate>Mon, 16 Nov 2009 13:16:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Windows Registry in depth-Part 1</title>
		<link>http://blog.aditech.info/windows-registry-in-depth-part-1.html</link>
		<comments>http://blog.aditech.info/windows-registry-in-depth-part-1.html#comments</comments>
		<pubDate>Fri, 04 Apr 2008 16:03:43 +0000</pubDate>
		<dc:creator>adithya</dc:creator>
				<category><![CDATA[windows registry]]></category>
		<category><![CDATA[intro to windows registry]]></category>
		<category><![CDATA[window registry- a quick intro]]></category>
		<category><![CDATA[windows registry for beginner]]></category>
		<category><![CDATA[Windows Registry in depth]]></category>

		<guid isPermaLink="false">http://blog.aditech.info/?p=134</guid>
		<description><![CDATA[<a href="http://img245.imageshack.us/my.php?image=runmr0.jpg" target="_blank"><img src="http://img245.imageshack.us/img245/5116/runmr0.th.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a>
<a href="http://img245.imageshack.us/my.php?image=runmr0.jpg" target="_blank"><img src="http://img245.imageshack.us/img245/5116/runmr0.th.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a>
<a href="http://img183.imageshack.us/my.php?image=regpathra4.jpg" target="_blank"><img src="http://img183.imageshack.us/img183/860/regpathra4.th.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>The Windows registry is a directory which stores settings and options for the operating system for Microsoft Windows 32-bit versions, 64-bit versions and Windows Mobile.</p>
</blockquote>
<p>This is one of the least understood aspects of the windows OS.It&#8217;s basically a database of all the values and settings required by windows as well as several softwares in order to function properly.It was specifically developed in order to overcome the drawbacks of .ini files which were the earlier means of storing the settings(Even now some settings are stored in .ini files..excellent example for this is boot.ini file)</p>
<p>To open windows registry&#8230;Just run &#8220;regedit&#8221; in the run dialog box</p>
<p style="text-align: center;">
<h2>Registry Concepts</h2>
</p>
<h3>Hives</h3>
<p>Hives are nothing but the top levels in registry.There are typically 5 different hives. They are:<br />
<span id="more-134"></span><br />
<img src="http://img519.imageshack.us/img519/1677/hiveskh1.jpg" alt="Hive struct" /></p>
<p>Each hive is associated with a certain functions</p>
<ul>
<li><strong>HKEY_CLASSES_ROOT (HKCR)</strong>:stores information about registered applications, such as file associations.</li>
<li><strong>HKEY_CURRENT_USER (HKCU)</strong>:stores settings that are specific to the currently logged-in user.This is infact a mirror to subkey of HKEY_USERS hive that corresponds to the user;that means the changes in HKCU is reflected in HKEY_USERS and vicevarsa</li>
<li><strong>HKEY_LOCAL_MACHINE (HKLM)</strong>:It is considered as the important hive in registry. it stores all the system related settings which are common to all the users.It also stores info regarding Hardware.</li>
<li><strong>HKEY_USERS (HKU)</strong>: As explained in HKCR, this has settings which are specific for different users of the computer. Each user is alloted a separate key within HKU</li>
<li><strong>HKEY_CURRENT_CONFIG</strong>: This is rather interesting hive in windows registry.It contains the info generated during runtime.The settings are not specifically stored permanently on disk.They are renewed or generated at boot-time</li>
</ul>
<h3>Key&#8217;s</h3>
<p>The structure of windows registry is similar to the folders structure.Just imagine the Hives as drives,Keys as top folders,Sub keys as sub folders whithin a folder and last but not least values as files.</p>
<p><img src="http://img183.imageshack.us/img183/860/regpathra4.jpg" alt="Key structure"/></p>
<p>Take for example the above structure in the snapshot<br />
The full path of the above structure is</p>
<p><code>HKEY_CURRENT_CONFIG\Software\Fonts</code><br />
or<br />
<code>HKCC\Software\Fonts</code></p>
<p>Here <em>HKEY_CURRENT_CONFIG</em> or <em>HKCC</em> is the hive Software the key <em>Fonts</em> the subkey and <em>FONTS.FON</em> the value(String value)</p>
<h3>Values</h3>
<p>The actual setting is stored in these entities. There are basically 3 major type of values<br />
<img src="http://img84.imageshack.us/img84/5421/valuett8.jpg" alt="value" /></p>
<ul>
<li><strong>String value(REG_SZ)</strong>:Stores in the value in string or chars format.We can also include the Unicode chars in it</li>
<li><strong>Binary Value(REG_Binary)</strong>:Stores the value in Binary form. Usually major system and hardware setting are stored in this format.</li>
<li><strong>DWORD Value(REG_DWORD)</strong>:Stores the value in either Octal or decimal number format</li>
</ul>
<p>There are 2 more(Expandable and Multi String value) but they are not so commonly used.</p>
<p>Creating a new value or sub key is easy.Just navigate where you want to create a new key or value and right click and select the appropriate option.To edit or add the contents to the value double click on the value and fill up the value</p>
<h1>To be continued&#8230;&#8230;&#8230;.. <img src='http://blog.aditech.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </h1>
<h3  class="related_post_title"><hr>You may also like</h3><ul class="related_post"><li><a href="http://blog.aditech.info/seo-for-wordpress-blogs-part-2.html" title="SEO for wordpress blogs-Part 2/5">SEO for wordpress blogs-Part 2/5</a></li><li><a href="http://blog.aditech.info/changing-cd-dvdfloppy-drives-label-and-icon.html" title="Changing CD/DVD/Floppy Drive(s) label and icon">Changing CD/DVD/Floppy Drive(s) label and icon</a></li><li><a href="http://blog.aditech.info/presenmaker-10.html" title="Presenmaker 1.0">Presenmaker 1.0</a></li><li><a href="http://blog.aditech.info/enum-data-type.html" title="enum data type">enum data type</a></li><li><a href="http://blog.aditech.info/how-to-install-oldincompatible-firefox-addon-or-extension.html" title="How to Install Old,Incompatible Firefox Addon or Extension">How to Install Old,Incompatible Firefox Addon or Extension</a></li><li><a href="http://blog.aditech.info/seo-for-wordpress-blogs-part-1.html" title="SEO for wordpress blogs-Part 1/5">SEO for wordpress blogs-Part 1/5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.aditech.info/windows-registry-in-depth-part-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing CD/DVD/Floppy Drive(s) label and icon</title>
		<link>http://blog.aditech.info/changing-cd-dvdfloppy-drives-label-and-icon.html</link>
		<comments>http://blog.aditech.info/changing-cd-dvdfloppy-drives-label-and-icon.html#comments</comments>
		<pubDate>Fri, 21 Mar 2008 15:03:55 +0000</pubDate>
		<dc:creator>adithya</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[windows registry]]></category>
		<category><![CDATA[change the drive label and icon]]></category>
		<category><![CDATA[Changing CD/DVD/Floppy Drive(s) label and icon]]></category>

		<guid isPermaLink="false">http://blog.aditech.info/2008/03/21/changing-cddvdfloppy-drives-label-and-icon/</guid>
		<description><![CDATA[<a href="http://img170.imageshack.us/my.php?image=pathby0.jpg" target="_blank"><img src="http://img170.imageshack.us/img170/2492/pathby0.th.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a>
<a href="http://img187.imageshack.us/my.php?image=valueyn9.jpg" target="_blank"><img src="http://img187.imageshack.us/img187/2818/valueyn9.th.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a>
<a href="http://img151.imageshack.us/my.php?image=folderoptionsuw1.jpg" target="_blank"><img src="http://img151.imageshack.us/img151/6471/folderoptionsuw1.th.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a>
<a href="http://img254.imageshack.us/my.php?image=pathsop0.jpg" target="_blank"><img src="http://img254.imageshack.us/img254/531/pathsop0.th.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a>
<a href="http://img386.imageshack.us/my.php?image=14140428hl9.jpg" target="_blank"><img src="http://img386.imageshack.us/img386/133/14140428hl9.th.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a>
<a href="http://img291.imageshack.us/my.php?image=screenshotsw6.jpg" target="_blank"><img src="http://img291.imageshack.us/img291/9932/screenshotsw6.th.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a>
<a href="http://img90.imageshack.us/my.php?image=shotbc8.jpg" target="_blank"><img src="http://img90.imageshack.us/img90/7618/shotbc8.th.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a>
<a href="http://img291.imageshack.us/my.php?image=59291151jv4.jpg" target="_blank"><img src="http://img291.imageshack.us/img291/9461/59291151jv4.th.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p>Bored of seeing the name something like &#8220;DVD-RW Drive&#8221; for your CD/DVD drive&#8230;.?</p>
<p>wanna change the name to something like Sony or Samsung drive&#8230;?</p>
<p>You can change the icon of the harddisk by using <strong>autorun.inf</strong> or <strong>desktop.ini</strong> file but how to do so in case of CD/DVD/Floppy drive when the disc is not inserted&#8230;..?</p>
<p style="text-align: center"><img src="http://img291.imageshack.us/img291/9461/59291151jv4.jpg" /></p>
<p>Well there is a reg hack solution for all these&#8230;  <img src='http://blog.aditech.info/wp-includes/images/smilies/icon_wink.gif' alt=':wink:' class='wp-smiley' />  Just follow this tut&#8230;.<br />
<span id="more-128"></span></p>
<ul>
<li>Open your registry by issuing <strong>rededit</strong> in run dialog box</li>
<li>Navigate to <code>HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion \Explorer\DriveIcons</code></li>
<li>BTW you can easily do the above step by using a software called regjump ..I have made a tutorial on how to use it.In case you have not seen it,visit <a href="http://blog.aditech.info/2008/03/16/reg-jump-jump-into-the-registry/" title="here" target="_blank">here</a></li>
<li>Now in case if there is no <strong>DriveIcons</strong> key,create it</li>
<li>Now create a new key with the drive letter of your CD/DVD/Floppy drive i.e, if your CD/DVD/Floppy drive letter is <strong>F:</strong> then create a new key called <strong>F</strong></li>
<li>Now enter the key path u just created</li>
<li>Create keys <strong>DefaultIcon</strong> and <strong>DefaultLabel</strong> under it</li>
<li>Do the above steps for all the CD/DVD drives(if you have more than one)</li>
<p><img src="http://img386.imageshack.us/img386/133/14140428hl9.jpg" /><br />
^^I have 2 CD/DVD drives and one Floppy drive..so the steps explained above has resulted in the above reg structure</p>
<li>Now in order to change the Drive label,navigate to the path <strong>DriveLabel</strong> under the desired drive letter(ex: F)</li>
<li>There is a string value called <strong>(Default), </strong>edit it with any name you like</li>
<p><img src="http://img187.imageshack.us/img187/2818/valueyn9.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0" /></p>
<li>That&#8217;s all you have sucessfully changes the drive label &#8230; There is no need to restart or logoff to view the changes&#8230;</li>
<li>Now to change the icon,navigate to path <strong>DriveIcon </strong>under the desired drive letter</li>
<li>There is a string value called <strong>(Default),</strong>edit it with the path of the icon(.ico) file</li>
<li>Well if you don&#8217;t have any ico file then no need to worry&#8230;i have another solution</li>
<li>Now to proceed further you need to enable the show hidden files and folder options,show extensions,show system file option from the Tools&gt;&gt;Folder Options menu,click the View tab in it and make the changes. The below screenshot will give u an idea</li>
<p><img src="http://img151.imageshack.us/img151/6471/folderoptionsuw1.jpg" /></p>
<li>Now after doing this, go to any folder you like;right click on the empty space;choose <strong>Customize this folder</strong> option;click on the button <strong>Change Icon, </strong>select any icon you like&#8230;click apply.</li>
<li>You can see a file called <strong>Desktop.ini </strong>inside the folder<strong><br />
</strong></li>
<li>Open it..Typically it&#8217;s contents will be like this</li>
<p><code><br />
</code></p>
<p><code>[.ShellClassInfo]<br />
IconFile=%SystemRoot%\system32\SHELL32.dll<br />
IconIndex=105</code></p>
<p><code></code>note that this is just an example&#8230;the value of IconIndex need not be the same&#8230;It depends upon the icon you selected</p>
<li>Now copy the path of icon file i.e,<strong>%SystemRoot%\system32\SHELL32.dll </strong>in above case..paste the path in the (Default) value of the DriveIcon sub key</li>
<li>Don&#8217;t press <strong>Ok </strong>coz there is a small change;type <strong>, </strong>at the end and then type the number which is specified in IconIndex in destop.ini file i.e, in above case it&#8217;s 105</li>
<li>So the <strong>(Default)</strong> value will be <strong>%SystemRoot%\system32\SHELL32.dll,105</strong></li>
<p><img src="http://img254.imageshack.us/img254/531/pathsop0.jpg" /></p>
<li>That&#8217;s all&#8230;.The changes will takes place immediately</li>
<li>You can also use the other dll files provided that they contain the icon&#8217;s&#8230;Just click Browse button during icon selection and point to the dll file  <img src='http://blog.aditech.info/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' /> </li>
<li>The same procedure can be applied to hard disk drives as well</li>
</ul>
<p>Hope you like this tutorial&#8230;If you have any doubts regarding this then fell free to ask anytime&#8230;<br />
Waiting for ur comments and feedbacks as well as your SHOUTS  <img src='http://blog.aditech.info/wp-includes/images/smilies/icon_rolleyes.gif' alt=':roll:' class='wp-smiley' /> </p>
<p>And don&#8217;t forget to share this article if you like this&#8230;.I have installed the share plugin&#8230;   <img src='http://blog.aditech.info/wp-includes/images/smilies/icon_smile.gif' alt=':smile:' class='wp-smiley' /> </p>
<h3  class="related_post_title"><hr>You may also like</h3><ul class="related_post"><li><a href="http://blog.aditech.info/edit-set.html" title="Edit Set">Edit Set</a></li><li><a href="http://blog.aditech.info/seo-for-wordpress-blogs-part-2.html" title="SEO for wordpress blogs-Part 2/5">SEO for wordpress blogs-Part 2/5</a></li><li><a href="http://blog.aditech.info/adding-shoutbox-in-wordpress.html" title="Adding ShoutBox in wordpress">Adding ShoutBox in wordpress</a></li><li><a href="http://blog.aditech.info/google-can-read-flash.html" title="Google can read Flash">Google can read Flash</a></li><li><a href="http://blog.aditech.info/the-mistake-in-made-with-my-rss-feeds.html" title="The mistake in made with my RSS feeds&#8230;">The mistake in made with my RSS feeds&#8230;</a></li><li><a href="http://blog.aditech.info/how-to-refresh-or-flush-domain-name-systemdns-cache-in-windows.html" title="How to refresh or flush Domain Name System(DNS) Cache in windows">How to refresh or flush Domain Name System(DNS) Cache in windows</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.aditech.info/changing-cd-dvdfloppy-drives-label-and-icon.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Reg Jump: Jump into the registry</title>
		<link>http://blog.aditech.info/reg-jump-jump-into-the-registry.html</link>
		<comments>http://blog.aditech.info/reg-jump-jump-into-the-registry.html#comments</comments>
		<pubDate>Sun, 16 Mar 2008 09:03:26 +0000</pubDate>
		<dc:creator>adithya</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[windows registry]]></category>
		<category><![CDATA[environmental variable]]></category>
		<category><![CDATA[jump into registry]]></category>
		<category><![CDATA[naviage to reg path]]></category>
		<category><![CDATA[regjump]]></category>

		<guid isPermaLink="false">http://blog.aditech.info/2008/03/16/reg-jump-jump-into-the-registry/</guid>
		<description><![CDATA[Found an interesting registry path…. dunno how to remember this path for future use….. Well u can add the key path in the Favorites.But lets assume u reinstalled the Windows and now u need that registry path….What to do…? OR In some article or tutorial it is specified to navigate to some reg path like [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #0000ff"><em>Found an interesting registry path…. dunno how to remember this path for future use….. Well u can add the key path in the Favorites.But lets assume u reinstalled the Windows and now u need that registry path….What to do…?<br />
</em></span></p>
<p align="center"><span style="color: #0000ff"><em> OR</em></span></p>
<p><span style="color: #0000ff"><em> In some article or tutorial it is specified to navigate to some reg path like HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\<br />
Explorer\Advanced\Folder … and do something.. But ur bored or too lazy (like me) to manually navigate via regedit..?<br />
</em></span></p>
<p align="center"><span style="color: #0000ff"><em> OR</em></span></p>
<p><span style="color: #0000ff"><em> Want to jump directly to a specific registry path in one go?<br />
</em></span></p>
<p>The answer to all this is <strong>REG JUMP</strong> from Sysinternals (now a wholly owned subsidiary of Microsoft Corporation)<br />
<span id="more-82"></span><br />
First download this freeware(40 KB) from <a href="http://www.microsoft.com/technet/sysinternals/Miscellaneous/Regjump.mspx">http://www.microsoft.com/technet/sysinternals/Miscellaneous/Regjump.mspx</a></p>
<p>Then Copy regjump.exe file to “<system>\WINDOWS\system32\” folder<br />
Ex: C:\WINDOWS\system32\</system></p>
<p>Now open command prompt or dos prompt, type regjump and press enter<br />
u must get like this…</p>
<p><img src="http://img205.imageshack.us/img205/6457/cmdwm1.jpg" border="0" height="335" width="520" /></p>
<p>But if u get like this</p>
<p><img src="http://img205.imageshack.us/img205/721/errorbv8.jpg" border="0" height="196" width="512" /></p>
<p>That means that u have not copied the file correctly into “<system>\WINDOWS\system32\” folder<br />
Do it correctly</system></p>
<p>Now let us learn how to navigate&#8230;Before doing so there are some conventions used in regjump to represent the hives(simply main root of the reg path)..</p>
<p><strong>HKEY_CLASSES_ROOT&#8212;&gt;HKCR<br />
HKEY_CURRENT_USER&#8212;&gt;HKCU<br />
HKEY_LOCAL_MACHINE&#8211;&gt;HKLM<br />
HKEY_USERS&#8212;&gt;HKU<br />
HKEY_CURRENT_CONFIG&#8211;&gt;HKCC</strong></p>
<p>All other’s are same..i.e, if ur desired path is “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer”</p>
<p>Then u have to regard it as “HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer”</p>
<p>Hope u understood</p>
<p>Now type in cmd prompt</p>
<pre style="border: medium none ; padding: 0in; background: #eef0f2 none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial"><span style="color: black">regjump HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer<o:p></o:p></span></pre>
<p class="MsoNormal"><span>and press enter.<o:p></o:p></span></p>
<p class="MsoNormal"><span>Regedit will open and will jump automatically to the specified path…..<o:p></o:p></span></p>
<p class="MsoNormal"><span>Now let’s create a batch file to do this….<o:p></o:p></span></p>
<p class="MsoNormal"><span>Open notepad and type the following<o:p></o:p></span></p>
<pre style="border: medium none ; padding: 0in; background: #eef0f2 none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial"><span style="color: black">regjump HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer<o:p></o:p></span></pre>
<p class="MsoNormal"><span>Save the file as “my key.bat” including quotes. Select any name but .bat is mandatory <o:p></o:p></span></p>
<p><a href="http://img205.imageshack.us/img205/6691/saveasinregjumprd7.jpg" rel="shadowbox[post-82];player=img;" target="_blank"><img src="http://img205.imageshack.us/img205/6691/saveasinregjumprd7.jpg" border="0" height="417" width="486" /></a></p>
<p>Now open the .bat file u created.. Regedit will open and will jump automatically to the specified path…..</p>
<p>Like this u can make ur own batch files which will automatically open the required path in registry….</p>
<p>This tutorial is over but here are some points that I wish to share…</p>
<p style="text-align: center"><img src="http://img120.imageshack.us/img120/1540/indepthry8.jpg" border="0" /></p>
<p><span style="color: #ff0000">Q: <em>Why we have to copy regjump.exe to “</em></span><system><span style="color: #ff0000"><em>\WINDOWS\system32\”?</em></span></system></p>
<p><system><br />
<span style="color: #0000ff"> A: good question. Let me explain it in my own words.<br />
Whenever u type any command in cmd prompt and press enter, if it’s not an inbuilt command (like dir, cls, cd etc, often called internal commands during dos times&#8230;), then it will search or find the command (mainly exe file) in some path and will execute it. By default it will do this for paths (u can add more path;go to next question to find how)</span></system></p>
<pre style="border: medium none ; padding: 0in; background: #eef0f2 none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial"><span style="color: #0000ff"><span style="color: black">%SystemRoot%\system32\<o:p></o:p></span></span></pre>
<pre style="border: medium none ; padding: 0in; background: #eef0f2 none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial"><span style="color: #0000ff"><span style="color: black">%SystemRoot%<o:p></o:p></span></span></pre>
<pre style="border: medium none ; padding: 0in; background: #eef0f2 none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial"><span style="color: #0000ff"><span style="color: black">%SystemRoot%\System32\Wbem<o:p></o:p></span></span></pre>
<p><span style="color: #0000ff">That’s why I have told to copy regjump.exe file to <system>\WINDOWS\system32\” which is one of the path it searches..</system></span></p>
<p><span style="color: #ff0000">Q:<em> Ok, but what if I don’t want to copy regjump.exe to </em></span><system><span style="color: #ff0000"><em>\WINDOWS\system32\” I copied it to some ‘D:\regjump\’ folder Is there any way to make it work the same?</em></span></system></p>
<p><system><br />
<span style="color: #0000ff"> A: Yes there is a way. Adding the path of folder containing regjump.exe to the system variable called ‘Path’..<br />
Right click on my computer icon and select properties…<br />
Click the Advanced tab; click “Environmental Variables” button present at the bottom;<br />
U can see two variables User and System variables. In the System variable select ‘Path’ and press Edit button; Another window opens; now don’t edit the variable name but u must add the path of folder containing regjump i.e., in our case it’s ‘D:\regjump\’ to the variable value It is important to note that each path must be separated by semicolon(;)..so before appending D:\regjump\ to the path add semicolon at the beginning to separate it from the previous path. Adding semicolon (;) at the end is optional .i.e.,</span></system></p>
<p><span style="color: #0000ff">If the variable value before addition is something like</span></p>
<pre style="border: medium none ; padding: 0in; background: #eef0f2 none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial"><span style="color: #0000ff"><span style="color: black">%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem<o:p></o:p></span></span></pre>
<p><span style="color: #0000ff">Then after addition of folder containing regjump path it should be</span></p>
<pre style="border: medium none ; padding: 0in; background: #eef0f2 none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial"><span style="color: #0000ff"><span style="color: black">%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;D:\regjump\<o:p></o:p></span></span></pre>
<p><span style="color: #0000ff">Note that u can add semicolon at the end too but it’s not mandatory.</span></p>
<p class="MsoNormal"><span style="color: #0000ff">Press Ok and again press Ok and again Ok…</span></p>
<p><a href="http://img205.imageshack.us/img205/3827/pathyv7.jpg" rel="shadowbox[post-82];player=img;" target="_blank"><img src="http://img205.imageshack.us/img205/3827/pathyv7.jpg" height="404" width="459" /></a></p>
<p><span style="color: #0000ff">Open cmd prompt and type regjump u must get the same dialog as shown above in the tut.</span></p>
<p><span style="color: #ff0000">Q: <em>I hate typing regjump name can’t I use name like jump or something like goreg..</em></span></p>
<p><span style="color: #0000ff"> A: Sure u can. it’s so simple&#8230;. just rename the file regjump to something u like..And remember to replace the regjump name with the name u had given</span></p>
<p>That’s it &#8230; <img src='http://blog.aditech.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Hope u liked the tutorial…Don’t forget to give me responses and feedbacks&#8230;</p>
<h3  class="related_post_title"><hr>You may also like</h3><ul class="related_post"><li><a href="http://blog.aditech.info/seo-for-wordpress-blogs-part-1.html" title="SEO for wordpress blogs-Part 1/5">SEO for wordpress blogs-Part 1/5</a></li><li><a href="http://blog.aditech.info/how-to-organize-your-firefox-web-history-just-like-opera.html" title="How to Organize your Firefox Web History just like Opera">How to Organize your Firefox Web History just like Opera</a></li><li><a href="http://blog.aditech.info/dynamic-output-in-c.html" title="Dynamic Output in C">Dynamic Output in C</a></li><li><a href="http://blog.aditech.info/bulid-your-own-open-suse-distro-using-open-studio.html" title="Bulid Your Own Open Suse Distro Using Open Studio">Bulid Your Own Open Suse Distro Using Open Studio</a></li><li><a href="http://blog.aditech.info/atoiatol-and-atof-functions.html" title="atoi,atol and atof functions">atoi,atol and atof functions</a></li><li><a href="http://blog.aditech.info/important-instructions-for-programs-using-mathh-library-function.html" title="Important instructions for programs using math.h library function">Important instructions for programs using math.h library function</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.aditech.info/reg-jump-jump-into-the-registry.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
