How to Enable Regedit
Using Run
-
How to Enable Regedit Picture 1
Open StartHow to Enable Regedit Picture 2
-
How to Enable Regedit Picture 3
Type run into Start. This will search your computer for the "Run" app. -
How to Enable Regedit Picture 4
Click Run. It's at the top of the Start window. Run will open.- If you're on a computer where Run is disabled, you won't be able to open Run.
-
How to Enable Regedit Picture 5
Type regedit into Run. This is the command to open the Registry Editor. -
How to Enable Regedit Picture 6
Click OK. Doing so will run the Registry Editor open command. If the Registry Editor prompts you for permission and then opens when you click Yes, your problem is fixed.- If the Registry Editor doesn't open, you'll need to try another method in this article.
- If you receive a pop-up window that says "Registry editing has been disabled by your administrator", you'll need to edit your Group Policy settings. This will only work if you control the Group Policy Editor on your network.
Running a Security Scan
-
How to Enable Regedit Picture 7
Disable any third-party antivirus programs. Third-party antivirus programs—that is, any antivirus program that isn't Windows Defender—can cause several different problems with your computer. Because of this, disable all antivirus protection that isn't Windows Defender before continuing. -
How to Enable Regedit Picture 8
Open StartHow to Enable Regedit Picture 9
-
How to Enable Regedit Picture 10
Type windows defender security center into Start. This will search your computer for the Windows Defender application.- On some versions of Windows, this may show up simply as Windows Defender instead.
-
How to Enable Regedit Picture 11
Click Windows Defender Security Center. It's a white shield on a grey background. You'll see it at the top of the Start window. -
How to Enable Regedit Picture 12
Click the shield icon. This icon is in the upper-left corner of the Windows Defender page.- When expanded, this option is called Virus & threat protection.
-
How to Enable Regedit Picture 13
Click Advanced scan. It's a link below the Quick scan button in the middle of the page.- On some versions of Windows Defender, click the Home tab instead as there is no Advanced Scan section.
-
How to Enable Regedit Picture 14
Make sure "Full scan" is checked. Click the circle to the left of "Full scan" at the top of the page if it isn't already filled in. -
How to Enable Regedit Picture 15
Click Scan now. It's in the middle of the page. Windows Defender will start scanning your computer for malicious software that might be preventing Registry access. -
How to Enable Regedit Picture 16
Wait for the scan to complete. If anything malicious turns up during the scan, Windows Defender will alert you and give you the option of removing the dangerous items.- If this scan doesn't find anything, repeat the scan with "Windows Defender Offline scan" checked instead of "Full scan" checked.
-
How to Enable Regedit Picture 17
Try to open Registry Editor. Once the scan completes, open Start, type in regedit, and press ↵ Enter. If the Registry Editor still doesn't open, you'll need to try a different method.- You may need to restart your computer before you can access Registry Editor after the scan.
Using Command Prompt
-
How to Enable Regedit Picture 18
Open StartHow to Enable Regedit Picture 19
-
How to Enable Regedit Picture 20
Type command prompt into Start. This will bring up the Command Prompt icon in the Start menu. -
How to Enable Regedit Picture 21
Right-clickHow to Enable Regedit Picture 22
- If your trackpad doesn't have a right mouse button, use two fingers to tap the trackpad instead.
-
How to Enable Regedit Picture 23
Click Run as administrator. It's an option in the drop-down menu.- If you aren't an administrator on this computer, you won't be able to complete this method.
-
How to Enable Regedit Picture 24
Click Yes when prompted. Doing so will open Command Prompt in Administrator mode. -
How to Enable Regedit Picture 25
Enter the Registry refresh command. Type reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem" /t Reg_dword /v DisableRegistryTools /f /d 0 into Command Prompt, then press ↵ Enter. -
How to Enable Regedit Picture 26
Close Command Prompt. Your command should have re-enabled the Registry Editor. -
How to Enable Regedit Picture 27
Try to open Registry Editor. Open Start, type in regedit, and press ↵ Enter. If the Registry Editor doesn't open, proceed to the next step. -
How to Enable Regedit Picture 28
Restart your computer. Open Start, click the Power iconHow to Enable Regedit Picture 29
- If Registry Editor still won't open, you may be able to use a script to force it to open.
Using Group Policy Editor
-
How to Enable Regedit Picture 30
Open StartHow to Enable Regedit Picture 31
-
How to Enable Regedit Picture 32
Type group policy editor into Start. This will search your computer for the Group Policy Editor program. -
How to Enable Regedit Picture 33
Click the Group Policy Editor icon. It's at the top of the Start menu. Group Policy Editor will open.- On some versions of Windows it may read Edit group policy instead.
-
How to Enable Regedit Picture 34
Double-click User Configuration. Doing so will expand this item to display the folders below it.- Skip this step if User Configuration is already expanded.
- If you don't see this option, first double-click the Local Computer Policy item at the top of the sidebar.
-
How to Enable Regedit Picture 35
Click Administrative Templates. This folder is near the bottom of the User Configuration list of folders. -
How to Enable Regedit Picture 36
Double-click the System folder. It's on the right side of the Group Policy Editor window. -
How to Enable Regedit Picture 37
Double-click Prevent access to registry editing tools. You'll find this item on the right side of the window.- You may have to scroll down to find it.
-
How to Enable Regedit Picture 38
Check the "Not Configured" box. It's in the upper-left side of the pop-up window. -
How to Enable Regedit Picture 39
Click Apply, then click OK. These are both at the bottom of the window. Doing so should re-enable Registry Editor on your computer. -
How to Enable Regedit Picture 40
Try to open Registry Editor. Open Start, type in regedit, and press ↵ Enter. If Registry Editor opens, you have successfully bypassed the Group Policy Editor restrictions.
Using a Virtual Basic Script
-
How to Enable Regedit Picture 41
Open a new Notepad document. Open Start, type notepad in, and click the blue Notepad app. This will open a new Notepad document. -
How to Enable Regedit Picture 42
Copy the following code into the Notepad document:Option Explicit
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
Dim enab, disab, jobfunc, itemtype
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem"
p = p & "DisableRegistryTools"
itemtype = "REG_DWORD"
mustboot = "Log off and back on, or restart your pc to" & vbCR & "effect the changes"
enab = "ENABLED"
disab = "DISABLED"
jobfunc = "Registry Editing Tools are now "
t = "Confirmation"
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number
if errnum <> 0 then
WSHShell.RegWrite p, 0, itemtype
End If
If n = 0 Then
n = 1
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & disab & vbCR & mustboot, 4096, t)
ElseIf n = 1 then
n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & enab & vbCR & mustboot, 4096, t)
End If -
How to Enable Regedit Picture 43
Click File. It's in the top-left side of the Notepad window. -
How to Enable Regedit Picture 44
Click Save As…. This option is near the top of the File drop-down menu. -
How to Enable Regedit Picture 45
Select a save location. Click the Desktop folder on the left side of the Save As window. -
How to Enable Regedit Picture 46
EnterRegistry Editor.vbs
as the file name. Do this in the "File name:" field. -
How to Enable Regedit Picture 47
Select a file type. Click the drop-down box next to "Save as type:", then click All Files. This will save your document in the correct file format. -
How to Enable Regedit Picture 48
Click Save. It's in the bottom-right corner of the Save As window. This will create your file. -
How to Enable Regedit Picture 49
Close Notepad. Click the X in the top-right corner of Notepad to do so. -
How to Enable Regedit Picture 50
Double-click the VBS file. Doing so will prompt the script to run.- This script will switch the registry editor's disabled/enabled setting. Do not run it a second time, or the registry editor will be disabled again.
-
How to Enable Regedit Picture 51
Try to open Registry Editor. Open Start, type in regedit, and press ↵ Enter. If the Registry Editor still won't open, you may need to take your computer into a tech department to have a professional look at it.
You should read it
- Block access to Registry Editor on Windows 10/8/7
- How to open the Registry Editor on Windows
- How to Use Regedit
- 50 Registry tricks to help you become a true Windows 7 / Vista 'hacker' (Part 3)
- Microsoft adds the address bar to the Registry Editor
- How to Get Into a Computer Registry
- How to Make and Restore a Backup of the Windows Registry
- How to Edit the Windows Registry
- Use the .reg file to configure the Registry in WinXP
- How to Open Regedit
- How to Block an Application or .EXE from Running in Windows
- Learn about the Windows Registry - Part I