Copy the following code,paste in any notepad and save as "regtools.vbs" file. Just double click it and you will get yor regedit enabled.Code goes here.......
--------------------------------------------------------------------------------------------------
'Enable/Disable Registry Editing tools
'© Doug Knox - rev 12/06/99
Option Explicit
'Declare variables
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
Dim enab, disab, jobfunc, itemtype
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\"
p = p & "DisableRegistryTools"
itemtype = "REG_DWORD"
mustboot = "Log off and back on, or restart your pc to" & vbCR & "effect the changes"
enab = "ENABLED"
disab = "DISABLED"
jobfunc = "Registry Editing Tools are now "
'This section tries to read the registry key value. If not present an
'error is generated. Normal error return should be 0 if value is
'present
t = "Confirmation"
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number
if errnum <> 0 then
'Create the registry key value for DisableRegistryTools with value 0
WSHShell.RegWrite p, 0, itemtype
End If
'If the key is present, or was created, it is toggled
'Confirmations can be disabled by commenting out
'the two MyBox lines below
If n = 0 Then
n = 1
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & disab & vbCR & mustboot, 4096, t)
ElseIf n = 1 then
n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & enab & vbCR & mustboot, 4096, t)
End If
Wednesday, September 10, 2008
REGEDIT Disabled by administrator
Subscribe to:
Post Comments (Atom)
Slect ur trick
- 16 Coolest Firefox Tricks (1)
- Accessibility keyboard shortcuts (1)
- Add "copy to" and "move to" options in right click (1)
- ADD FOLDER TO "SEND TO" MENU (1)
- Add sound to almost every event in Windows (1)
- Adware.. etc.. (1)
- Amazing.... A MUST TRY (1)
- Automate Installation of XP (1)
- Automatically close non-responsive programs (1)
- Automatically run programs when starting Windows (1)
- Block websites without any software (1)
- changing the DOS background colour (1)
- Chat with your friends through ms dos (1)
- Convert a FAT Partition to the NTFS File System (1)
- Convert FAT16 to FAT32 (1)
- Creating Shutdown Icon or One Click Shutdown (1)
- Dialog box keyboard shortcuts (1)
- Difference between Virus (1)
- Different ways to shutdown ur pc (1)
- Disable error reporting (1)
- Don’t Ignore the Windows Logo Key (1)
- FIND ANY SERIAL AND CRACK URSELF (1)
- Find ip of yahoo mail sender (1)
- Find the ip in gmail (1)
- FireFox Shortcuts (1)
- Folder Lock without Software (1)
- Forgot BIOS password... (1)
- Function keys ( Excel) (1)
- Hiding Your Computer From Other Systems in the Same Network (1)
- hotmail (1)
- How to fix corrupted windows files in XP (1)
- how to make windows XP live cd (1)
- IMPROVE XP SHUTDOWN SPEED (1)
- Increase Menu Display Speed (1)
- Increasing Band-Width By 20% (1)
- key board shortcuts (1)
- Let Your KeyBoard Do Disco (1)
- List of Windows XP Hidden Applications (1)
- Make any folder invisible with password (1)
- Make Internet Explorer faster (1)
- MAKE MATRIX IMAGE (1)
- Make Ur Firefox 10x faster (1)
- Microsoft natural keyboard shortcuts (1)
- MS excel shortcuts (1)
- MS WORD SHORTCUTS (1)
- OPEN CD ROM PRANK (1)
- Printing the BIOS Screen (1)
- Protect Urself (1)
- Protection on system files (1)
- Recover the lost administrators password in Windows (1)
- REGEDIT Disabled by administrator (1)
- Removing the Shortcut Icon Arrows (1)
- Shake your......... Browser (tried in IE) (1)
- Skip OS selection on BOOT (1)
- Speed up ur browsing of Windows 2000 and XP machines (1)
- Spyware (1)
- To Delete A File Which Cannot Be Deleted (1)
- Top 20 Tips To Keep Your System Faster (1)
- Trick to show your name in taskbar (1)
- Trick to speed up XP (1)
- Turn off CAPS LOCK (1)
- Turn Your Pc On in 10 Seconds (1)
- Uninstall Fedora Linux from Windows Multi-Boot PC (1)
- Uninstalling Windows from Command Prompt (1)
- Use pc as an alarm (1)
- Use system restore when u cannot boot your system (1)
- what Did He Do? (1)
- Who Used Your Pc In Your Absence (1)
- yahoo. (1)
- You can put shortcuts for shortcuts (1)
No comments:
Post a Comment