Results 1 to 2 of 2

Thread: Super Tweak Reg File for 2k3 and XP

  1. #1
    hiten_from_india Guest

    ThumbsUp Super Tweak Reg File for 2k3 and XP

    Included here is a registry file I've compiled from various sources. I use this reg file after every new install and find it to save massive amounts of time when it comes to tweaking a new installation. Some of the tweaks are based on user prefrence, be sure and go through and read what each tweak does and edit the file as you see fit. If you have any suggestions, changes, or questions please feel free to reply to this tread.

    Code:
    Windows Registry Editor Version 5.00
    
    ;XP and 2k3
    ;This will allow you to autologin.
    ;Replace DefaultUserName value with the Username you want to autologin with.
    ;Replace DefaultPassword value with the password corresponding to the Username specified.
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
    "DefaultUserName"="!!CHANGEME!!"
    "DefaultPassword"="!!CHANGEME!!"
    "AutoAdminLogon"="1"
    
    ;2k3 Only
    ;This gets rid of the shutdown reason dialog.
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Reliability]
    "ShutdownReasonOn"=dword:00000000
    "ShutdownReasonUI"=-
    
    ;2k3 Only?
    ;This will disable Ctrl+Alt+Del when loggin in, unlocking, and resuming from standby.
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system]
    "disablecad"=dword:00000001
    
    ;2k3 Only?
    ;Adds User Accounts applet to Control Panel
    [HKEY_CLASSES_ROOT\CLSID\{98641F47-8C25-4936-BEE4-C2CE1298969D}]
    @="User Accounts"
    "InfoTip"="Starts The Windows 2000 style User Accounts dialog"
    [HKEY_CLASSES_ROOT\CLSID\{98641F47-8C25-4936-BEE4-C2CE1298969D}\DefaultIcon]
    @="%SystemRoot%\System32\netplwiz.dll,0"
    [HKEY_CLASSES_ROOT\CLSID\{98641F47-8C25-4936-BEE4-C2CE1298969D}\Shell]
    [HKEY_CLASSES_ROOT\CLSID\{98641F47-8C25-4936-BEE4-C2CE1298969D}\Shell\Open]
    [HKEY_CLASSES_ROOT\CLSID\{98641F47-8C25-4936-BEE4-C2CE1298969D}\Shell\Open\command]
    @="Control Userpasswords2"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{98641F47-8C25-4936-BEE4-C2CE1298969D}]
    @="Add Userpasswords to Control Panel"
    
    ;XP and 2k3
    ;Win32PrioritySpearation sets the CPU priority.
    ;IRQXPriority: set the number to the IRQ of the system clock, there is some controversy if this actually does anything.
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl]
    "Win32PrioritySeparation"=dword:00000026
    "IRQ8Priority"=dword:00000001
    
    ;XP and 2k3
    ;These settings work best for machines with 512MB+ of RAM.
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
    "DisablePagingExecutive"=dword:00000001
    "LargeSystemCache"=dword:00000001
    "IoPageLockLimit"=dword:00040000
    
    ;XP and 2k3
    ;Changes Windows Prefetch parameters.  Reccomended settings: 2 Boot Files Only, 3 Programs and Boot Files, 5 Improved Program and Boot Files.
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters]
    "EnablePrefetcher"=dword:00000002
    
    ;XP and 2k3
    ;Unload DLLs after they are not being used, saves memory after a program is terminated.
    ;It is not clear which key actually does the trick, so I've included both.
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
    "AlwaysUnloadDLL"="1"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AlwaysUnloadDll]
    @="1"
    
    ;XP and 2k3
    ;Opens 16-bit apps in a seperate memory space, this increases stability when dealing with 16-bit apps.
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WOW]
    "DefaultSeparateVDM"="Yes"
    
    ;XP and 2k3
    ;This allows boot files to be placed optimally on the hard-drive for faster boots.
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction]
    "Enable"="Y"
    
    ;XP and 2k3
    ;These NTFS tweaks improve file system performance.
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
    "NtfsDisable8dot3NameCreation"=dword:00000001
    "NtfsDisableLastAccessUpdate"=dword:00000001
    "Win95TruncatedExtensions"=dword:00000001
    
    ;XP and 2k3
    ;Kills services aftr 5 seconds, if it is hung, instead of default 20.  Faster shutdown.
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]
    "WaitToKillServiceTimeout"="5000"
    
    ;XP and 2k3
    ;Gets rid of Places Bar in Common Dialog Boxes.
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Comdlg32]
    "NoBackButton"=dword:00000001
    "NoPlacesBar"=dword:00000001
    
    ;XP and 2k3
    ;AutoEndTasks, HungAppTimeout, WaitToKillAppTimeout, and ForegroundLockTimeout improve shutdown time or application response if applications are hung.
    ;MenuShowDelay is the time in milliseconds that it takes for a menu to pop out when hovered over.  The default is 400.
    ;PaintDesktopVersion writes the OS version and build info on the bottom right of the desktop.
    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "AutoEndTasks"="1"
    "ForegroundLockTimeout"=dword:00000000
    "HungAppTimeout"="4000"
    "MenuShowDelay"="150"
    "WaitToKillAppTimeout"="5000"
    "PaintDesktopVersion"=dword:00000001
    
    ;XP and 2k3
    ;NoLowDiskSpaceChecks won't check if you are low on diskspace and pop up a balloon telling you.
    ;NoInstrumentation disables windows user tracking.
    ;NoRecentDocsmenu removes the recent documenst from the startmenu.
    ;NoSMHelp removes help from the startmenu.
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "NoLowDiskSpaceChecks"=dword:00000001
    "NoInstrumentation"=dword:00000001
    "NoRecentDocsMenu"=dword:00000001
    "NoSMHelp"=dword:00000001
    
    ;XP and 2k3
    ;DisableThumbnailCache disables thumbnail caching.
    ;EnableBalloonTips disables BalloonTips.
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
    "DisableThumbnailCache"=dword:00000001
    "EnableBalloonTips"=dword:00000000
    
    ;XP and 2k3
    ;Increases the number of concurrent downloads from a site (default 2).
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
    "MaxConnectionsPerServer"=dword:00000010
    "MaxConnectionsPer1_0Server"=dword:00000010
    
    ;XP and 2k3
    ;Removes links folder from favorites.
    ;Delete C:\Documents and Settings\USERNAME\Favorites\Links after applying this tweak.
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar]
    "LinksFolderName"=""
    
    ;XP and 2k3
    ;Removes Recycle Bin from Desktop.
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\NonEnum]
    "{645FF040-5081-101B-9F08-00AA002F954E}"=dword:00000001
    
    ;XP and 2k3
    ;Speeds up viewing of network shares.
    [-HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Current Version\Explorer\RemoteComputer\NameSpace\{D6277990-4C6A-11CF-8D87-00AA0060F5BF}]
    
    ;XP and 2k3
    ;Removes Shared Documents from My Computer
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\DelegateFolders\{59031a47-3f72-44a7-89c5-5595fe6b30ee}]
    
    ;XP and 2k3
    ;Removes Recycle Bin from Desktop.
    ;[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{645FF040-5081-101B-9F08-00AA002F954E}]
    
    ;XP and 2k3
    ;Speeds up access to AVI files.
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{87D62D94-71B3-4b9a-9489-5FE6850DC73E}\InProcServer32]
    
    ;XP and 2k3
    ;Removes Briefcase, Document, and Rich-Text-Document from New Menu.
    [-HKEY_CLASSES_ROOT\.bfc\ShellNew]
    [-HKEY_CLASSES_ROOT\.doc\ShellNew]
    [-HKEY_CLASSES_ROOT\.rtf\ShellNew]
    
    ;XP and 2k3
    ;Removes shortcut arrow.
    [HKEY_CLASSES_ROOT\lnkfile]
    "IsShortcut"=-
    [HKEY_CLASSES_ROOT\piffile]
    "IsShortcut"=-

  2. #2
    Join Date
    Jan 2004
    Location
    /dev/null
    Posts
    85
    What are you upto man? so many threads. cant they be added to dexter's Super XP reg thread?

    Fully Tweak and config your XP in just a single click!

    I am going to merge all of yer posts

    Stop spamming at once.

Similar Threads

  1. Replies: 5
    Last Post: 27-05-2011, 10:51 AM
  2. Super Tofu Boy imitated Super Meat Boy
    By Menominee in forum Video Games
    Replies: 5
    Last Post: 04-12-2010, 07:35 AM
  3. Replies: 2
    Last Post: 23-03-2009, 05:44 AM
  4. compiler is giving an error "Super::Super'
    By Zulfi in forum Software Development
    Replies: 1
    Last Post: 25-10-2008, 02:53 PM
  5. Super Talent launches new super fast SATA-II SSDs
    By MattyBoy in forum Hardware Peripherals
    Replies: 2
    Last Post: 17-09-2008, 03:01 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,711,613,859.42371 seconds with 17 queries