Remote Tech Support

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Tuesday, 2 November 2010

10 TOP Registry edits and tweaks for Windows XP

Posted on 01:47 by Unknown
1: Change categories in the Control Panel

Windows XP’s Control Panel is broken down by category in the default Category view, but the group to which an item belongs is not always obvious. If you disagree with Microsoft’s assignments, you can switch them around. To assign a different category to an item, go to:
# HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{305CA226-D286-468e-B848-2B2E8E697B74} 2
Find the item you want to change and double-click it to bring up a dialog box. Change the item’s DWORD value to your preference. Use Table A as a guide (shown with decimal numbers, which is the way you should enter them).

Table A

CategoryDWORD value to set
Other Control Panel Options0
Appearance and Themes1
Printers and Other Hardware2
Network and Internet Connections3
Sounds, Speed, and Audio Devices4
Performance and Maintenance5
Date, Time, Language, and Regional Options6
Accessibility Options7
Add or Remove Programs8
User Accounts9

2: Create a hidden user account

The user accounts you’ve set up appear on the Welcome screen (another new feature in Windows XP) when you start up the PC. To hide one of the user accounts so that it doesn’t appear here, go to:
# HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList
Right-click anywhere within the Registry Window and click New to create a new DWORD value with the name of the account to be hidden. Set the value to 0 (decimal). This account won’t be accessible when switching users with Fast User Switching; you’ll only be able to access it from the Log On To Windows dialog box. Keep in mind that it is not a totally hidden account; the account’s profile will appear in the Documents And Settings folder. Also, the account appears in Local Users And Groups when an administrator is logged on.

3: Prevent programs from loading at startup

Remember back in the good old days of Windows 3.1 when you could open up the Win.ini file in a text editor and remove an item from the RUN= line to disable it from running at startup? With Windows 9x and above, the Win.ini file became less useful because 32-bit programs were set to run at startup from within the Registry instead.
One way to selectively disable programs from loading at startup is to use MSCONFIG (from the Run command) to deselect certain items. Another way to remove them is to edit the Registry directly. Consider the following locations:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Runfor applications that start up for all users
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Runfor applications that start up when the current user logs on
Remove the entry for a program by right-clicking it and selecting Delete to prevent it from loading.

4: Sort menus alphabetically

When you install a new program for a user, it doesn’t find its place in the alphabetical Start menu hierarchy right away; it hangs out at the bottom for a little while. If your users employ the Classic Start menu, they can realphabetize it manually by right-clicking the taskbar and choosing Properties, clicking the Customize button next to the Classic Start Menu, and clicking the Sort button. With the Windows XP style of Start menu, however, you don’t have an equivalent button. To make Windows always alphabetize the list, remove the permissions from the Registry key that controls the sort order for the Start menu. To do so, go to:
# HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder
Choose Edit | Permissions and click the Advanced button. Deselect the Inherit From Parent The Permission Entries That Apply To Child Objects check box and then click Copy when the Security dialog box pops up. Click OK and clear the Full Control entry for your account and all security groups you are a member of. Leave only Read permission.

5: Change the desktop cleanup frequency

Through Display Properties (Desktop tab, Customize Desktop button, General tab), you can turn on and off a feature that runs the Desktop Cleanup Wizard every 60 days. You don’t have an option to set a different interval there, but you can change the interval in the Registry. To do so, go to:
# HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz
Change the Days Between Clean Up Value to some other number of days (in decimal format).

6: Use desktop patterns

Windows XP provides no direct support for the Patterns feature that was present in earlier versions of Windows, but the feature is still there. It’s just hidden in the Registry. To enable a pattern, first set None as the background in Display Properties. Then you need to find out the code for that pattern. To look up a code, go to:
# HKEY_CURRENT_USER\Control Panel\Patterns
A variety of patterns is listed, and each one has a Data value. Copy the value you want to the Clipboard. Then go to:
# HKEY_CURRENT_USER\Control Panel\Desktop
Add a string value called Pattern. Then paste the string from the clipboard in as its value. The new pattern will appear the next time you log on.

7: Delete the Files Stored On This Computer category in the My Computer window

In Windows XP, the My Computer window’s listing is broken down by categories: Hard Disk Drives, Devices With Removable Storage, and so on. One of these categories is Files Stored On This Computer, which appears at the top of the My Computer window. If a user doesn’t need it (and most folks don’t), you can get rid of it. To do so, go to:
# HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\Delegate Folders
Delete the {59031a47-3f72-44a7-89c55595fe6b30ee} subkey to remove the category.

8: Erase the swap file at shutdown

You might be concerned about someone browsing your users’ swap files and gathering up little bits of their sensitive data. A remote possibility, to be sure, but it could happen. For that extra measure of security, go to:
# HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Memory Management
Set the ClearPageFileAtShutdown DWORD to 1. This will make shutdowns take longer, because it overwrites everything in the swap file with zeroes. Don’t turn this feature on unless you have a serious security threat.

9: Adjusting System Restore values

The new System Restore feature in Windows XP automatically backs up a snapshot of your system, including your Registry, every 24 hours. It also saves restore points for 90 days. Neither of these values is directly editable in the System Restore program, but you can change them in the Registry. Go to:
# HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\SystemRestore
You’ll find an assortment of settings here. To change the interval between automatically created restore points, change the RPGlobalInterval setting. To change the number of days that a restore point is retained, change the RPLifeInterval setting.
System Restore time intervals are measured in seconds, not days, so you must convert the number of days you want into seconds. There are 86,400 seconds in a day, so multiply 86,400 by the number of days you want to determine the value. There are 3,600 seconds in an hour.

10: Create a right-click command prompt option

You can right-click a folder to get a list of actions you can apply to it. Here’s a way to create an action on that right-click menu that opens a command prompt window with that folder as the current directory. In a text editor such as Notepad, type the following:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Folder\shell\Cmd Here]@=”Command &Prompt Here”
[HKEY_CLASSES-ROOT\Folder\shell\Cmd Here\command]@=”cmd.exe /k pushd %L”
Save the file with any name you want, with a .reg extension. Then double-click the saved file and choose Yes to merge the file’s information into the Registry. You can delete the file. Right-click any folder and you’ll see the CommandPrompt Here option.

Conclusion

Registry editing doesn’t have to be a dangerous endeavor. With a careful eye to detail, any IT pro can make use of the powerful features included within the Registry. I hope you will use these tips as a guide to build on your own Registry editing skills.
Email ThisBlogThis!Share to XShare to Facebook
Posted in Registry Tips, Registry Tools, Windows Tips | No comments
Newer Post Older Post Home
View mobile version

0 comments:

Post a Comment

Subscribe to: Post Comments (Atom)

Popular Posts

  • Windows Server 2008 Core Command Guide
    Windows Server 2008 Core Command Guide What Command Set DNS IP Netsh int ipv4 set dns “local area connection” stat...
  • USB Disk Security 5.4.0.12
    USB Disk Security -  Download 100% protection against any threats via USB storage USB Disk Security is a top-rated antivirus utility that pr...
  • GDS COMMITTEE IMPLEMENTATION ORDERS RELEASED BY DIRECTORATE TODAY
    GDS COMMITTEE IMPLEMENTATION ORDERS RELEASED BY DIRECTORATE TODAY POSTAL DIRECTORATE ISSUED ORDERS TODAY FOR IMPLEMENTING THE GDS COMMITTEE ...
  • (no title)
    POSTAL RATES INDEX Letters / Book Post Registered Articl...
  • Most Useful Websites
           The list primarily highlights the lesser-known or undiscovered websites and misses out all-time favorites like Google Docs, Wikipedia...
  • Commands in Windows Vista
    Windows Vista Command Line List and Reference The list of commands available in the command line shell for Windows Vista is similar to that ...
  • Save queries in Windows Server 2003's Active Directory Users and Computers tool
    Windows Server 2003 administrators can’t live without the Active Directory Users and Computers tool. Here’s a quick look at the saved querie...
  • PDF into Word ( Document) converter
    PDF into Word ( Document) Converter         PDF2Word(pdf to word) software enable export the text, images and other contents from pdf docume...
  • THIRUKKURAL PDF DOWNLOAD (தமிழ் )
    CLICK HERE TO DOWNLOAD THIRUKKURAL (தமிழ்)    or CLICK HERE TO DOWNLOAD THIRUKKURAL (TAMIL & ENGLISH)    or CLICK HERE TO DOWNLOAD THIR...
  • How to shutdown computer automatically at a specific time
    Trick 1: Start > Run Type ' shutdown -s -t 1800 ' without quotes Click OK A dialog will appear showing the countdown t...

Categories

  • Computer Guidelines
  • Customer Care
  • DB Tools
  • Drivers
  • Entertainments
  • FAQ
  • For System Administrators
  • FTP
  • General Informations
  • General Knowledge
  • Guidelines
  • Hardwares
  • Health Tips
  • Internet Tips
  • Latest Software Updates
  • Network Trouble shooting
  • Printer Trouble shooting
  • Printing Tips
  • Recovery Tips
  • Registry Tips
  • Registry Tools
  • Security Guidelines
  • Security Tips
  • Software Tips
  • Softwares
  • SQL
  • Technology
  • Tips and Tricks
  • Tools
  • Trouble shooting
  • Useful Softwares
  • Utilities
  • Virus Solutions
  • Websites
  • windows 7
  • Windows Server
  • Windows Tips
  • Windows Vista
  • Windows XP FAQ

Blog Archive

  • ►  2011 (138)
    • ►  May (32)
    • ►  April (24)
    • ►  March (29)
    • ►  February (15)
    • ►  January (38)
  • ▼  2010 (241)
    • ►  December (55)
    • ▼  November (40)
      • WebLink Tool
      • Drivers and Product Keys Backup Tools
      • How to Enable Plug and Play detection ( LPT Port )
      • Mobile Number Portability Service to be Launched t...
      • Sripuram Golden Temple situated in Vellore,Tamilna...
      • Google Apps Users Gets More Google Services
      • 20 Things I Learned ( A Good Book by Google)
      • How to use BSNL selfcare portal
      • Add Items, Shortcuts In Right Click Send To Menu
      • How to Speed Up Gmail
      • Microsoft Office Compatibility Pack 2007 & 2010
      • Happiness comes not from being loved, but from loving
      • INFORMATION ABOUT STROKE
      • IMPORTANT GOVERNMENT WEBSITES LINKS
      • IMPORTANT WEBSITES
      • Yoga for you...
      • Latest Softwares & Updates
      • USEFUL SOFTWARES
      • For System Administrators
      • Convert Text To Image With One Click
      • Anti Frustration Software
      • THE TEN PRECAUTIONS FOR CELL PHONE USERS
      • Anti Virus - Kaspersky PURE 9.1.0.124 Final
      • How to Restrict Internet usage in office?
      • USB Disk Security 5.4.0.12
      • Windows XP Utility
      • Windows XP Security Console
      • Yoga the best way to stay fit by Baba Ramdev's Dog...
      • Log In To Yahoo! Messenger With Multi Account With...
      • Frequently Asked Problems with Solutions
      • List of All Kinds of Restrictions for Windows 2000...
      • Mind It When You Place Laptop On Your Knees, Thigh...
      • Story Of Appreciation
      • Tips To Protect Your Orkut Account From Scams
      • Toll Free Numbers in India
      • USB Pendrive / HDD Blocker UBlock v0.3
      • 10 TOP Registry edits and tweaks for Windows XP
      • KODAIKANAL - DINDIGUL DISTRICT, TAMILNADU -624101
      • Try to know about Data Entry Test
      • Important Items
    • ►  October (21)
    • ►  September (35)
    • ►  August (39)
    • ►  July (23)
    • ►  June (5)
    • ►  May (2)
    • ►  April (12)
    • ►  March (4)
    • ►  February (2)
    • ►  January (3)
  • ►  2009 (26)
    • ►  December (5)
    • ►  November (3)
    • ►  October (4)
    • ►  September (5)
    • ►  August (3)
    • ►  July (5)
    • ►  June (1)
Powered by Blogger.

About Me

Unknown
View my complete profile