I don't have tools and any program for remove viruse
viruse has disable regiter when I go to run and write regedit show for me message
" regiter editing has been disiabled by your administrator"
How fix this problem??
Thanks
![]() |
I don't have tools and any program for remove viruse
viruse has disable regiter when I go to run and write regedit show for me message
" regiter editing has been disiabled by your administrator"
How fix this problem??
Thanks
First, try this. Below is some text I want you to copy into NOTEPAD and save it with the name EnableRegistryEdit.vbs Make sure it ends with .vbs and not .txt.
'Enable Registry Editing
'© Veegertx - 06/27/2003
'This code may be freely distributed/modified
On Error Resume Next
'Prevents errors from values that don't exist
Set WshShell = WScript.CreateObject("WScript.Shell")
'Delete DisableRegistryTools registry values
WshShell.RegDelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\System\DisableRegistryTools"
WshShell.RegDelete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Po licies\System\DisableRegistryTools"
'display message
Message = "You should have access to Regedit now"
X = MsgBox(Message, vbOKOnly, "Done")
Set WshShell = Nothing
Set fso = Nothing
Now, if this still is not working, you could try an alternate Registry Editor called RegLite you can download from here:
RegLite Download
All times are GMT -7. The time now is 03:37 PM. |