Mở/khoá regedit như sau
Có 3 cách :
1. Mở Group Policy
(Start -> Run, gõ gpedit.msc) » User Configuration -> Administrative Templates -> System->Prevent access to registry editing tools Mở khóa này, chọn Disable . Đóng Group Policy.
- Để thay đổi có hiệu lực bạn mở Run và đánh vào dòng lệnh (đánh xong nhớ nhấn Enter nhé )
Code:
gpupdate /force
2. Chỉnh regedit
Để cho phép mở Registry Editor bạn làm như sau :
Mở Notepad và chép đọan mã sau vào
Code:
Windows Registry Editor phiên bản 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System]
"DisableRegistryTools"=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System]
"**.del.DisableRegistryTools"=-
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Group Policy
Objects\LocalUser\Software\Microsoft\Windows\Curre ntVersion\Policies\System]
"DisableRegistryTools"=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Group Policy
Objects\LocalUser\Software\Microsoft\Windows\Curre ntVersion\Policies\System]
"**del.DisableRegistryTools"=-
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\Explorer]
"NoSaveSettings"=dword:00000000
Lưu tập tin này lại và đặt tên là enable_regedit.reg chẳng hạn,khi nào cần bật regedit thì chạy 1 phát.
3. Tạo Script để kích hoạt lại Registry
Dùng Notepad soạn đọan script sau
Code:
Dim objShell
Set objShell = CreateObject("WScript.Shell" )
s1 = "HKEY_USERS\.Default\Software\Microsoft\Windows\Cu rrentVersion\"
s2 = "Policies\System\DisableRegistryTools"
objShell.RegWrite s1+s2,1,"REG_DWORD"
Lưu dưới dạng files *.vbs (vd : enable_registry.vbs) , bỏ vào thư mục Startup (C:\Documents and Settings\All Users\Start Menu\Programs\Startup)
Bỏ vào Startup sẽ có tác dụng windows sẽ tự chạy đoạn Script này mỗi khi được khởi động
Restart để đoạn script có hiệu lực , nếu muốn Enable thì thay DisableRegistryTools bằng EnableRegistryTools
Lấy tự bài viết của cutyhaiduong.
Mở được thì thanks nhá.