افتح برنامج NotePad
انسخ السكريبت أدناه في الملف .. ثم احفظه بشرط أن يكون الاسم كالتالي
مثلا Registry.vbs
و لا يكون Registry.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\Policies\System\DisableRegistryTools"
WshShell.RegDelete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
'display message
Message = "You should have access to Regedit now"
X = MsgBox(Message, vbOKOnly, "Done")
Set WshShell = Nothing
Set fso = Nothing