PDA

View Full Version : Windows Registry problem..........


uchiha.sasuke
15-02-2007, 10:09 PM
I have disabled my registry by making this file:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\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
15-02-2007, 10:18 PM
Use either of them

http://www.dougknox.com/security/scripts_desc/regtools.htm

OR

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

Vishal Gupta
15-02-2007, 10:28 PM
Why not go thru this:

http://www.thinkdigit.com/forum/showthread.php?t=43523

47shailesh
15-02-2007, 10:35 PM
neways crux is:


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

NIGHTMARE
15-02-2007, 10:45 PM
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

uchiha.sasuke
15-02-2007, 10:45 PM
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
15-02-2007, 10:50 PM
Dude in

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

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

uchiha.sasuke
15-02-2007, 10:57 PM
@47shailesh

thanx dude..........sorry i did't figured it out..........

47shailesh
15-02-2007, 11:00 PM
^^ Ur welcome my friend

Arsenal_Gunners
15-02-2007, 11:00 PM
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f
Lol why there is a space in policies.:D

47shailesh
15-02-2007, 11:05 PM
@vimal_mehrotra every time i copy paste it... it automatically generates a space in between :(

Vishal Gupta
15-02-2007, 11:07 PM
If u'll use [Code] tag, then it'll not insert spaces, like this:

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

uchiha.sasuke
15-02-2007, 11:15 PM
what does /v parameter signify here???

Vishal Gupta
15-02-2007, 11:19 PM
/v stands for "Value name" which will be added in the mentioned key. ;)

uchiha.sasuke
23-02-2007, 08:52 PM
@vishal gupta

thanx dude...