T The Triage ManualTechnical Guides for IT Emergencies
P3 · Active Directory

GPO Fails to Apply — Broken Netlogon Secure Channel (Machine Account Password Desync) on Windows 10/11

Domain-joined Windows 10/11 workstations stop applying computer and user Group Policy Objects when the Netlogon secure channel between the local machine account password and Active Directory falls out of sync. The desync typically occurs when the workstation is offline during scheduled machine account password roll cycles, causing the DC to reject the workstation's authentication. gpupdate /force returns network connectivity or access denied errors; Test-ComputerSecureChannel returns False. Remediation is Reset-ComputerSecureChannel (non-destructive, ~15 min) or, if that fails, a full domain rejoin (~30–45 min with two reboots).

Indicators

Likely causes

Diagnostic steps

  1. Run gpupdate /force on the affected workstation and document the exact error returned.
    Confirms GPO application is actively failing and characterises the error type (network connectivity vs access denied) to distinguish a secure channel issue from other GPO failure modes such as WMI filter mismatch or link scope.
  2. Open an elevated PowerShell session and run: Test-ComputerSecureChannel
    Directly tests whether the Netlogon secure channel to the AD DC is intact. A return value of False confirms the secure channel is broken and identifies this as the root cause of GPO failure.
  3. Verify network connectivity to the Domain Controller: Test-NetConnection -ComputerName <DCName> -Port 445 and ping <DCName>
    Rules out a pure network connectivity failure before proceeding with secure channel remediation — if port 445 is unreachable, the workstation cannot contact the DC and no secure channel reset will succeed.
  4. Review C:\Windows\debug\netlogon.log on the workstation for authentication failure entries referencing the domain controller name and failure reason.
    Provides additional detail about which DC is being contacted and the specific Netlogon failure mode, and helps distinguish a localised machine password mismatch from a broader Kerberos or DNS resolution issue.
  5. Check the System and Application event logs on the workstation for Netlogon event IDs 5719 and 3210, and Group Policy event IDs in the Microsoft-Windows-GroupPolicy/Operational log, filtered to the time window of reported GPO failures.
    Establishes corroborating evidence and timeline for the secure channel / domain trust failure, and may surface secondary causes (e.g. DNS resolution failure preventing DC contact).

Resolution path

Prevention

Tools

References

Group PolicyGPOActive DirectorySecure ChannelNetlogonMachine AccountDomain TrustWindows 10Windows 11PowerShellgpupdateTest-ComputerSecureChannelReset-ComputerSecureChannelL2L3EnterpriseCompliancePassword Desync