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 :


218 comments:

sallreen said... on December 1, 2008 at 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

Anonymous said... on December 1, 2008 at 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

Narutopedia Express - The Second Generation of Leaf Ninja said... on March 4, 2010 at 3:59 AM  

Exclusive Encyclopedia about everything in naruto anime like character biographies, handseal, jinchuriki, bijuu, akatsuki, hidden village, clan, and other shinobi skills

Mirza said... on March 13, 2010 at 3:21 PM  

i think alternative Manual Registry Repair For Windows XP is good idea but i can'T @_@

Sewa Mobil Bali said... on November 24, 2010 at 5:14 PM  

Dulu saya pakai windows..kerjaan ya crash terus, jadi waktu terbuang percuma, hanya untuk ngurus OS..sekarng saya pidah ke Mac..aman2 saja..enga kena virus...

videoconverter said... on November 30, 2010 at 10:31 AM  

terima kasih untuk berbagi! i think memiliki sedikit rumit.. juga, xp memiliki fungsi perbaikan otomatis nya.

Seo Company said... on February 8, 2011 at 3:40 PM  

Very nice article you have published here. i hope you will continue with this post.

Web development said... on March 15, 2011 at 11:50 AM  

This is really great. Keep it up the good going. Really very great blog this has given me all the information that i needed, good for visiting daily it will increase our knowledge. Best luck for future.

website development said... on March 31, 2011 at 12:01 PM  

Hello.This article was extremely fascinating, especially because I was browsing for thoughts on this topic last week.

pengobatan asam urat said... on May 6, 2011 at 7:24 AM  

keren juga nih infonya ,sangat bermanfaat sekali gan , salam kenal aja gan

Akses Dunia said... on November 1, 2011 at 7:01 PM  

waduh puyeng ane sob liat tutorial. coz ane buta bgt masalah sistem komputer.... pake software bisa khan?

tyan said... on November 28, 2011 at 4:42 PM  

waduuuh, agak pusing juga yah bacanya..
hhehe
tp tetep nice info gan?!

satuwaktu.net said... on January 16, 2012 at 11:08 AM  

mantap banget nih post-nya, tapi gak ngerti ah. Kalo dah error mendingan kasih sama yang ahlinya aja.

google scholar said... on January 22, 2012 at 4:41 PM  

tutorialnya cara Manual Registry Repair For Windows XP tolong di update pakai bahasa dalam negeri mas...

Website Designer said... on February 7, 2012 at 4:25 PM  

The blog contains informational and educational material. The post enhance my thoughts and experience. So nice! Thanks for your info. It's very good.

PSD to HTML said... on February 7, 2012 at 4:29 PM  

I really enjoyed reading this. Thank you for sharing this valuable information with us. I have this site and will be sure to check for updates. Keep up the good work!

Anonymous said... on February 24, 2012 at 6:45 PM  

This is first time seeing this website I really got many information from this site.
Domain register

mau make up said... on February 26, 2012 at 11:50 PM  

kadang perbaikan pada komputer sendiri tipsnya lebih baik nyari di internet dari pada ke teknisi Thanks

obat stroke said... on June 25, 2012 at 9:25 AM  

sangat bermanfaat gan ane suka sekali dengan info nya... hehehe smoga saya bisa berkunjung kembali ya

obat alami jantung bengkak said... on June 29, 2012 at 1:25 PM  

Maafkan kesalahan masa lalu, jangan sesali. Kemudian tegaslah membebaskan diri untuk hidup seutuhnya sekarang, dan dimasa depan.

obat hipertensi said... on June 29, 2012 at 1:25 PM  

Jangan melihat masa lalu lebih baik dari saat ini, karena hanya buatmu sulit temukan bahagia tuk dirimu sendiri. Just Be Happy!

Obat Kanker Payudara Herbal said... on June 29, 2012 at 4:22 PM  

Tertawa membuat sistem imun dalam tubuh meningkat, dan untuk 17 menit tawa, akan memperpanjang hidupmu selama 1 hari.

obat keputihan said... on June 29, 2012 at 4:23 PM  

Jangan pernah biarkan kesedihan di masa lalu membuatmu takut tuk menerima seseorang yg baru. Percayalah kata hatimu.

Obat Vertigo Herbal said... on June 29, 2012 at 8:12 PM  

Jangan pernah berikan harapan jika kamu tak mampu memenuhinya. Lebih baik jujur meski pilu daripada bahagia tapi palsu.

Obat Stroke Alami said... on July 1, 2012 at 9:12 PM  

Kamu akan selalu dapatkan cinta di tengah keluarga, cinta tanpa syarat, cinta yang menerima kamu apa adanya.

cara mengobati demam berdarah said... on July 5, 2012 at 7:43 PM  

wahhhh lumayan g ngerti gan maklum berawal dari keawaman
saya simak dulu y gan

obat infeksi saluran kemih said... on September 14, 2012 at 3:31 PM  

luar biasa bemanfaat infonya yang disajikan blog ini semoga blog ini sukses dengan rank tertinggi, amin

obat penyakit kanker usus said... on November 3, 2012 at 2:21 PM  

mantap gan keren banget blog nya.. ane suka semua isi postingannya. blog ini memang TOP dah...

my inspiration said... on December 6, 2012 at 10:24 PM  

nice article... ;)
please visit my blog http://tutorial-sanasini.blogspot.com/

Unknown said... on December 26, 2012 at 2:08 AM  

what you use your computer for, your computer IS going to develop registry errors if it is running on a Windows operating

Anonymous said... on February 9, 2013 at 1:20 PM  

waduhhhhhhhhhhh tutorialnya sepertinya rumit sekali

Bali Island said... on March 24, 2013 at 5:47 AM  

Thank you friend... this is useful info, this is something I've always wanted to know,

audiobsdserpong said... on April 14, 2013 at 1:51 PM  

kalau melihat code yang begitu rumit,mungkin saya bukan prograner akan cukup sulit memahi,bukan tidak mungkin akan mengalami kegagalan,apa tune up utilities bisa membantu untuk mengatasinya.salam dan terima kasih.

cara memperbesar penis said... on April 5, 2014 at 9:34 PM  

Extender jilq adalah metode yang sudah terbukti ampuh memperbesar penis terbaik !!
tidak hanya mampu membesarkan, tetapi juga mampu memperpanjang dan membuat penis tahan lama ketika berhubungan intim.
Dijamin 100% berhasil !!

info lengkap kunjungi:
www.extenderjilq.com

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