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 / Windows 11 / Remote Desktop (RDP) Not Working in Windows 11

October 28, 2025

Remote Desktop (RDP) Not Working in Windows 11

I encountered a strange issue where some users who upgraded their computers to Windows 11 25H2 reported that they could not connect to certain remote hosts over Remote Desktop Protocol (RDP).

Users were unable to establish an RDP connection in the following cases:

  • If the account name for the RDP connection contains non-ASCII characters. This issue may occur on localized versions of Windows where the built-in Administrator account has a different name or uses usernames containing non-ASCII characters (for example, Cyrillic, Turkish, etc). In this case, the RDP logon attempt may fail due to an invalid credentials error.
  • When connecting to a remote computer by its IP address. Meanwhile, the connection with the RDP host’s FQDN is established successfully. This clearly shows that connections using NTLM authentication (by IP address) were blocked, while connections using Kerberos authentication (via FQDN) worked without issues
  • Computers are not joined to the same AD forest or are in different workgroups.

We spent considerable time investigating the issue by enabling KDC event logging. We discovered that the problems with RDP connections in Windows 11 are caused by Credential Guard (specifically, Remote Credential Guard). This security feature is designed to protect user credentials. Credential Guard is enabled by default on Windows 11 if the computer’s hardware meets certain requirements (TPM + UEFI + SecureBoot + Virtualization-Based Security).

Credential Guard also prevents passwords for RDP connections from being saved in the Windows Credential Manager.

Check whether Credential Guard is enabled on a Windows 11 device using PowerShell:

(Get-CimInstance -ClassName Win32_DeviceGuard -Namespace root\Microsoft\Windows\DeviceGuard).SecurityServicesRunning

  • 0 – credential protection disabled
  • 1 – Credential Guard enabled

check if credential guard is enabled

If Credential Guard is enabled on a computer without a UEFI Lock mode (protects against making changes to UEFI settings), you can disable this security feature either via GPO or through the registry:

  1. Open the local GPO editor (gpedit.msc) and navigate to Computer Configuration -> Administrative Templates -> System -> Device Guard. Change the value of the Turn on Virtualization Based Security option to Disabled. disable cred guard GPO
  2. Then create two registry items:
    reg add HKLM\SYSTEM\CurrentControlSet\Control\Lsa /f /v LsaCfgFlags /t REG_DWORD /d 0
    reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceGuard /f /v LsaCfgFlags /t REG_DWORD /d 0

If the UEFI lock is enabled, you must first create a temporary boot entry in the BCD to start the computer in a mode that allows Credential Guard and Virtualization-Based Security to be disabled.

copy %WINDIR%\System32\SecConfig.efi X:\EFI\Microsoft\Boot\SecConfig.efi /Y
bcdedit /create {0cb3b571-2f2e-4343-a879-d86a476d7215} /d "DebugTool" /application osloader
bcdedit /set {0cb3b571-2f2e-4343-a879-d86a476d7215} path "\EFI\Microsoft\Boot\SecConfig.efi"
bcdedit /set {bootmgr} bootsequence {0cb3b571-2f2e-4343-a879-d86a476d7215}
bcdedit /set {0cb3b571-2f2e-4343-a879-d86a476d7215} loadoptions DISABLE-LSA-ISO
bcdedit /set {0cb3b571-2f2e-4343-a879-d86a476d7215} device partition=X:
mountvol X: /d

During a Windows boot, a console prompt (Credential Guard Opt-out Tool) will appear asking you to disable Credential Guard. Press F3 to confirm disabling.

disable Credential Guard via UEFI lock mode

Any method of disabling Credential Guard that doesn’t involve changing the UEFI settings won’t be effective because these settings will be automatically reset to their defaults.

After this change, Credential Guard will no longer block NTLM authentication when connecting to a remote computer over RDP.

The inability to connect via RDP for accounts with non-ASCII characters is caused by an ANSI translation bug in Credential Guard, which leads to failed authentication because Credential Guard incorrectly processes usernames containing such characters.

0 comment
0
Facebook Twitter Google + Pinterest
Questions and AnswersWindows 11
previous post
How to Find a Previous Computer Name in Windows

Related Reading

Configuring RemoteApps Hosted on Windows 10/11 (without Windows...

January 25, 2025

Bridging Multiple Network Interfaces on Windows

November 21, 2024

Fix: Windows Update Tab (Button) is Missing from...

December 16, 2024

How to Prefer IPv4 over IPv6 in Windows...

April 15, 2025

How to Detect Which User Installed or Removed...

June 25, 2025

Find a Process Causing High Disk Usage on...

July 16, 2025

Change BIOS from Legacy to UEFI without Reinstalling...

April 23, 2025

Map a Network Drive over SSH (SSHFS) in...

May 13, 2025

Leave a Comment Cancel Reply

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

Recent Posts

  • How to Find a Previous Computer Name in Windows

    October 28, 2025
  • How to Delete a Windows Service via CMD or PowerShell

    October 16, 2025
  • Resource Fair Sharing in Windows Server Remote Desktop Services (RDS)

    October 6, 2025
  • How to Disable (Enable) Credential Guard in Windows 11

    October 6, 2025
  • Wrong Network Profile on Windows Server after Reboot

    September 30, 2025
  • How to Get Windows 10 Extended Security Updates After End-Of-Life

    September 24, 2025
  • Blocking NTLM Connections on Windows 11 and Windows Server 2025

    September 23, 2025
  • Windows Stucks at ‘Getting Windows Ready, Don’t Turn Off Computer’

    September 15, 2025
  • Clean Up ETL Log Files in ProgramData

    September 9, 2025
  • Fix: Slow Startup of PowerShell Console and Scripts

    September 3, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Converting Windows 10 to Enterprise LTSC Without Losing Data
  • Permanently Disable Driver Signature Enforcement on Windows 11
  • Fix: Windows Update Tab (Button) is Missing from Settings
  • Fix: Your IT Administrator Has Limited Access to Virus & Threat Protection
  • How to Remove ‘Some Settings are Managed by Your Organization’ on Windows 11 or 10
  • How to Add or Reinstall the Microsoft PDF Printer on Windows
  • Fix: Multiple Connections to a Server or Shared Resources by the Same User
Footer Logo

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


Back To Top