Martin Ritter When you use a shared account to connect to multiple remote PCs, your client machine relies on the internal Windows Web Account Manager and the Azure Active Directory Broker Plugin to issue access tokens for those connections. At exactly the one-hour mark, the first active session's access token expires, prompting Windows to quietly request a renewal in the background. During this renewal process, the authentication broker essentially locks the token state for that specific shared identity to prevent corruption. If you attempt to launch a second parallel session through RDCMan while this background refresh is actively occurring, the broker cannot process the concurrent request for the same identity. The system defaults to rejecting the connection entirely, which visually surfaces to you as a generic password rejection.
This also explains why closing the initial connection resolves the problem. When you close the first session, you forcefully terminate that background renewal lock, which clears the broker's queue and allows fresh access tokens to be successfully generated for your subsequent connections. You can actually verify this internal traffic collision by checking your Event Viewer under Applications and Services Logs, Microsoft, Windows, AAD, and Operational, where you will likely see overlapping token acquisition errors for the shared account during that one-hour mark.
Because this is an inherent concurrency limitation of the Web Account Manager when handling shared identities across multiple sessions, there is no registry key or command-line tool that will override the broker's locking mechanism. The official architectural guidance remains to provision unique, individual accounts for each user requiring remote access. If that is strictly not possible for your business model, you will have to wait for an official Microsoft update that redesigns how the underlying broker queues concurrent token requests for a single identity.
Hope this answer has brought you some useful information. If it did, please hit “accept answer”. Should you have any questions, feel free to leave a comment.
VPHAN