Share via

Remote desktop lock after 60 seconds

Tomasz Głodek 0 Reputation points
2026-01-05T09:17:37.1966667+00:00

Hello, we have some strange problem after upgrade to win 11 24h2. When we connect to remote destop using password everything is ok but when we use first time yubikey it works fine and when we close remote desktop connection using "X" close button and reconnect again then remote desktop is locking every 60 secons. We are obsering this behavior only in office (LAN), when we connect via VPN everything is ok. Can You advise where is the problem ? When we use mstsc/exe with remoteguard switch then everything is ok even in office (LAN)

Windows for business | Windows Server | Directory services | User logon and profiles
0 comments No comments
{count} votes

7 answers

Sort by: Most helpful
  1. VPHAN 25,000 Reputation points Independent Advisor
    2026-01-18T14:37:22.67+00:00

    Hello tom nancy,,

    I'm following up to check if the proposed solutions stabilized your RDP reconnection behavior. To briefly recap, the locking loop is caused by a race condition where the host's Certificate Propagation Service (CertPropSvc) polls the smart card during the session handle re-instantiation, triggering a false "Device Removal" event that activates your security policy. The immediate remediation is to set the CertPropSvc startup type to Disabled on the remote servers. If the issue persists despite that service change, the definitive architectural fix is to standardize the use of the /remoteguard switch, which completely decouples the authentication mechanism from the host's hardware removal policies and eliminates the conflict root cause entirely.

    If the issue has been successfully resolved, please consider accepting the answer as it helps other people sharing the same question benefit too. Thank you!

    VP

    0 comments No comments

  2. VPHAN 25,000 Reputation points Independent Advisor
    2026-01-05T19:36:05.3166667+00:00

    Hi tom nancy,

    The most common culprit for this polling instability is the Certificate Propagation Service on the remote server. This service aggressively attempts to read the smart card upon insertion (or session reconnection) to populate the user's certificate store. In 24H2, this polling can conflict with the RDP redirection driver, causing the "Removal" event to fire.

    Please perform this on the remote host (server):

    Open Services (services.msc) as Administrator.

    Locate Certificate Propagation.

    Stop the service and set its Startup type to Disabled.

    Reconnect via RDP and test the behavior.

    Note: Disabling this service does not prevent Smart Card Logon. It only stops the automatic copying of certificates to the user's personal store, which is rarely critical for the logon session itself.

    If disabling CertPropSvc does not stabilize the legacy redirection, you have identified the ultimate solution yourself: Remote Guard.

    Technically, the "problem" is that Legacy Smart Card Redirection (which sends high-level APDU commands over the network) is becoming deprecated in favor of the Remote Guard model (which processes requests on the client).

    Legacy Mode: The server sees a "Virtual Smart Card." If the network hiccups or the driver resets, the card is "Removed." -> Lock triggers.

    Remote Guard: The server does not "mount" the card. It asks the client to sign a challenge. There is no "Smart Card" device on the server to be "removed." -> Lock policy is never triggered.

    Since your organization has strict security standards, Remote Guard is the superior security choice (it prevents Pass-the-Hash attacks and credential theft). I strongly advise updating your deployment .rdp files or usage procedures to include the /remoteguard switch as the standard for Windows 11 24H2 clients, rather than treating it as a workaround. It is the architectural resolution to the conflict between "Strict Locking Policy" and "RDP Session Handoff."

    VP

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.