Manual Registry Repair For Windows XP

Manual Registry Repair For Windows XP

To use the Regedits : Save the REG file on your hard drive. Double click it and answer yes to the import prompt. REG files can be viewed in Notepad by right-clicking on the file and selecting Edit.


To use the files VBS : Download. Vbs file and save it to your hard drive (you may want to do right click and use Save Target As). Double click the vbs file. You will be prompted when the script is done.


NOTE : If your anti-virus software that warns of a "malicious" script, this is normal if you have "security scripting" or similar enabled technology. These scripts are not malicious, but it does make changes to the system registry.

Disable or Enable Registry Editing Tools .reg


Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableRegistryTools"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"**.del.DisableRegistryTools"=-

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\LocalUser\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableRegistryTools"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\LocalUser\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"**del.DisableRegistryTools"=-

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoSaveSettings"=dword:00000000


Enable or Disable Screen Saver ( Save As To .vbs )

Dim WSHShell, RegKey, ScreenSaver, Result
Set WSHShell = CreateObject("WScript.Shell")
RegKey = "HKCU\Control Panel\Desktop\"
ScreenSaver = WSHShell ( Save As To .reg )Read (regkey & "ScreenSaveActive")
If ScreenSaver = 1 Then 'Screen Saver is Enabled
Result = MsgBox("Your screen saver is currently active." & _
vbNewLine & "Would you like to disable it?", 36)
If Result = 6 Then 'clicked yes
WSHShell ( Save As To .reg )Write regkey & "ScreenSaveActive", 0
End If
Else 'Screen Saver is Disabled
Result = MsgBox("Your screen saver is currently disabled." & _
vbNewLine & "Would you like to enable it?", 36)
If Result = 6 Then 'clicked yes
WSHShell ( Save As To .reg )Write regkey & "ScreenSaveActive", 1
End If
End If


Enable_DragDrop ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"Start_EnableDragDrop"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoChangeStartMenu"=dword:00000000


Enable_Installer ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\.exe]
"Content Type"="application/x-msdownload"

[HKEY_CLASSES_ROOT\.exe\PersistentHandler]
"{098f2470-bae0-11cd-b579-08002b30bfeb}"


Enable_Fix-exe-XP ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\.exe]
@="exefile"
"Content Type"="application/x-msdownload"

[HKEY_CLASSES_ROOT\.exe\PersistentHandler]
@="{098f2470-bae0-11cd-b579-08002b30bfeb}"

[HKEY_CLASSES_ROOT\exefile]
@="Application"
"EditFlags"=hex:38,07,00,00
"TileInfo"="prop:FileDescription;Company;FileVersion"
"InfoTip"="prop:FileDescription;Company;FileVersion;Create;Size"

[HKEY_CLASSES_ROOT\exefile\DefaultIcon]
@="%1"

[HKEY_CLASSES_ROOT\exefile\shell]

[HKEY_CLASSES_ROOT\exefile\shell\open]
"EditFlags"=hex:00,00,00,00

[HKEY_CLASSES_ROOT\exefile\shell\open\command]
@="\"%1\" %*"

[HKEY_CLASSES_ROOT\exefile\shell\runas]

[HKEY_CLASSES_ROOT\exefile\shell\runas\command]
@="\"%1\" %*"

[HKEY_CLASSES_ROOT\exefile\shellex]

[HKEY_CLASSES_ROOT\exefile\shellex\DropHandler]
@="{86C86720-42A0-1069-A2E8-08002B30309D}"

[HKEY_CLASSES_ROOT\exefile\shellex\PropertySheetHandlers]

[HKEY_CLASSES_ROOT\exefile\shellex\PropertySheetHandlers\PEAnalyser]
@="{09A63660-16F9-11d0-B1DF-004F56001CA7}"

[HKEY_CLASSES_ROOT\exefile\shellex\PropertySheetHandlers\PifProps]
@="{86F19A00-42A0-1069-A2E9-08002B30309D}"

[HKEY_CLASSES_ROOT\exefile\shellex\PropertySheetHandlers\ShimLayer Property Page]
@="{513D916F-2A8E-4F51-AEAB-0CBC76FB1AF8}"


Enable_Flash_IE ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\CLSID\{D27CDB6E-AE6D-11cf-96B8-444553540000}\MiscStatus\1]
@="131473"


Enable_Folder and Icon Refresh ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Update]
"UpdateMode"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"NoNetCrawling"=dword:00000000


Enable_FolderOptions ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoFolderOptions"=dword:0000000

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoFolderOptions"=dword:0000000


Enable_Right_Click ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer]
"NoViewContextMenu"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoViewContextMenu"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoSetTaskbar"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoSaveSettings"=dword:00000000


Enable_Menu+Winlogin ( Save As To .inf )

[Version]
Signature="$Chicago$"
Provider=Vaksincom

[DefaultInstall]
AddReg=UnhookRegKey
DelReg=del

[UnhookRegKey]
HKLM, Software\CLASSES\batfile\shell\open\command,,,"""%1"" %*"
HKLM, Software\CLASSES\comfile\shell\open\command,,,"""%1"" %*"
HKLM, Software\CLASSES\exefile\shell\open\command,,,"""%1"" %*"
HKLM, Software\CLASSES\piffile\shell\open\command,,,"""%1"" %*"
HKLM, Software\CLASSES\regfile\shell\open\command,,,"regedit.exe "%1""
HKLM, Software\CLASSES\scrfile\shell\open\command,,,"""%1"" %*"
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon, Shell,0, "Explorer.exe"
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon, Userinit,0, "C:\WINDOWS\system32\userinit.exe"
HKLM, SYSTEM\ControlSet001\Control\SafeBoot, AlternateShell,0, "cmd.exe"
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot, AlternateShell,0, "cmd.exe"

[del]
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableRegistryTools
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableTaskMgr
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoFind
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoRun
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableCMD
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoFolderOptions
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoClose
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoDesktop
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoDrives
HKCU, Software\Microsoft\Windows\ShellNoRoam\MUICache,C:\WINDOWS\system32\winlogin.exe
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\run
HKCU, Software\Microsoft\Windows\CurrentVersion\RunServices
HKCU, SOFTWARE\Microsoft\Windows\CurrentVersion\RunServicesOnce
HKCU, Software\Microsoft\Windows\CurrentVersion\RunOnce, services
HKCU, Software\Microsoft\Windows\CurrentVersion\RunServices, services
HKCU, Software\Microsoft\Windows\CurrentVersion\RunServicesOnce, services
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\Run, services
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer, NoFind
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer, NoClose
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer, NoDesktop
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer, NoDrives
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer, NoRun
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System, DisableRegistryTools
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System, NoDiskCpl
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\WinOldApp, Disabled
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion,Winlogon
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\RunServices
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\RunServicesOnce
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer,ShowSuperHidden
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer\run
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\policies\explorer,NoFind
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\policies\explorer,NoRun
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\policies\System,DisableRegistryTools
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\policies\System,DisableTaskMgr
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce, services
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx, services
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\RunServices, services
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\RunServicesOnce, services
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer\Run, services
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion, winlogon
HKU, S-1-5-21-1177238915-412668190-839522115-1003\Software\Microsoft\Windows\CurrentVersion\RunServices,services
HKU, S-1-5-21-1177238915-412668190-839522115-1003\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce,services
HKU, S-1-5-21-1177238915-412668190-839522115-1003\Software\Microsoft\Windows\ShellNoRoam\MUICache,C:\WINDOWS\system32\winlogin.exe
HKU, .DEFAULT\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\run
HKU, .DEFAULT\Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableRegistryTools


Enable_MenuSearch ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoShellSearchButton"=dword:00000000


Enable_MyComputer ( Save As To .vbs )

Message = "To work correctly, the script will close" & vbCR
Message = Message & "and restart the Windows Explorer shell." & vbCR
Message = Message & "This will not harm your system." & vbCR & vbCR
Message = Message & "Continue?"
X = MsgBox(Message, vbYesNo, "Notice")
If X = 6 Then
On Error Resume Next
Dim WSHShell, n, MyBox, p, t, errnum, vers
Dim itemtype
Dim enab, disab, jobfunc
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\NonEnum\{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
itemtype = "REG_DWORD"
enab = "ENABLED"
disab = "DISABLED"
jobfunc = "The My Computer icon is now "
t = "Confirmation"
Err.Clear
n = WSHShell ( Save As To .reg )Read (p)
errnum = Err.Number
if errnum <> 0 then
WSHShell ( Save As To .reg )Write p, 0, itemtype
End If
If n = 0 Then
n = 1
WSHShell ( Save As To .reg )Write p, n, itemtype
Mybox = MsgBox(jobfunc & disab & vbCR, 4096, t)
ElseIf n = 1 then
n = 0
WSHShell ( Save As To .reg )Write p, n, itemtype
Mybox = MsgBox(jobfunc & enab & vbCR, 4096, t)
End If
Set WshShell = Nothing
On Error GoTo 0
For Each Process in GetObject("winmgmts:"). _
ExecQuery ("select * from Win32_Process where name='explorer.exe'")
Process.terminate(0)
Next
MsgBox "Finished." & vbcr & vbcr , 4096, "Done"
Else
MsgBox "No changes were made to your system." & vbcr & vbcr, 4096, "User Cancelled"
End If


Enable_SaveMode ( Save As To .inf )

[Version]
Signature="$Chicago$"
Provider=Vaksincom

[DefaultInstall]
AddReg=UnhookRegKey
DelReg=del

[UnhookRegKey]
HKLM, Software\CLASSES\batfile\shell\open\command,,,"""%1"" %*"
HKLM, Software\CLASSES\comfile\shell\open\command,,,"""%1"" %*"
HKLM, Software\CLASSES\exefile\shell\open\command,,,"""%1"" %*"
HKLM, Software\CLASSES\piffile\shell\open\command,,,"""%1"" %*"
HKLM, Software\CLASSES\regfile\shell\open\command,,,"regedit.exe "%1""
HKLM, Software\CLASSES\scrfile\shell\open\command,,,"""%1"" %*"
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon, Shell,0, "Explorer.exe"
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Network\vgasave.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Network\vga.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Network\tdtcp.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Network\tdpipe.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Network\sr.sys,,,FSFilter System Recovery
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Network\sermouse.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Network\rdpwd.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Network\rdpdd.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Network\rdpcdd.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Network\dmiot.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Network\dmboot.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\vgasave.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\vga.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\sr.sys,,,FSFilter System Recovery
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\sermouse.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\dmload.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\dmio.sys,,,Driver
HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\dmboot.sys,,,Driver


Enable_Scroll_Program ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]

"Start_ScrollPrograms"=dword:00000001
"StartMenuScrollPrograms"="NO"


Enable_Search ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoFind"=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoFind"=dword:00000000


Enable_StartMenu ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoSaveSettings"=dword:00000000
"NoChangeStartMenu"=dword:00000000
"NoStartMenuSubFolders"=dword:00000000
"NoStartMenuMFUprogramsList"=dword:00000000
"NoStartMenuMorePrograms"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"Start_EnableDragDrop"=dword:00000001


Enable_TaskMgr-1 ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableTaskMgr"=dword:00000000


Enable_TaskMgr-2 ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableTaskMgr"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\LocalUser\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableTaskMgr"=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system\]
"DisableTaskMgr"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"DisableCAD"=dword:00000000


Enable_USB_PortFix ( Save As To .reg )

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR]
"Type"=dword:00000001
"Start"=dword:00000003
"ErrorControl"=dword:00000001
"ImagePath"=hex(2):53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,44,00,\
52,00,49,00,56,00,45,00,52,00,53,00,5c,00,55,00,53,00,42,00,53,00,54,00,4f,\
00,52,00,2e,00,53,00,59,00,53,00,00,00
"DisplayName"="USB Mass Storage Driver"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR\Security]
"Security"=hex:01,00,14,80,90,00,00,00,9c,00,00,00,14,00,00,00,30,00,00,00,02,\
00,1c,00,01,00,00,00,02,80,14,00,ff,01,0f,00,01,01,00,00,00,00,00,01,00,00,\
00,00,02,00,60,00,04,00,00,00,00,00,14,00,fd,01,02,00,01,01,00,00,00,00,00,\
05,12,00,00,00,00,00,18,00,ff,01,0f,00,01,02,00,00,00,00,00,05,20,00,00,00,\
20,02,00,00,00,00,14,00,8d,01,02,00,01,01,00,00,00,00,00,05,0b,00,00,00,00,\
00,18,00,fd,01,02,00,01,02,00,00,00,00,00,05,20,00,00,00,23,02,00,00,01,01,\
00,00,00,00,00,05,12,00,00,00,01,01,00,00,00,00,00,05,12,00,00,00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR\Enum]
"0"="USB\\Vid_116f&Pid_0005\\20031015193616796"
"Count"=dword:00000001
"NextInstance"=dword:00000001


Enable+Disable Show Hidden Files-Folders ( Save As To .vbs )

Message = "To work correctly, the script will close" & vbCR
Message = Message & "and restart the Windows Explorer shell." & vbCR
Message = Message & "This will not harm your system." & vbCR & vbCR
Message = Message & "Continue?"
X = MsgBox(Message, vbYesNo, "Notice")
If X = 6 Then
On Error Resume Next
On Error Resume Next
Dim WSHShell, n, p, itemtype, MyBox
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden"
itemtype = "REG_DWORD"
n = WSHShell ( Save As To .reg )Read (p)
errnum = Err.Number
if errnum <> 1 then
WSHShell ( Save As To .reg )Write p, 2, itemtype
End If
If n = 2 Then
WshShell ( Save As To .reg )Write p, 1, itemtype
MyBox = MsgBox("Show Hidden Files and Folders are now ENABLED", 64, "Hidden Files and Folders")
End If
If n = 1 Then
WshShell ( Save As To .reg )write p, 2, itemtype
MyBox = MsgBox("Show Hidden Files and Folders are now DISABLED", 64, "Hidden Files and Folders")
End If
Set WshShell = Nothing
On Error GoTo 0
For Each Process in GetObject("winmgmts:"). _
ExecQuery ("select * from Win32_Process where name='explorer.exe'")
Process.terminate(0)
Next
MsgBox "Finished." & vbcr & vbcr , 4096, "Done"
Else
MsgBox "No changes were made to your system." & vbcr & vbcr, 4096, "User Cancelled"
End If


Enable+Disable_WellcomeScreen ( Save As To .vbs )

Dim WSHShell, n, MyBox, p, p1, t, cn, Caption, itemtype, errnum
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList\Administrator"
itemtype = "REG_DWORD"
t= "Choose Accordingly"
On Error Resume Next
n = ws ( Save As To .reg )Read(p)
errnum = Err.Number
If errnum <> 0 then
n = 0
End If
Caption = "1 = Show Administrator on Destop, 0 = Don't Show Administrator on Desktop"
On Error Goto 0
cn = InputBox(Caption, t, n)
If cn <> "" Then
WSHShell ( Save As To .reg )Write p, cn, itemtype
End If
If cn <>"" Then
MyBox = MsgBox("You must Log Off/Log On for the changes to take effect.", vbOKOnly,"Done")
End If
VisitKelly's Korner
Sub VisitKelly's Korner
If MsgBox("This script came from the Tweaks Section of Kelly's Korner" & vbCRLF & vbCRLF & "Would you like to visit Kelly's Web Site now?", vbQuestion + vbYesNo + vbDefaultButton, "Visit Kelly's Korner") =6 Then
wshshell.Run "http://www.kellys-korner-xp.com/xp_tweaks.htm"
End If
End Sub



Source : http://dhuwuh.blogspot.com/2008/12/manual-registry-repair-for-windows-xp.html



Related Posts by Categories :


5 comments:

sallreen said... on December 1, 2008 3:58 PM  

Each and every Windows-based PC has what`s called a Windows registry. Over time, this registry develops errors. No matter how careful you are or what you use your computer for, your computer IS going to develop registry errors if it is running on a Windows operating system. These errors are what cause your computer`s performance and speed to decrease more and more over time.
-----------------
Sally
Promoter

Angela said... on December 1, 2008 4:23 PM  

As registry changes accumulate, there is significant risk of incompatibilities or file corruption. These issues translate into performance problems that typically escalate overtime. To reverse the damage, it is necessary to cleanup registry contents. Most people are not well versed in performing a manual registry fix, but fortunately windows registry repair software automates the process and reverses the damage.
-----------------
Angela
Buy

Anonymous said... on April 18, 2009 10:45 PM  

Recommend Search-and-destroy Antispyware to anyone.
I would like to recommend Search-and-destroy Antispyware to anyone that wants a good scan for their computer. I tired many other scanners in the past but so far I like this one the best. It’s cheaper than many of the others and it cost less. What more can you ask for? The antispyware solution from Search-and-destroy found at http://www.Search-and-destroy.com is a great option whether you use your computer for work or personal use. It will keep it clear and clean of antispyware that bogs down your PC and causes it to be sluggish and annoying.

Anonymous said... on April 19, 2009 4:58 PM  

Clear your computer of all the same bugs.
When you are searching for antispyware there is one that you can always depend on, it’s called Search-and-destroy Antispyware. The antispyware solution from Search-and-destroy can provide you with a scan that can find and clear your computer of all the same bugs that the more expensive scans can a much lower price. You can’t beat that, keep your computer running great for less. Visit their site at http://www.Search-and-destroy.com to download this scan and get all the benefits it has to offer. If you’re like me, it will be the best decision you made in a long time.

Post a Comment

"Using DOFOLLOW System. Pease don`t SPAM!!!"

Thanks To Comment My Articles. God Bless You People.

Add to Technorati Favorites

Technorati Ping To Your Blog
Including Yours E-Mail Address To Subscribe New Tricks