How we solved a critical oversight that locked out every domain user from remote desktop access after a Windows Server migration
Picture this: It's 9:15 AM on a Monday morning. The domain migration from Windows Server 2012 R2 → 2022 → 2025 completed successfully over the weekend. Leadership is celebrating the smooth transition. Then the calls start flooding in:
"I can't remote into my server!"
"RDP is broken!"
"The connection was denied because the user is not authorized for remote login"
Domain group membership ≠ Local group membership
Just because you're a member of DOMAINNAME\Remote Desktop Users
doesn't mean you're automatically a member of the local SERVERNAME\Remote Desktop Users
group on each server.
"Who are you?"
"What can you do HERE?"
Quick resolution for individual servers:
# PowerShell command
Add-LocalGroupMember -Group "Remote Desktop Users" -Member "DOMAINNAME\username"
Or via GUI:
lusrmgr.msc
Scalable fix for all servers:
Create GPO: "Member Server RDP Access"
Domain migrations don't preserve local security configurations
Admin-only testing misses 90% of potential issues
Undocumented configs will cause repeat incidents
Member servers vs DCs have different security models
Get-LocalGroupMember -Group "Remote Desktop Users"
What seemed like a Windows quirk is actually a security feature. By requiring explicit local group membership, Windows ensures that domain compromise doesn't equal total infrastructure access. Yes, it's more work. Yes, it's easy to miss during migrations. But it's also what keeps your infrastructure secure.
The next time you see "The connection was denied because the user is not authorized for remote login," you'll know exactly where to look. More importantly, you'll understand why Windows works this way.
Remember: In Windows security, explicit is better than implicit, and local boundaries matter—even in a domain environment.
Hours to Resolution
Domain Users Affected
Win 2025 Member Servers
Long-term Solution
Root Cause: Local group membership not preserved during migration
Prevention: Updated migration procedures and documentation
Share your migration stories and lessons learned with the IT community.