Hello Józef Oleś,
Thank you for reaching out. I understand you are facing issues with installations and updates on Windows Server 2025.
Setting EnableLUA to 0 is not a safe long-term solution. You have completely disabled User Account Control (UAC). While this stops the system from asking for permission, it removes a critical security layer. It allows any program (including potential malware) to make changes to your server without your knowledge.
The issue likely stems from UAC prompts getting stuck in the background or Windows Defender SmartScreen blocking the execution. Please follow these steps to fix the root cause:
- Re-enable UAC:
- Change the registry key
EnableLUAback to 1. - Restart the server.
- Fix Application Installs:
- When installing an app, right-click the installer and select Run as Administrator.
- Check Windows Security > App & Browser control. Ensure "Reputation-based protection" isn't blocking your specific apps.
- Fix Windows Updates:
- Open PowerShell as Administrator and run these commands one by one:
net stop wuauserv
net stop bits
Rename-Item C:\Windows\SoftwareDistribution C:\Windows\SoftwareDistribution.old
net start wuauserv
net start bits
Please try these steps and let me know the result. I am happy to follow up if the issue persists.
If it helps you get more insight into the issue, please kindly click Accept Answer so other users can find this solution.