Windows/UAC: Difference between revisions

From Omnia
Jump to navigation Jump to search
(Created page with "== Disable User Account Control (UAC) == HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System EnableLUA DWORD 0 = Disable 1 = Enable ref: [https://www.tenforums.com/tutorials/112488-enable-disable-user-account-control-uac-windows.html] === disable_uac.reg === <pre> Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System] "EnableLUA"=dword:00000000 </pre> === enable_uac.reg ===...")
 
 
Line 7: Line 7:


ref: [https://www.tenforums.com/tutorials/112488-enable-disable-user-account-control-uac-windows.html]
ref: [https://www.tenforums.com/tutorials/112488-enable-disable-user-account-control-uac-windows.html]
LUA = The Microsoft-Windows-LUA-Settings component includes settings related to the Windows User Account Controls (UAC), formerly known as '''Limited User Account (LUA)'''
ref: https://learn.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/microsoft-windows-lua-settings





Latest revision as of 06:02, 24 October 2024

Disable User Account Control (UAC)

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
EnableLUA DWORD
0 = Disable
1 = Enable

ref: [1]

LUA = The Microsoft-Windows-LUA-Settings component includes settings related to the Windows User Account Controls (UAC), formerly known as Limited User Account (LUA)

ref: https://learn.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/microsoft-windows-lua-settings


disable_uac.reg

Windows Registry Editor Version 5.00

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

enable_uac.reg

Windows Registry Editor Version 5.00

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

keywords