<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>registry-tweaks &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/registry-tweaks/</link>
	<description>Feed of posts on WordPress.com tagged "registry-tweaks"</description>
	<pubDate>Tue, 01 Dec 2009 22:08:27 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA["Edit with Notepad" for File Context Menu]]></title>
<link>http://jakash3.wordpress.com/2009/10/22/edit-with-notepad-for-file-context-menu/</link>
<pubDate>Thu, 22 Oct 2009 04:07:55 +0000</pubDate>
<dc:creator>jakash3</dc:creator>
<guid>http://jakash3.wordpress.com/2009/10/22/edit-with-notepad-for-file-context-menu/</guid>
<description><![CDATA[How to add &#8220;Edit with Notepad&#8221; to the context menu for files. The Manual Way Open the Re]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>How to add &#8220;Edit with Notepad&#8221; to the context menu for files.</p>
<p><img src="http://i291.photobucket.com/albums/ll290/the-guardians29/EditWithNotepad.jpg?t=1256184360" alt="" /></p>
<p><strong>The Manual Way</strong></p>
<p><img src="http://www.howtogeek.com/wp-content/uploads/2008/02/image2.png" alt="" /><br />
Open the Registry Editor (&#8220;C:\Windows\regedit.exe&#8221;) and open the folders to &#8220;HKEY_CLASSES_ROOT\*\shell&#8221;.<br />
Right click on the &#8220;shell&#8221; folder, select &#8220;New&#8221; &#62; &#8220;Key&#8221; and name it to &#8220;Edit with Notepad&#8221;.<br />
Now right click on the newly created &#8220;Edit with Notepad&#8221; folder, select &#8220;New&#8221; &#62; &#8220;Key&#8221; and name this one &#8220;command&#8221;.<br />
Right click on the &#8220;(Default)&#8221; value in the right panel, select &#8220;Modify&#8221; and enter this in for the value data:</p>
<pre class="brush: plain;">
notepad.exe %1
</pre>
<p>That&#8217;s it, exit regedit. The change should apply already; if not, restart your computer.</p>
<p><strong>The Automatic REG File</strong></p>
<p>Save this script as EditWithNotepad.reg and run it to add &#8220;Edit with Notepad&#8221; to the context menu for files:</p>
<pre class="brush: plain;">
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\shell\Open with Notepad]

[HKEY_CLASSES_ROOT\*\shell\Open with Notepad\command]
@=&#34;notepad.exe %1&#34;
</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Add "New Batch File" or "New VBScript File" to Context Menu]]></title>
<link>http://jakash3.wordpress.com/2009/10/19/add-new-batch-file-or-new-vbscript-file-to-context-menu/</link>
<pubDate>Mon, 19 Oct 2009 02:11:16 +0000</pubDate>
<dc:creator>jakash3</dc:creator>
<guid>http://jakash3.wordpress.com/2009/10/19/add-new-batch-file-or-new-vbscript-file-to-context-menu/</guid>
<description><![CDATA[Alright, I&#8217;m posting this topic from a school computer right now. In this topic we will add 2 ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Alright, I&#8217;m posting this topic from a school computer right now.</p>
<p>In this topic we will add 2 new menu items to the &#8220;right-click &#62; new&#8221; menu. these items will be for creating a new &#8220;batch file and vbscript file.</p>
<p>Right-click &#62; new &#62; batch file<br />
Open C:\Windows\regedit.exe<br />
Open folders to this path:</p>
<p><code>HKEY_CLASSES_ROOT\.bat</code></p>
<p>Now right-click on the &#8220;.bat&#8221; folder &#62; New &#62; Key &#62;<br />
name the key to: ShellNew<br />
now on the right-side panel of the ShellNew folder<br />
right-click &#62; New &#62; String Value<br />
Rename the String value to: NullFile<br />
Then right click on the panel again and create another String Value<br />
Rename that string value to: NewItem<br />
Right-click on NewItem string value &#62; Modify&#8230; &#62; in the value data<br />
text box type this:</p>
<p><code>C:\Windows\System32\notepad.exe, -470</code></p>
<p>Then press OK.<br />
For changes to take effect. run this command to refresh explorer:</p>
<p><code>RUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParameters ,1 ,True</code></p>
<p>Now we have successfully placed the new item to the New menu.</p>
<p>Right-click &#62; New &#62; VBScript File<br />
Open C:\Windows\regedit.exe<br />
Open folders to this path:</p>
<p><code>HKEY_CLASSES_ROOT\.vbs</code></p>
<p>Now right-click on the &#8220;.vbs&#8221; folder &#62; New &#62; Key &#62;<br />
name the key to: ShellNew<br />
now on the right-side panel of the ShellNew folder<br />
right-click &#62; New &#62; String Value<br />
Rename the String value to: NullFile<br />
Then right click on the panel again and create another String Value<br />
Rename that string value to: NewItem<br />
Right-click on NewItem string value &#62; Modify&#8230; &#62; in the value data<br />
text box type this:</p>
<p><code>C:\Windows\System32\notepad.exe, -470</code></p>
<p>Then press OK.<br />
For changes to take effect. run this command to refresh explorer:</p>
<p><code>RUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParameters ,1 ,True</code></p>
<p>Now we have successfully placed the new item to the New menu.</p>
<p>The same can be applied to other text files such as .diz, .ini, .inf. Any extension you want.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Registry tweaks for windows]]></title>
<link>http://amirthamprb.wordpress.com/2009/10/17/registry-tweaks-for-windows/</link>
<pubDate>Sat, 17 Oct 2009 01:24:48 +0000</pubDate>
<dc:creator>Amirtham Purendra Raman</dc:creator>
<guid>http://amirthamprb.wordpress.com/2009/10/17/registry-tweaks-for-windows/</guid>
<description><![CDATA[Backing up and restoring the windows registry an important tip for preserving your system, and an es]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong> Backing up and restoring the windows registry</strong></p>
<p> an important tip for preserving your system, and an essential introduction to this section of tips. The Windows registry is the central data<br />
store for the Windows operating system. It contains all the information and variables that Windows uses to run itself and the programs you install. Editing the registry gives access to a wealth of options that may not be offered to you through the user interface. It also gives you the means to completely mess up your system in the time it takes to reboot.</p>
<p>While restoring a computer with registry problems is now a fair bit more possible thanks to the system restore features built into Windows XP<br />
, it&#8217;s still a good idea to make a backup of your registry before making any changes to it.</p>
<p>To back up the registry, open REGEDIT and ensure that &#8216;my computer&#8217; is highlighted, then go to file\export.</p>
<p>In this window, you need to enter a location to save the exported registry (as a single file) and choose the type of file to create. Also, check the &#8216;all&#8217; button at the bottom of the screen to backup the entire registry.</p>
<p>There are several possible file types, but we will focus on one only, as the .reg file type is the easiest to use. A .reg backup will copy over all changes made to existing portions of the registry when it is restored, while leaving additions to the registry made since the backup untouched.</p>
<p>Select the .reg file type and click &#8217;save.&#8217;</p>
<p>Restoring the registry from this .reg file is a simple matter of locating the file you created, right clicking it and selecting &#8216;merge.&#8217;</p>
<p><strong>How to edit the windows registry</strong></p>
<p>Editing the Windows registry can most easily be accomplished through the REGEDIT program built into Windows. This can be accessed by going to start\run\ and typing &#8216;regedit.&#8217;</p>
<p>Due to the nature of the registry, any changes you make here do not have to be saved. All changes are applied upon restarting the system. This also means that there is no &#8216;cancel&#8217; button for undoing accidental changes, so make sure you keep careful note of the values you intend to edit.</p>
<p>Registry values are stored in keys which appear as folders in the REGEDIT window. Most of the following instructions will have you add or edit values inside these keys.</p>
<p>When you highlight a key in the left pane, the values stored in it appear in the right pane. To edit a value, right click it and select &#8216;modify.&#8217;</p>
<p>To add a new value, navigate to the key in which you wish to add the value, right clock it and select &#8216;new&#8217; then the type of value you wish to create. Generally this will be either a string or DWORD value. Once you have created the value, name it, then right click on it to &#8216;modify&#8217; its properties.</p>
<p>Note that the naming convention for the registry, which we stick to in the following tips, is no spaces, separate words indicated by using capital letters. For example: EnableBalloonTips<br />
<!-- AddThis Button BEGIN --></p>
<div><a href="http://www.addthis.com/bookmark.php?v=250&#38;pub=bamirthampr" title="Bookmark and Share" target="_blank"><img src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share"></a></div>
<p><!-- AddThis Button END --></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA["Registry Hacks"]]></title>
<link>http://snapcomputingllc.wordpress.com/2009/09/26/registry-hacks/</link>
<pubDate>Sat, 26 Sep 2009 21:47:19 +0000</pubDate>
<dc:creator>snapcomputingllc</dc:creator>
<guid>http://snapcomputingllc.wordpress.com/2009/09/26/registry-hacks/</guid>
<description><![CDATA[Many of the clients I deal with are always asking: &#8220;how can I make my computer operate more ef]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Many of the clients I deal with are always asking: &#8220;how can I make my computer operate more efficiently?&#8221; Dependent upon the individuals computer skill, they could start by tweaking / &#8220;Hacking&#8221; their registry in the OS (operating system).      However,<em><strong> &#8220;Prior to applying any of the following methods it is highly recommended to back up you system, create a restore Pt;  (should something go awry&#8230;)</strong></em><br />
*************************************</p>
<p>Display Your Quick Launch ToolbarTip:</p>
<p>Is your Quick Launch toolbar missing from the taskbar?<br />
To display your familiar Quick Launch toolbar:<br />
Right-click an empty area on the taskbar, click Toolbars, and then click Quick Launch.</p>
<p>Easy as that your Quick Launch bar appears. To add items to your Quick Launch toolbar, click the icon for the program you want to add, and drag it to the Quick Launch portion of the taskbar.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>How to remove recycle bin from your desktop Tip:</p>
<p>Open Regedit by going to START &#8211; RUN and type Regedit and hit enter. Then you should navigate to following entry in registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\<br />
Desktop\NameSpace\{645FF040-5081-101B-9F08-00AA002F954E} and delete it. This action should remove recycle bin from your desktop.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>How to stop new programs installed balloon from coming up tip:</p>
<p>Right click on START button and select properties. Click on Customize and go to Advanced tab and deselect check box saying &#8220;Highlight newly installed programs&#8221;. This would help you stop this annoying feature from popping up every now and then.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Unlock Toolbars to Customize Them Tip:</p>
<p>The new Windows XP now features locking toolbars, and you can adjust them. You may customize a lot of the Windows XP features such as the Taskbar, Start Menu, and even toolbar icons in Internet Explorer and Outlook Express. Remember your right-click:<br />
* Right-click on a toolbar, and then click Lock the Toolbars to remove the check mark.<br />
* Right-click on the toolbar again, and then click Customize.</p>
<p>You may add or remove toolbar buttons, change text options and icon options. When you&#8217;ve got the toolbar customized, click Close. Now right-click on the toolbar and then click Lock the Toolbars to lock them in place. com</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Want to remove shared documents folder from My Computer window tip:</p>
<p>Some don&#8217;t like my shared documents folder option. If you are one of that, here is a trick to remove it.Open registry editor by going to START-RUN and entering regedit.<br />
Once in registry, navigate to key HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Explorer \ My Computer \ NameSpace \ DelegateFolders You must see a sub-key named {59031a47-3f72-44a7-89c5-5595fe6b30ee}. If you delete this key, you have effectively removed the my shared documents folder.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>How to improve on shutdown time ? Close apps automatically &#38; quickly at shutdown tip:</p>
<p>Open Registry by going to START-RUN and typing REGEDIT. Navigate to HKEY_CURRENT_USER\CONTROL PANEL\DESKTOP and look for AutoEndTasks. On my computer default value is 0. Change it to 1. Thats all. Further more you can reduce the time it takes for Windows to issue kill directive to all active/hung applications.<br />
In doing this only constraint that you should make sure exists is that HungAppTimeout is greater than WaitToKillAppTimeout. Change the values of WaitToKillAppTimeout to say 3500 (since default value for HungAppTimeout 5000 and for WaitToKillAppTimeout is 20000)</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Are you missing icons Tip:</p>
<p>Are you missing icons? You may be wondering where all the icons from your desktop are in Windows XP? Well if you&#8217;re like me, you like to have at least My Computer, My Network Places, and My Documents on the your desktop.<br />
You need to:<br />
* Right-click on the desktop, and then click Properties.<br />
* Click the Desktop tab and then click on Customize Desktop.<br />
* Put a check mark in the box next to My Document, My Computer, My Network Places, or Internet Explorer, to add those familiar icons to your desktop. Easy yes!</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>How to login as administrator if you don&#8217;t see it available tip:</p>
<p>Unless and until you have run into issues and fixing XP (underwhich case you have to go to Safe Mode to login as Administrator), you can get to administrator screen by simply pressing CTRL+ALT+DELETE twice at the main screen.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Speedup boot up sequence by defragmenting all key boot files tip:</p>
<p>Open Registry by going to START-RUN and typing REGEDIT. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction. In right hand panel look for Enable. Right click on it and set it &#8216;Y&#8217; for enable. This is the way I have it set on my computer. This will help speedup boot time.</p>
<p>Use a Shortcut to Local Area Network Connection Information:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Use a Shortcut to Local Area Network Connection Information Tip:</p>
<p>Here&#8217;s something new in Windows XP, instead of using the command line program and typing ipconfig to get local area network information, you can try using the following shortcut:<br />
* Click on Start, point to Connect to, and then click Show All Connections.<br />
* Right–click the connection you want information about, and then click Status.<br />
* In the connection Properties dialog box, click the Support tab.<br />
* For more information, click on the Advanced tab.</p>
<p>To automatically enable the status monitor each time the connection is active, in the connection Properties dialog box, select the Show icon in taskbar notification area when connected check box.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Do you know you can have Virtual Desktops (like in Linux) with PowerToys ?</p>
<p>If you have powertoys installed on Windows XP Its available for free at Microsoft download webpage. It is very easy to enable Microsoft Virtual Desktop Feature. Simply right click on the Start Panel Bar also called TaskBar, Click on Tool Bar and select Desktop manager.<br />
You would see a set of 5 icons placed on the right portion of the TAskBar. Click on number 1 to 4 to go to any of the desktops. Now you have have four different Active Desktops.<br />
IMPORTANT NOTE: You may see a little degradation in performance.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Customize Internet. Explorer Title bar tip:</p>
<p>This tip won&#8217;t make your computer any faster but may help personalize your computer experience. Open Registry by going to START-RUN and typing REGEDIT. Navigate to HKEY_CURRENT_USER\Software\Microsoft\Internet. Explorer\Main. In right hand panel look for string &#8220;Window Title&#8221; and change its value to whatever custom text you want to see.</p>
<p>Easy Text Size Change in Help &#38; IE Tip:<br />
I mentioned a way that you can change the size of the text that is display in the Help file and in Internet Explorer. As it turns out if you have a &#8220;wheel mouse,&#8221; there is an even easier way to change the text size. In Internet Explorer or when viewing a Help file, simply hold the ctrl key while you spin the mouse wheel up to increase text size, or down to decrease text size.<br />
Java VM: Java applets run in Internet Explorer 6 (a component of Windows XP) just as they run in older versions of Internet Explorer. The Java VM is not installed as part of the typical installation, but is installed on demand when a user encounters a page that uses a Java Applet. For more information see the Microsoft Technologies for Java Web site.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Windows XP Shutdown and Power Off Tip:</p>
<p>On some computers, by default, Windows XP doesn&#8217;t power off the computer when you tell it to shut down. However, if your computer is relatively new, it can probably by shut completely off by WinXP. To configure your computer for this behavior, simply open the Control Panel, open Performance and Maintenance, then Power Options. On the APM tab, check next to &#8220;Enable Advanced Power Management support,&#8221; then click OK. The next time you choose &#8220;Shut Down&#8221; from the Start Menu, your computer should shut down completely and then power off.</p>
<p>Customize Explorer Toolbar Tip:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Customize Explorer Toolbar Tip:</p>
<p>In Windows Explorer, you can customize the toolbar to make Explorer even more handy. The Toolbar is the bar of icons directly underneath the menu bar. It contains icons for going back, up one level, displaying folders or search, etc. You can right-click an open area of this Toolbar and choose Customize to change the order of these icons, and even to add new icons to it. For instance, I like to add the Map Drive and Disconnect buttons. In Windows XP, you may have to unlock the Taskbar before you can make changes in Windows Explorer.<br />
Lock the Taskba &#8211; If you find that your Windows XP Taskbar keeps being changed, or moved to one side or the top of your screen, and you didn&#8217;t mean to have it do that, this tip is for you. Once you have your Task Bar arranged the way you like it, in the right location on the screen, and with all the right toolbars and icons, you can lock it, so that it won&#8217;t get changed accidentally. To lock the Taskbar, simply right click it and choose Properties. In the window that appears, check the box (click) next to &#8220;Lock the Taskbar.&#8221; Now you won&#8217;t accidentally bump the mouse and have your Task bar end up on another side of the screen.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Check Personal Firewall Status Tip:</p>
<p>In the previous tip, I mention how to turn on Windows XP&#8217;s Personal Firewall feature. But once you turn it on, your connection looks just the same as it did before. How can you check the status of the connection and the firewall? Simply open Control Panel from the Start Menu, open Internet and Network Connections, then Network Connections. By default the view is of large icons.<br />
Click the View Menu, and choose &#8220;details&#8221; in order to reveal several more columns of information about the connections that your computer has. Check the Status column to see if your connection is currently connected, and whether or not it is &#8220;firewalled.&#8221; You can even drag the column headings around (I like to slide the Status column right next to the Name column. You can even remove entire columns by right-clicking the column heading and unchecking it.</p>
<p>Where does Window&#8217;s Product Id get stored Tip:<br />
By Raymond</p>
<p>There are two places at least where ProductId gets stored. To see the first place, open Registry by going to START-RUN and entering REGEDIT and Navigate to [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion]. In right pane, look for key by the name &#8220;ProductId&#8221;. This is your Windows Product Id. Alternatively you can navigate to [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion] and still find same field with the name ProductId.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>You can Keep Your Favorite Programs on Top of the Start Menu tip:</p>
<p>Do you have a favorite program that you frequently use? Elevate its priority on the Start menu by putting it at the top of the list. This ensures that the program will remain on the Start menu and cannot be bumped by other programs, even if you use the others more frequently.<br />
Right-click the link to your favorite program on the Start menu and select Pin to Start Menu.<br />
Your program will be moved permanently to the top part of the list, just below your browser and e-mail programs.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Having problems with Outlook Express ? Does it ask for password everytime you connect tip:</p>
<p>If this is problem for you. Sometimes no matter what you do, Outlook Express forgets your password and asks you to enter it again each and every time you connect to your mail server.I have a solution that may work for you. Open Registry by going to START-RUN and entering REGEDIT and Navigate to HKEY_CURRRENT USER\Software\Microsoft and look for &#8220;Protected Storage System Provider&#8221;. There is a good chance that you will see this folder. If you have it. Simply delete it. More than likely, you have solved your problem.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>How to avoid autoplay of CD ? Way I like best tip.</p>
<p>Hey this time no registry trick even though there are ways in registry to do it. In earlier operating systems only those CD that had autorun.inf file in their root directory were able to execute on its own but with advent of WINDOWS XP it has become possible with just about anything. Well sometimes it is good but there are other times when you want to avoid this part of automation. What would I do. Simply press SHIFT key when you enter a CD in your CD drive. It won&#8217;t Auto play. For those of you, who do want a registry hack. Here it is:<br />
Open Registry and navigate to [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer] and look for key &#8220;NoDriveTypeAutoRun&#8221; and set its value to 185 (decimal). This would stop autoplay.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
This tip to speed up the Start Menu in Windows XP.<br />
Did you know you can customize the speed of the Start Menu by editing a Registry Key.</p>
<p>* Click Start, and then click Run.<br />
* Type Regedit in the box, and then click OK.<br />
* Expand the menu in the left panel and select the HKEY_CURRENT_USER\Control Panel\Desktop folder.<br />
* Scroll down in the right panel and double click on the MenuShowDelay file.<br />
* In the Value Data box, change to default value for the menu speed from 400 to a lesser number, such as 1.<br />
*Click OK.<br />
Caution: Incorrectly editing the registry may severely damage your system. Before making changes to the registry, you may want to back up any valued data on your computer.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Customizing Windows Explorer Context menu (right click menu in windows explorer)</p>
<p>Ever wondered how does the right click menu (which is actually a context menu) work ? For example, when I right click in windows explorer, I see an option which says &#8220;open command window here&#8221;. Do You know why I see this ? Well I see this because I have following entries in my registry.</p>
<p>[HKEY_CLASSES_ROOT\Drive\shell\cmd]<br />
@=&#8221;Open Command Window Here&#8221;<br />
[HKEY_CLASSES_ROOT\Drive\shell\cmd\command]<br />
@=&#8221;C:\WINDOWS\System32\cmd.exe /k cd &#8220;%1&#8243;&#8221;<br />
If You have never used a tweaking utility and have newly installed Windows XP, You would not see this option. You would have to navigate to [[HKEY_CLASSES_ROOT\Drive] go and create two subkeys (&#8220;cmd&#8221; and within that &#8220;command&#8221; and would have to put the text &#8220;Open Command Window Here&#8221; without quotes in default string value of &#8220;cmd&#8221; key and the text &#8220;C:\WINDOWS\System32\cmd.exe /k CD&#8221;%1&#8243;&#8221; without quotes in default string value of command key). After this You need to REBOOT for these changes to take effect.<br />
Trick is in adding similar entries for other applications as well even though its much harder to come with ideas about what to put in the context menu!!!! .</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CheeseSoft.com Registry Cleaner Review!]]></title>
<link>http://thegreatmerlin.wordpress.com/2009/08/20/cheesesoft-com-registry-cleaner/</link>
<pubDate>Thu, 20 Aug 2009 18:24:37 +0000</pubDate>
<dc:creator>thegreatmerlin</dc:creator>
<guid>http://thegreatmerlin.wordpress.com/2009/08/20/cheesesoft-com-registry-cleaner/</guid>
<description><![CDATA[First off I will try and keep this as short as possible but it will turn out to be long. =) I have u]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>First off I will try and keep this as short as possible but it will turn out to be long. =) I have used both the free and paid for version. Obviously the paid version will be better so I suggest to get that but the trial shows you the power of the product. Before we get to far into it you have to understand how good of a company that CheeseSoft really is. This is a breif bio of them taken from http://www.cheesesoft.com/press/.</p>
<p>&#8220;CheeseSoft Ltd., (also Guangxi Nanning Qiwang Computer Ltd. registered in China) has always been dedicated to the research, production and development of personal desktop software, OEM for military purposes and integrated solutions for industrial fields. We currently provide PC utilities, data recovery, computer security and OEM solutions for consumer products, military and industrial uses. We also provide expert and experienced consulting servies to clients throughout the US, Canada, European and the new emerging markets in Southeast Asia. Our goal is to provide the state-of-art products, solutions and highest level of service and training to individuals, businesses, non-profits and government organizations so they can enjoy a better computer experience, increase productivity and protect sensitive information.&#8221;</p>
<p>Now lets look at a quick overview of the product taken from the product page <a href="http://5fee3hiy4gisb7bcl3ry5v1y9m.hop.clickbank.net/" target="_top">here</a>:</p>
<p>&#8220;Registry Easy can Restore, Fix &#38; Clean Up Your Registry Files and Errors in Windows.  Does your PC crash, is your system running slow or are you receiving regular error messages? Registry Easy will scan your system registry and hard drive for invalid file and system references for free. These invalid references cause system instability, PC errors, constant crashes, and general system slowdowns.&#8221;</p>
<p>Now that we got that out of the way lets break down the trial version and then we will move onto the paid version. The trial will scan your registry files which is very important because that can cause serious pc issues and loading issues if it is not properly maintained. So the trial version will show you all of the incomplete reg. files. However it will only fix a few and then you have to buy to get a complete clean. So that leads me into the benefits of the paid version.</p>
<p>The paid version is awsome. Registry cleanup can fix speed problems in your pc as well as get rid of any backdoor reg. files used by hackers. So the paid version cleans out everything and with a computer restart should speed up your pc 10 folds. Here is a short list of some of the features:</p>
<p>    * High-performance scan<br />
    * Junk Files Cleaner<br />
    * Duplicate File Cleaner<br />
    * Evidence Cleaner<br />
    * System Optimizer<br />
    * Browser HOM Manager<br />
    * Automatic/manual removal<br />
    * Back-up registry<br />
    * Checks Invalid User Software Settings<br />
    * Checks Invalid System Software Settings<br />
    * Checks Invalid Application Paths<br />
    * Checks Recently Used Files<br />
    * Checks Invalid Class Keys<br />
    * Checks Invalid ActiveX, OLE, COM<br />
    * Checks Uninstall Sections<br />
    * Checks Invalid Shared known DLL&#8217;s<br />
    * Checks Invalid Startup Programs<br />
    * Checks Invalid Shortcuts<br />
    * Checks Invalid File Associations<br />
    * Deletes Empty Registry Keys<br />
    * Organizes Windows Startup Items<br />
    * Automatically Updated during the Subscribed Period</p>
<p>Registry cleaning is mostly skipped over by most webmasters which is an easy way to have your vital information and stored files stolen by people who exploit these registry files. On top of that they have amazing customer service and they have a team of testers to keep making their product better, which is kind of rare these days. So over all I would say it is a great product that more should take into consideration when protecting their computers. Here is a link to the product page.<a href="http://5fee3hiy4gisb7bcl3ry5v1y9m.hop.clickbank.net/" target="_top">Click Here!</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Registry tips &amp; tweaks collection]]></title>
<link>http://justablog4u.wordpress.com/2009/06/17/registry-tips-tweaks-collection/</link>
<pubDate>Wed, 17 Jun 2009 04:59:56 +0000</pubDate>
<dc:creator>silamuna</dc:creator>
<guid>http://justablog4u.wordpress.com/2009/06/17/registry-tips-tweaks-collection/</guid>
<description><![CDATA[Download secrets of win xp by Mudasirmnm. A collection of registry tips and tweaks. This file will t]]></description>
<content:encoded><![CDATA[Download secrets of win xp by Mudasirmnm. A collection of registry tips and tweaks. This file will t]]></content:encoded>
</item>
<item>
<title><![CDATA[Speed up shutting down your PC]]></title>
<link>http://computertechno.wordpress.com/2009/06/10/speed-up-shutting-down-your-pc/</link>
<pubDate>Wed, 10 Jun 2009 02:21:40 +0000</pubDate>
<dc:creator>Rohit Bansal</dc:creator>
<guid>http://computertechno.wordpress.com/2009/06/10/speed-up-shutting-down-your-pc/</guid>
<description><![CDATA[Guys, do you feel your computer taking up of your precious time shutting down itself. Well do not wo]]></description>
<content:encoded><![CDATA[Guys, do you feel your computer taking up of your precious time shutting down itself. Well do not wo]]></content:encoded>
</item>
<item>
<title><![CDATA[Add Turn Off, Restart &amp; Log off to My Computer]]></title>
<link>http://justablog4u.wordpress.com/2009/05/01/add-turn-off-restart-log-off-to-my-computer/</link>
<pubDate>Fri, 01 May 2009 08:42:32 +0000</pubDate>
<dc:creator>silamuna</dc:creator>
<guid>http://justablog4u.wordpress.com/2009/05/01/add-turn-off-restart-log-off-to-my-computer/</guid>
<description><![CDATA[This Registry Tweaks will add to My Computer. When you right-click in My Computer icon on Desktop yo]]></description>
<content:encoded><![CDATA[This Registry Tweaks will add to My Computer. When you right-click in My Computer icon on Desktop yo]]></content:encoded>
</item>
<item>
<title><![CDATA[Renaming Recycle Bin]]></title>
<link>http://justablog4u.wordpress.com/2009/04/25/renaming-recycle-bin/</link>
<pubDate>Sat, 25 Apr 2009 10:18:45 +0000</pubDate>
<dc:creator>silamuna</dc:creator>
<guid>http://justablog4u.wordpress.com/2009/04/25/renaming-recycle-bin/</guid>
<description><![CDATA[Hi guys, good day here&#8217;s some registry tweaks. This registry tweak is renaming the Recycle Bin]]></description>
<content:encoded><![CDATA[Hi guys, good day here&#8217;s some registry tweaks. This registry tweak is renaming the Recycle Bin]]></content:encoded>
</item>
<item>
<title><![CDATA[Why You Need A Registry Program ?]]></title>
<link>http://computertechno.wordpress.com/2009/02/04/why-you-need-a-registry-program/</link>
<pubDate>Wed, 04 Feb 2009 17:20:08 +0000</pubDate>
<dc:creator>Rohit Bansal</dc:creator>
<guid>http://computertechno.wordpress.com/2009/02/04/why-you-need-a-registry-program/</guid>
<description><![CDATA[If you want to maintain a healthy and error-free registry, you must posses a registry tool, which ca]]></description>
<content:encoded><![CDATA[If you want to maintain a healthy and error-free registry, you must posses a registry tool, which ca]]></content:encoded>
</item>
<item>
<title><![CDATA[ Add Google as Primary Search ]]></title>
<link>http://computertechno.wordpress.com/2009/01/27/add-google-as-primary-search/</link>
<pubDate>Tue, 27 Jan 2009 02:17:41 +0000</pubDate>
<dc:creator>Rohit Bansal</dc:creator>
<guid>http://computertechno.wordpress.com/2009/01/27/add-google-as-primary-search/</guid>
<description><![CDATA[REGEDIT4 [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main] "Search Page"="http://www.goo]]></description>
<content:encoded><![CDATA[REGEDIT4 [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main] "Search Page"="http://www.goo]]></content:encoded>
</item>
<item>
<title><![CDATA[  Repairs the Icon View]]></title>
<link>http://computertechno.wordpress.com/2009/01/27/repairs-the-icon-view/</link>
<pubDate>Tue, 27 Jan 2009 02:15:43 +0000</pubDate>
<dc:creator>Rohit Bansal</dc:creator>
<guid>http://computertechno.wordpress.com/2009/01/27/repairs-the-icon-view/</guid>
<description><![CDATA[Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Control Panel\desktop\WindowMetrics] "Shell ]]></description>
<content:encoded><![CDATA[Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Control Panel\desktop\WindowMetrics] "Shell ]]></content:encoded>
</item>
<item>
<title><![CDATA[   Increase Folder View Size Limit to 8000]]></title>
<link>http://computertechno.wordpress.com/2009/01/27/increase-folder-view-size-limit-to-8000/</link>
<pubDate>Tue, 27 Jan 2009 02:13:57 +0000</pubDate>
<dc:creator>Rohit Bansal</dc:creator>
<guid>http://computertechno.wordpress.com/2009/01/27/increase-folder-view-size-limit-to-8000/</guid>
<description><![CDATA[Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\BagM]]></description>
<content:encoded><![CDATA[Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\BagM]]></content:encoded>
</item>
<item>
<title><![CDATA[Before Registry Edits]]></title>
<link>http://computertechno.wordpress.com/2009/01/27/before-registry-edits/</link>
<pubDate>Tue, 27 Jan 2009 02:13:03 +0000</pubDate>
<dc:creator>Rohit Bansal</dc:creator>
<guid>http://computertechno.wordpress.com/2009/01/27/before-registry-edits/</guid>
<description><![CDATA[To use the Regedits: Save the REG File to your hard disk. Double click it and answer yes to the impo]]></description>
<content:encoded><![CDATA[To use the Regedits: Save the REG File to your hard disk. Double click it and answer yes to the impo]]></content:encoded>
</item>
<item>
<title><![CDATA[Recycle as Much as You Want]]></title>
<link>http://computertechno.wordpress.com/2009/01/26/recycle-as-much-as-you-want/</link>
<pubDate>Mon, 26 Jan 2009 00:33:13 +0000</pubDate>
<dc:creator>Rohit Bansal</dc:creator>
<guid>http://computertechno.wordpress.com/2009/01/26/recycle-as-much-as-you-want/</guid>
<description><![CDATA[You can increase and decrease the size of the Recycle Bin. There are some size limitations with Recy]]></description>
<content:encoded><![CDATA[You can increase and decrease the size of the Recycle Bin. There are some size limitations with Recy]]></content:encoded>
</item>
<item>
<title><![CDATA[Prevent Programs From Auto Starting With MSCONFIG ]]></title>
<link>http://computertechno.wordpress.com/2009/01/25/prevent-programs-from-auto-starting-with-msconfig/</link>
<pubDate>Sun, 25 Jan 2009 12:04:02 +0000</pubDate>
<dc:creator>Rohit Bansal</dc:creator>
<guid>http://computertechno.wordpress.com/2009/01/25/prevent-programs-from-auto-starting-with-msconfig/</guid>
<description><![CDATA[This tweak will give you a fairly large performance boost. What most people don&#8217;t know is that]]></description>
<content:encoded><![CDATA[This tweak will give you a fairly large performance boost. What most people don&#8217;t know is that]]></content:encoded>
</item>
<item>
<title><![CDATA[Backup Your Registry ]]></title>
<link>http://computertechno.wordpress.com/2009/01/25/backup-your-registry/</link>
<pubDate>Sun, 25 Jan 2009 11:47:07 +0000</pubDate>
<dc:creator>Rohit Bansal</dc:creator>
<guid>http://computertechno.wordpress.com/2009/01/25/backup-your-registry/</guid>
<description><![CDATA[Creating a Backup of your registry is an essential first step you should be taking prior to doing an]]></description>
<content:encoded><![CDATA[Creating a Backup of your registry is an essential first step you should be taking prior to doing an]]></content:encoded>
</item>
<item>
<title><![CDATA[156 Useful Run Commands ]]></title>
<link>http://computertechno.wordpress.com/2009/01/25/156-useful-run-commands/</link>
<pubDate>Sun, 25 Jan 2009 02:05:56 +0000</pubDate>
<dc:creator>Rohit Bansal</dc:creator>
<guid>http://computertechno.wordpress.com/2009/01/25/156-useful-run-commands/</guid>
<description><![CDATA[To Access…. Run Command Accessibility Controls access.cpl Accessibility Wizard accwiz Add Hardware W]]></description>
<content:encoded><![CDATA[To Access…. Run Command Accessibility Controls access.cpl Accessibility Wizard accwiz Add Hardware W]]></content:encoded>
</item>
<item>
<title><![CDATA[Customize The Title Text for Internet Explorer ]]></title>
<link>http://computertechno.wordpress.com/2009/01/25/customize-the-title-text-for-internet-explorer/</link>
<pubDate>Sun, 25 Jan 2009 01:59:11 +0000</pubDate>
<dc:creator>Rohit Bansal</dc:creator>
<guid>http://computertechno.wordpress.com/2009/01/25/customize-the-title-text-for-internet-explorer/</guid>
<description><![CDATA[Want to add a personal touch to your browser? This guide will show you how to change the default tex]]></description>
<content:encoded><![CDATA[Want to add a personal touch to your browser? This guide will show you how to change the default tex]]></content:encoded>
</item>

</channel>
</rss>
