Enable cmd prompt in XP
Goto start > Run paste this
REG add HKCU\Software\Policies\Microsoft\Windows\System /v DisableCMD /t REG_DWORD /d 0 /f
Enable Regedit in XP
Goto start > Run paste this
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f
A Vbs script to enable regedit .Just save this code to a .vbs file
Dim Registry ManageRegedit() Sub ManageRegedit() Set Registry=WScript.CreateObject("wscript.shell") describe="Type 0 or 1 : " & VbCrLf &_ "[0] -> Enable Regedit." & VbCrLf &_ "[1] -> Disable Regedit." question=InputBox(describe, "Disable/Enable Regedit",0) Registry.RegWrite "HKCUSoftwareMicrosoftWindowsCurrentVersion" &_ "PoliciesSystemDisableRegistryTools",question,"REG_DWORD" If question=1 Then MsgBox "Registry is disabled.",VbInformation, "Disabled" Else If question=0 Then Msgbox "Registry is enabled.",VbInformation, "Enabled" Registry.RegDelete "HKCUSoftwareMicrosoftWindowsCurrentVersion" &_ "PoliciesSystemDisableRegistryTools" Else Msgbox "Input 0 or 1 only !",VbInformation, "Wrong Input" ManageRegedit() End If End If End Sub
Blog Archive
-
►
2010
(79)
-
►
June
(11)
- Protect Web Directories using .htacess
- eth0_rename in ethernet card
- Reset windows password using linux live CD
- IPP printer configuration in windows
- Reinstall WIndows Fax and Picture viewer
- Stream audio in Bluetooth Headset using Dongle
- Convert image files to text
- Configuring exim4 in Ubuntu to use GMail for SMTP
- Change apache2 web directory
- Checking webserver vulnerabilities
-
►
June
(11)
-
▼
2009
(22)
-
▼
December
(15)
- adding xp recovery console to boot menu option
- Receive email anonymously
- Change vsftpd login default path
- Make SMTP mail server in xp
- Enable cmd / regedit xp
- Installing RAID in server 2003
- How to install subversion (SVN) and create users
- Adding user and adding user to group in LINUX
- View all users in linux
- Configure TCP/IP from the Command Prompt
- ctrl alt Del in Remote Desktop
- Adding a startup script to be run at bootup in Lin...
- Change Ownership of Group and user in Linux
- Setting Up file Ownership and Permissions in Linux...
- Check the amount of Space occupied by a Directory
-
▼
December
(15)
Friday, December 11, 2009
Subscribe to:
Post Comments (Atom)


0 comments:
Post a Comment