Table of Contents

Windows 7 - User Account Control (UAC)

Microsoft Support - Disabling User Account Control (UAC) on Windows Server (KB2526083)

Disable

Import:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"EnableLUA"=dword:00000000

Or execute:

"%SYSTEMROOT%\system32\reg.exe" ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableLUA /t REG_DWORD /d 0 /f

Via GPO

Computer Configuration\Policies\Windows Settings\Security Settings\ Local Policies\Security Options:

Source: Subclassed - Fully disable User Access Control (UAC) via Group Policy (GPO)

Enable

Import:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"EnableLUA"=dword:00000001

Or execute:

"%SYSTEMROOT%\system32\reg.exe" ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableLUA /t REG_DWORD /d 1 /f