Windows Registry problem..........

Status
Not open for further replies.

uchiha.sasuke

Journeyman
I have disabled my registry by making this file:

Windows Registry Editor Version 5.00

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

So now, how to enable it again,as when I put value 1 here and click on it ......it doesn't work as my registry is already disabled......
 

47shailesh

Security Exp
Use either of them

*www.dougknox.com/security/scripts_desc/regtools.htm

OR

*www.symantec.com/security_response/writeup.jsp?docid=2004-050614-0532-99
__________
__________
in run prompt add :
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f
 
Last edited:

47shailesh

Security Exp
neways crux is:

Code:
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f
 

NIGHTMARE

ANGEL OF DEATH
my restart option is not working properly after saving all setting then monitor appear black screen but when i press restart button from cabinet it working so wat can i do
 
OP
uchiha.sasuke

uchiha.sasuke

Journeyman
I have tried this command line trick but its not working.....is restart is required for it?????

Anyway VbScript is working...thanx 47shailesh for that......but other two r not working...
 

47shailesh

Security Exp
Dude in

REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f

remove space between "poli cies" and use in run window....
 

Arsenal_Gunners

Human Spambot
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f
Lol why there is a space in policies.:D
 

Vishal Gupta

Microsoft MVP
If u'll use
Code:
[/b] tag, then it'll not insert spaces, like this:

[code]REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f
 
Status
Not open for further replies.
Top Bottom