Install the optional KB5083631 preview cumulative update for Windows 11 or the corresponding updates for Windows 10/Server to fix the misaligned security warning dialogs that appear when opening RDP files on multi-monitor systems with different display scaling settings.

Fix Remote Desktop Connection Security Warning Display Issues – Windows 10/11 2026
Microsoft's April 2026 security updates introduced RDP security warnings that display incorrectly on multi-monitor setups with different scaling. KB5083631 provides the fix.
Overview of Remote Desktop Security Warning Display Issues
Microsoft's April 2026 security updates introduced enhanced security warnings for Remote Desktop Connection (.rdp) files to protect against phishing attacks and unauthorized resource access. However, these new security dialogs have a critical display bug on systems with multiple monitors using different scaling settings.
The issue affects all supported Windows versions including Windows 11 (KB5083768 & KB5083769), Windows 10 (KB5082200), and Windows Server (KB5082063). When users attempt to open RDP files, the security warning dialog renders incorrectly with misaligned buttons, partially hidden text, and unreadable content, making it impossible to proceed with the connection.
This problem specifically impacts enterprise environments where multi-monitor setups with different DPI scaling are common. The security warnings were designed to prevent threat actors from abusing RDP files in phishing campaigns, but the display bug inadvertently blocks legitimate users from accessing their remote systems. Microsoft has acknowledged this issue and released KB5083631 as a fix, along with corresponding updates for other Windows versions.
Symptoms
- Security warning dialog buttons are misaligned when opening RDP files
- Dialog text is partially hidden or unreadable
- Cannot click OK, Cancel, or other buttons in the security prompt
- Warning dialog appears corrupted on secondary monitors
- Text overlaps or extends beyond dialog boundaries
- Issue occurs only on systems with multiple monitors and different scaling settings
Root Causes
- April 2026 security updates (KB5083769, KB5082200, KB5082063) introduced new RDP security warnings
- Display scaling differences between multiple monitors cause rendering issues
- Windows DPI awareness settings conflict with the new security dialog
- Remote Desktop Connection client fails to properly calculate dialog dimensions
- Graphics driver compatibility issues with the new warning system
Solutions
Install KB5083631 Cumulative Update
Microsoft released KB5083631 to specifically address this issue. Install this update to permanently fix the display problem.
- Open Settings → Update & Security → Windows Update
- Click Check for updates
- Look for 2026-04 Cumulative Update Preview for Windows 11 (KB5083631)
- Click Download and install
- Restart your computer when prompted
For Windows 10 systems, the corresponding fix is included in KB5082200 updates. For Windows Server, check for KB5082063 updates.
Verification: After restart, open any RDP file and confirm the security warning dialog displays correctly with properly aligned buttons and readable text.
Adjust Display Scaling Temporarily
If you cannot install the update immediately, temporarily adjust display scaling to work around the issue.
- Right-click on desktop and select Display settings
- Note your current scaling settings for each monitor
- Set all monitors to the same scaling percentage (typically 100%)
- Click Apply and confirm the change
- Open your RDP file - the dialog should now display correctly
- After connecting, you can restore your original scaling settings
Alternative PowerShell method:
# Get current display scaling
Get-WmiObject -Class Win32_VideoController | Select-Object Name, CurrentHorizontalResolution, CurrentVerticalResolution
# Set scaling via registry (requires restart)
Set-ItemProperty -Path "HKCU\Control Panel\Desktop" -Name "LogPixels" -Value 96Verification: Open the RDP file and confirm the security dialog appears with properly aligned elements.
Use Command Line RDP Connection
Bypass the problematic dialog by connecting via command line with mstsc parameters.
- Open Command Prompt or PowerShell as administrator
- Navigate to your RDP file location
- Use mstsc with the /admin parameter to bypass some security prompts:
mstsc /admin /f "C:\path\to\your\file.rdp"Or create a batch script for repeated use:
@echo off
cd /d "C:\path\to\rdp\files"
mstsc /admin /f "%1"
pause- Save as
rdp_launcher.bat - Right-click your RDP file, choose Open with → Choose another app
- Browse to your batch file and set as default
Verification: The RDP connection should establish without displaying the problematic security dialog.
Modify RDP File Security Settings
Edit the RDP file to disable certain security prompts that trigger the display issue.
- Right-click your RDP file and select Edit
- Add or modify these lines to reduce security prompts:
authentication level:i:0
promptcredentialonce:i:1
disableremoteappscapscheck:i:1
redirectclipboard:i:0
redirectdrives:i:0
redirectprinters:i:0- Save the file
- Test the connection - fewer security dialogs should appear
For multiple RDP files, use PowerShell to batch modify:
# Batch modify RDP files
$rdpFiles = Get-ChildItem -Path "C:\RDP\" -Filter "*.rdp"
foreach ($file in $rdpFiles) {
$content = Get-Content $file.FullName
$content += "authentication level:i:0"
$content += "promptcredentialonce:i:1"
Set-Content -Path $file.FullName -Value $content
}Verification: Open the modified RDP file and confirm fewer security dialogs appear, avoiding the display issue.
Registry Fix for DPI Awareness
Modify registry settings to improve DPI awareness for Remote Desktop Connection.
- Press Win + R, type
regedit, and press Enter - Navigate to
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide - Create a new DWORD value named
PreferExternalManifest - Set its value to
1 - Navigate to
HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client - Create or modify the DWORD
EnableAdvancedRemoteFXHostand set to1 - Create or modify the DWORD
DisableUDPTransportand set to1
# PowerShell method to apply registry changes
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide" -Name "PreferExternalManifest" -Value 1 -PropertyType DWORD -Force
New-ItemProperty -Path "HKCU:\Software\Microsoft\Terminal Server Client" -Name "EnableAdvancedRemoteFXHost" -Value 1 -PropertyType DWORD -Force
New-ItemProperty -Path "HKCU:\Software\Microsoft\Terminal Server Client" -Name "DisableUDPTransport" -Value 1 -PropertyType DWORD -Force- Close Registry Editor
- Restart your computer
- Test RDP file opening
Verification: After restart, open an RDP file and check if the security dialog displays correctly with proper DPI scaling.
Verification
To confirm the fix worked properly, perform these verification steps:
- Open any RDP file from your desktop or file explorer
- Verify the security warning dialog appears with properly aligned buttons and readable text
- Confirm you can click Connect, Cancel, or other dialog buttons without issues
- Test on both primary and secondary monitors if using multiple displays
- Run this PowerShell command to check your current Windows build:
Get-ComputerInfo | Select-Object WindowsProductName, WindowsVersion, TotalPhysicalMemoryThe fix is successful when the security dialog displays correctly regardless of monitor scaling differences and you can interact with all dialog elements normally.
Advanced Troubleshooting
If the above methods didn't resolve the issue, try these advanced troubleshooting steps:
Advanced Registry Reset
Reset Remote Desktop Connection settings completely:
# Remove all RDP client settings
Remove-Item -Path "HKCU:\Software\Microsoft\Terminal Server Client" -Recurse -Force
# Restart RDP service
Restart-Service -Name "TermService" -ForceGraphics Driver Update
Update your graphics drivers as display scaling issues can be driver-related. Use Device Manager or download directly from your GPU manufacturer (NVIDIA, AMD, Intel).
Windows Display Troubleshooter
Run the built-in display troubleshooter: Settings → System → Troubleshoot → Additional troubleshooters → Display.
Clean Boot Testing
Perform a clean boot to eliminate third-party software conflicts that might affect display rendering. Use msconfig to disable startup programs temporarily.
Alternative RDP Clients
Consider using alternative RDP clients like Microsoft Remote Desktop from the Microsoft Store, which may handle the security dialogs differently.
Frequently Asked Questions
What causes the Remote Desktop security warning dialog to display incorrectly?+
Which Windows versions are affected by this RDP dialog display bug?+
Can I disable the new RDP security warnings completely?+
Will the KB5083631 update affect other system functionality?+
How can I prevent this issue from occurring on new RDP files?+
Further Intelligence
Deepen your knowledge with related resources
Discussion
Share your thoughts and insights
Sign in to join the discussion




