Overview
This article provides the details on how to disable the User Account Control (UAC) on Microsoft Windows Servers.
Process
Microsoft Windows Server 2008
- Select Start > Control Panel.
- Select User Accounts > Turn User Account Control on or off.
- Deselect Use User Account Control (UAC) to help protect your computer and click OK.
- Reboot the machine for changes to take effect.
Microsoft Windows Server 2008 R2
- Select Start > Control Panel.
- Select User Accounts > Change User Account Control settings.
- Move the slider bar down to the Never notify selection and click OK.
- Reboot the machine for changes to take effect.
Microsoft Windows Server 2012 / 2016
- Select Start > Control Panel
- Click System Security
- Under Action Center, choose Change User Account Control settings
- Move the slider bar down to the Never notify selection and click OK
- Reboot the machine for changes to take effect
Note: Alternatively on All Microsoft Windows versions that support UAC - Fully Disable UAC from PowerShell as follows:
- Select Start > Run
- At the Run window type the following command and click Ok
powershell
- Copy/Paste this command in the PowerShell prompt:
New-ItemProperty -Path HKLM:Software\Microsoft\Windows\CurrentVersion\policies\system -Name EnableLUA -PropertyType DWord -Value 0 -Force
- Reboot the machine for changes to take effect.
- Make sure UAC is disabled by navigating to a restricted folder.
- Select Start > Run
- At the Run window type the following command and click Ok.
C:\Windows\SysWOW64\Config
- If the system doesn't prompt you for Administrative access - UAC has been successfully disabled.
Note: Often the UAC doesn't wholly get disabled, in Server 2012, by merely selecting Never notify in the user interface. Instead, you will have to disable it in the registry fully.
Refer to this article "Windows Server 2012: Deactivating UAC" to disable via the registry.