An Azure service that is used to provision Windows and Linux virtual machines.
This is a documented issue reported by multiple customers running Windows Server 2022 domain controllers in Azure. After DC promotion, RDP authentication succeeds, but the interactive session never completes, resulting in a permanent black screen.
In reported cases, the root cause was UAC (EnableLUA=1) interfering with interactive RDP session creation on newly promoted Server 2022 DCs. Disabling UAC via a remote management channel (Serial Console / Run Command / PowerShell Remoting) and rebooting restores RDP access.
Workaround:
Set-ItemProperty `
-Path HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System `
-Name EnableLUA -Value 0
shutdown /r /t 0
After reboot, RDP sessions progress normally beyond authentication. Alternatively, UAC can remain enabled by adjusting Admin Approval Mode for the built‑in Administrator account via local security policy or GPO. The DFSR errors observed during DCPROMO relate to SYSVOL replication and are independent of the RDP black‑screen issue, though they should still be investigated separately.
Coming to ask again - No there are no special Azure VM specific settings that need to be configured for this scenario. This behavior is not caused by Azure VM configuration differences, and it is not something you missed during VM creation.
So, this is a Windows Server 2022 behavior after Domain Controller promotion, most commonly seen on Azure VMs but not Azure‑specific. The issue does not occur on Server 2016, which aligns with your observation, due to changes in UAC handling and session initialization in newer Windows Server builds.
Specifically, after DCPROMO on Windows Server 2022:
- RDP authentication succeeds (Event ID 1149 logged)
- The interactive session never completes
- The user is left with a permanent black screen
- AD, replication, DNS, PowerShell, and Server Manager all continue to function normally
Also, confirmed the root cause as UAC (EnableLUA = 1) interfering with interactive RDP session creation on Server 2022 domain controllers. Disabling UAC (or adjusting Admin Approval Mode for the built‑in Administrator account) and rebooting restores RDP immediately, with no Azure-side changes required.
If you have any further queries, let me know. If the information is helpful