Follow
Windows

How to Reset Local Group Policy in Windows 11

Richard
Written by
Richard
Jul 19, 2021 Updated Apr 28, 2026 3 min read
How to Reset Local Group Policy in Windows 11

This guide shows you how to reset your Windows 11 group policy settings to their original factory defaults. If your computer is acting strange or you want to fix incorrect settings, this process will help you start fresh.

Important Warning Before You Begin

Warning: Resetting your Group Policy settings will remove all custom configurations, including security policies and administrative templates. This action is permanent. We strongly recommend creating a System Restore Point before proceeding to ensure you can revert changes if necessary. This process does not delete your personal files, but it will reset system-wide settings to their factory defaults.

What is the Local Group Policy Editor?

The Local Group Policy Editor (gpedit.msc) is a powerful tool in Windows 11 Pro, Enterprise, and Education editions. It acts as a central control panel for system-wide settings. It manages two main areas: Computer Configuration (settings for the hardware and OS) and User Configuration (settings for your specific account). When these settings become misconfigured, it can lead to system instability or restricted access to features.

Why Reset Group Policy Settings?

You should reset your policies if your computer is acting strangely, if you cannot access certain settings, or if you have accidentally changed a configuration that you cannot undo. Resetting clears out the registry-in-windows-11/" class="sal-link" rel="noopener" target="_blank" data-sal-id="22673">Registry.pol files and folder structures, forcing Windows to rebuild them from scratch.

How to Reset Local Group Policy in Windows 11

⚠️ Admin Privileges Required: You must be logged in as an administrator to perform these steps.

Step 1: Open Command Prompt as Administrator

  1. Click the Start button.
  2. Type cmd in the search box.
  3. Right-click Command Prompt and select Run as administrator.
Windows 11 Command Prompt running with administrator privileges for policy reset

Step 2: Run the Reset Commands

Copy and paste these commands one by one, pressing Enter after each line to ensure the system processes them correctly:

💻Code
RD /S /Q "%windir%\System32\GroupPolicyUsers"
RD /S /Q "%windir%\System32\GroupPolicy"
gpupdate /force

The gpupdate /force command is essential as it forces Windows to refresh all policy settings immediately. After running these, clear the registry keys to ensure no leftover configurations remain:

🗝️Registry
REG DELETE "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies" /f
REG DELETE "HKCU\Software\Policies" /f
REG DELETE "HKLM\Software\Microsoft\Policies" /f
REG DELETE "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies" /f

Step 3: Restart Your Computer

Restarting your PC is required to finalize the reset and allow Windows to generate fresh policy files.

Local Group Policy Editor interface displaying settings in Windows 11

Domain vs. Local Policy

It is important to distinguish between Local Group Policy and Domain-level policy. If your computer is connected to a work or school domain, your settings are managed by a server. In these cases, the dcgpofix tool is used by administrators to restore default domain policies. Note that dcgpofix will fail on a standard Windows 11 machine because it is designed specifically for Domain Controllers. Learn more at the official Microsoft documentation.

Summary

Resetting Group Policy in Windows 11 (23H2/24H2) is a reliable way to fix system instability caused by incorrect configurations. By deleting the GroupPolicy folders and clearing specific registry keys, you return your system to its original state. Always remember to run commands as an administrator and restart your computer to apply the changes.

Can I reset a single specific policy instead of all of them?

No, the standard reset methods are designed to clear all local policies at once. To change a single setting, you must manually navigate to the specific path within the Group Policy Editor and set the status back to ‘Not Configured’ rather than performing a full system reset.

Why does ‘dcgpofix’ fail on my Windows 11 machine?

The dcgpofix command is a server-side tool intended only for Windows Server Domain Controllers. It is not compatible with Windows 11 Home, Pro, or Enterprise editions. If you are not running a domain environment, this command will not function and is not needed for local policy management.

Was this guide helpful?

Tags: #Windows 11
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2474 articles → Twitter

📚 Related Tutorials

Windows 11 Control Panel Shortcuts Guide
Windows Windows 11 Control Panel Shortcuts Guide
How to Access Command Prompt in Windows 11
Windows How to Access Command Prompt in Windows 11
How to Disable Command Prompt in Windows 11
Windows How to Disable Command Prompt in Windows 11
How to Restore Windows 11
Windows How to Restore Windows 11

65 responses to “How to Reset Local Group Policy in Windows 11”

Leave a Reply

Your email address will not be published. Required fields are marked *