HOw To Reset Windows workstation local Group Policy
Resetting Group Policy in Windows 11 can be done using the following steps. This process will revert Group Policy settings to their default state:
1. Reset Group Policy for Local Machine (System-wide)
Using Command Prompt:
- Open Command Prompt as Administrator:
- Press
Win + S, typecmd, right-click, and select Run as Administrator.
- Press
- Run the following commands:
RD /S /Q “%WinDir%\System32\GroupPolicy”
RD /S /Q “%WinDir%\System32\GroupPolicyUsers”
gpupdate /force
-
- The first two commands delete the Group Policy folder where local settings are stored.
- The
gpupdate /forcecommand refreshes Group Policy, applying default settings.
Using PowerShell:
- Open PowerShell as Administrator:
- Press
Win + X, then select Windows Terminal (Admin).
- Press
2. Run the following commands:
Remove-Item -Recurse -Force “$env:WinDir\System32\GroupPolicy”
Remove-Item -Recurse -Force “$env:WinDir\System32\GroupPolicyUsers”
gpupdate /force
2. Reset Individual Group Policy Settings
If you want to reset individual Group Policy settings rather than all, follow these steps:
- Open the Local Group Policy Editor:
- Press
Win + R, typegpedit.msc, and press Enter.
- Press
- Navigate to the specific policy path, such as:
Computer Configuration ? Administrative Templates ?
User Configuration ? Administrative Templates ?
3. Set any modified policies back to Not Configured.
3. Reset Group Policy Registry Keys
Some policies are enforced via the Registry. To reset them:
- Open Registry Editor:
- Press
Win + R, typeregedit, and press Enter.
- Press
- Navigate to the following paths and delete any custom entries:
- For Computer Configuration:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies
For User Configuration:
HKEY_CURRENT_USER\SOFTWARE\Policies
3. Restart the system to apply changes.
4. Verify the Reset
- Open Command Prompt and run:
gpresult /h gp_report.html
2. Open the generated gp_report.html file to confirm all policies are now default.

