Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Group Policies / Fix: Group Policy Processing Error in Windows

March 17, 2024

Fix: Group Policy Processing Error in Windows

I encountered a strange problem when applying new GPO settings on one of the computers. To diagnose the problem, I updated GPO settings manually using the gpupdate /force command and saw the following error in the console:

Computer policy could not be updated successfully. The following errors were encountered:
The processing of Group Policy failed. Windows could not apply the registry-based policy settings for the Group Policy object LocalGPO. Group Policy settings will not be resolved until this event is resolved. View the event details for more information on the file name and path that caused the failure.

The processing of Group Policy failed - Windows couldn't apply the policy settings for the GPO

At the same time, an event with the EventID 1096 and the same description (The processing of Group Policy failed) appeared in the System event log:

Log Name:     System
Source:       Microsoft-Windows-GroupPolicy
Event ID:     1096
Level:         Error
User:         SYSTEM

If you try to diagnose the GPO applying issue with the gpresult command (gpresult.exe /h c:\tempt\gpresultreport.html ), you can see that only Group Policy Registry settings are not applied (Group Policy Registry — Failed):

Registry failed due to the following error listed below.
Additional information may have been logged. Review the Policy Events tab in the console or the application event log.

Group Policy Registry failed due to the following error listed below.

This means that only Group Policy Objects with CSE (client-side extension) settings that manage registry keys through GPO are not applied to the client computer.

The Registry client-side extension could not read the registry.pol file. Most likely the file is corrupted (we recommend checking the file system for errors using chkdsk). To re-create this file, go to c:\Windows\System32\GroupPolicy\Machine, and rename it to registry.bak.

reset registry.pol file in GPO

You can rename the file from the elevated command prompt:

cd "C:\Windows\System32\GroupPolicy\Machine"
ren registry.pol registry.bak

Update the group policy settings on a computer using the command:

gpupdate /force

Windows will re-create the registry.pol file (local GPO settings will be reset) and successfully apply all GPO settings.

If you see the Event ID 1096 (The processing of Group Policy failed. Windows could not apply the registry-based policy settings for the Group Policy object LDAP://) with the ErrorCode 13 and “The data is invalid” description, this means that the error is related to the domain GPO mentioned in the error details.

Event ID 1096 - The processing of Group Policy failed

Copy the policy GUID and find the GPO name using the PowerShell command below:

Get-GPO -Guid 19022120-0250-407E-EB99-8438B6BB06C7

  1. Open the Domain Group Policy Management console (gpmc.msc) and make sure that the Group Policy object exists;
  2. Check that there are registry.pol and gpt.ini files in the SYSVOL folder on DC and you can read them (check the NTFS permissions);
  3. Make sure that the GPO version is the same on all domain controllers (check that the domain and AD replication work correctly);
  4. Delete GPO files from the SYSVOL folder on your domain controller the client gets GPO from (get your current logonserver: $env:LOGONSERVER) and wait until it is replicated from the neighboring DC;
  5. If the previous methods don’t help, re-create the GPO, or restore it from a backup.
4 comments
6
Facebook Twitter Google + Pinterest
Group PoliciesWindows 10Windows Server 2019
previous post
Configure PowerShell Remoting (WinRM) for Non-Domain (Workgroup) Computers
next post
Disable Web Search Results in Windows 10/11 Start Menu

Related Reading

Fix: Remote Desktop Licensing Mode is not Configured

August 24, 2023

Refresh AD Groups Membership without Reboot/Logoff

March 15, 2024

How to Find the Source of Account Lockouts...

March 12, 2024

How to Delete Old User Profiles in Windows

March 15, 2024

Allow Non-admin Users RDP Access to Windows Server

March 16, 2024

Configuring Windows Firewall Rules Using Group Policy

March 15, 2024

How to Allow Non-Admin User to Start/Stop Service...

March 15, 2024

Copy Files and Folders to User Computers via...

March 15, 2024

4 comments

Aura September 8, 2023 - 1:25 am

What a legend!!!! I was stuck with some devices not enrolling in Intune after we applied the MDM enable policy.
I was resetting the devices initially and now I found out there are 40 devices not enrolled.
I used this guide to fix the GPO issue and the device enrolled instantly.
I will try this on the other devices now.

Reply
Leonardo June 4, 2024 - 5:23 pm

Legend!! Thank you very much. help me alot

Reply
Bouraiss January 22, 2025 - 9:53 am

Thank you so much

Reply
Techuser April 16, 2025 - 12:48 pm

Thank you so much. you help me a lot

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Encrypt Any Client-Server App Traffic on Windows with Stunnel

    June 12, 2025
  • Failed to Open the Group Policy Object on a Computer

    June 2, 2025
  • Remote Desktop Printing with RD Easy Print Redirection

    June 2, 2025
  • Disable the Lock Screen Widgets in Windows 11

    May 26, 2025
  • Configuring Windows Protected Print Mode (WPP)

    May 19, 2025
  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Updating List of Trusted Root Certificates in Windows
  • How to Delete Old User Profiles in Windows
  • Configure Google Chrome Settings with Group Policy
  • Fix: Remote Desktop Licensing Mode is not Configured
  • Allow Non-admin Users RDP Access to Windows Server
  • Configuring FSLogix Profile Containers on Windows Server RDS
  • How to Backup and Copy Local Group Policy Settings to Another Computer
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top