Windows/UAC

From Omnia
Revision as of 05:03, 5 October 2024 by Kenneth (talk | contribs) (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 ===...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Disable User Account Control (UAC)

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

ref: [1]


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