Completely Disable UAC

To completely disable User Account Control on a Windows machine set the following registry key.

Key:     HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
Value:   "EnableLUA"
Type:    REG_DWORD
Value:   0x00000000

The following powershell command does the trick nicely:
Set-ItemProperty -Path registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System -Name EnableLUA -Value 0
 

https://msdn.microsoft.com/en-us/library/cc232765.aspx?tduid=(8b33f2bee35cf8af0da845c7fe4d2393)(256380)(2459594)(TnL5HPStwNw-rp6Qh8nm5xnZwnOhPE.33Q)()

Comments are closed.