Sunday, April 6, 2008

Making Vista faster-Registry Tweaks

There are many things I tried to make vista faster and that i have to notice somehow.


1.
Make a reg file::::::::

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Copy To]
@="{C2FBB630-2971-11D1-A18C-00C04FD75D13}"

[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Move To]
@="{C2FBB631-2971-11D1-A18C-00C04FD75D13}"

[HKEY_CLASSES_ROOT\Drive\shell\cmd]
"Extended"=-

[HKEY_CLASSES_ROOT\Directory\shell\cmd]
"Extended"=-

[HKEY_CURRENT_USER\Software\Microsoft\Notepad]
"StatusBar"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Notepad]
"fWrap"=dword:00000001

[HKEY_CURRENT_USER\Control Panel\Desktop]
"AutoEndTasks"="1"
"HungAppTimeout"="1000"
"MenuShowDelay"="8"
"WaitToKillAppTimeout"="2000"
"LowLevelHooksTimeout"="1000"

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoLowDiskSpaceChecks"=dword:00000001
"ClearRecentDocsOnExit"=dword:00000001
"LinkResolveIgnoreLinkInfo"=dword:00000001
"NoResolveSearch"=dword:00000001
"NoResolveTrack"=dword:00000001
"NoInternetOpenWith"=dword:00000001

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]
"WaitToKillServiceTimeout"="2000"





[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\RemoteComputer]





Other Registry tweaks.
  • Ensure that boot defragmentation is enabled, so that files used during start-up are clubbed together.
Start Regedit. Navigate to HKEY_LOCAL_MACHINE\ \ Microsoft\ Dfrg\ BootOptimizeFunction . Select Enable from the list on the right.
Right Click on it and select Modify. Change the value to Y to enable and N to disable. Reboot.

Disable : "clear page file on shutdown" option, if enabled. Cleaning the page-file on every shutdown means overwriting the data by zeros, and it takes time.
To clear/not clear page file you can apply this reg tweak. Back up registry before trying this. Start > Run > Regedit
GotoHKEY_LOCAL_MACHINE\SYSTEM\ CurrentControlSet\ Control\ Session Manager\ Memory Management
Modify (if not present, rt click in open space and create) the Value Data Type/s and Value Name/s :
Data Type: REG_DWORD [Dword Value]
Value Name: ClearPageFileAtShutdown
Setting for Value Data: [0 = Clear Page File Disabled / 1 = Clear Page File Enabled]
Exit Registry and Reboot.


Adds "Copy To" option in context menu:
[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Copy To]
@="{C2FBB630-2971-11D1-A18C-00C04FD75D13}"

Adds "Move To" option in context menu:
[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Move To]
@="{C2FBB631-2971-11D1-A18C-00C04FD75D13}"

Add "Open Command Window Here" in context menu of folders:
[HKEY_CLASSES_ROOT\Directory\shell\cmd]
"Extended"=-

Add "Open Command Window Here" in context menu of drives:
[HKEY_CLASSES_ROOT\Drive\shell\cmd]
"Extended"=-

Enable Statusbar in Notepad:
[HKEY_CURRENT_USER\Software\Microsoft\Notepad]
"StatusBar"=dword:00000001

Enable "Word Wrap" feature in Notepad:
[HKEY_CURRENT_USER\Software\Microsoft\Notepad]
"fWrap"=dword:00000001

Following tweaks helps in making the shutting down process faster:
[HKEY_CURRENT_USER\Control Panel\Desktop]

Automatically End Task of Hung application:
"AutoEndTasks"="1"

Specify the Response Time for Hung Applications:
"HungAppTimeout"="1000"

Makes the menu opening faster:
"MenuShowDelay"="8"

Specify the time to wait before ending task of hung application:
"WaitToKillAppTimeout"="2000"

Setting a low value (in milliseconds) means that if the hooked program does not respond within timeout period, one that has set the hook would not become unstable or go in infinite wait but would kill itself saving windows resources and improving performance.
"LowLevelHooksTimeout"="1000"

Following tweaks makes system faster:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]

Don't prompt that you are on low disk space:
"NoLowDiskSpaceChecks"=dword:00000001

Clear recent documents/applications history while exiting windows:
"ClearRecentDocsOnExit"=dword:00000001

Disable Automatic Network Shortcut Resolution:
"LinkResolveIgnoreLinkInfo"=dword:00000001

Disable Comprehensive Search for Broken Shortcuts:
"NoResolveSearch"=dword:00000001

Disable Tracking of Broken Shortcut Links:
"NoResolveTrack"=dword:00000001

Doesnt prompt you to search the required application on Internet, when you select "Open With" for opening a file:
"NoInternetOpenWith"=dword:00000001

Speed up shutdown:
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]
"WaitToKillServiceTimeout"="2000"

Speed up Network Browsing by removing Network Scheduled Tasks:
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\RemoteComputer]


0 Responses: