Hello Andrew,
Thank you for posting question on Microsoft Windows Forum.
Based on the issue description. This behavior is probably a regression appearing in Windows 11 24H2 and systems patched with the August 2025 / January 2026 security updates. It is primarily a deadlock between the ConsentUX (Secure Desktop) process and background agents that hook into the Windows Installer (MSI) or Network Filtering (WFP) stacks.
The fact that stopping N-Able or DNS Filter services immediately restores functionality probably confirms a resource lock or IPC (Inter-Process Communication) deadlock.
The plausible explanation to the cause of the "Secure Desktop" Deadlock is of that the recent Windows security hardening (addressing CVE-2025-50173) has tightened how ConsentUX.exe handles credential validation. When you enter credentials, Consent.exe must communicate back to the calling session to spawn the elevated process. When a system has been idle, background agents (like N-Able’s PME Agent or DNS Filter) often initiate background maintenance, telemetry, or MSI repair checks. These agents often hold a handle on the Windows Installer database or a WFP network socket. When you trigger UAC, ConsentUX.exe attempts to verify the digital signature or certificate revocation list (CRL) of the calling app. If the background agent is blocking the network stack (DNS Filter) or the MSI service (PME), ConsentUX.exe enters a "Wait" state. Because it is running on the Secure Desktop, it blocks all input to that UI until the underlying check times out (the 4–5 minute delay you observed).
The following are some suggestions for mitigation.
- To confirm this is a session-isolation hang, you can consider temporarily disabling the "Secure Desktop" mode via GPO or Registry. This will make UAC pop up on the regular user desktop. Navigate to this path HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System Look for the value of PromptOnSecureDesktop and Set it to 0. Please note: This is a diagnostic step, not a permanent security recommendation.
- Applying Known Issue Rollback (KIR). Since Microsoft has released a KIR for the UAC/MSI repair issues introduced in late 2025. Check if KB5063878 or KB5074109 (Jan 2026) is installed.
- Try to analyze the "Wait Chain". When the UAC prompt freezes. On a different machine (or via a remote shell like ScreenConnect/Automate), run Resource Monitor. Go to the CPU tab and find ConsentUX.exe. Right-click it and select Analyze Wait Chain. It will probably show it is waiting on a SYSTEM-level service such as FileCacheServiceAgent.exe or dnsfilter.exe.
Last point to mention here is to monitor Microsoft’s release notes for post-August 2025 cumulative updates. As a fix is expected in upcoming patches.
You can consult the following article for more information regarding the issue.
Hope the above information is helpful! If it is. Free feel to hit "Accepted" for benefitting others in community having the same issue too.