Disable UAC
Log In or Register to download the BES file, and more.

2 Votes

Collections (part of 1 collection)

Windows Configuration

Description

If you’ve used Windows since the release of Vista for more than 3.7 minutes, you know what UAC (User Account Control) is.. it’s the obnoxious, nagging popup window that will be your life for the next 3-5 years unless you switch back to XP in frustration, or to a better OS like… OS X, Suse, Ubuntu, or even XP.

Property Details

ID1376
TitleDisable UAC
DomainBESC
CategoryConfiguration
Download Size0
Sourcedanielheth@bigfix.me
Source ID<Unspecified>
Source Severity<Unspecified>
Source Release Date1/14/2013 12:00:00 AM
KeywordsUAC Vista User Account Control
Is TaskTrue
Added by on 1/14/2013 10:18:42 AM
Last Modified by on 1/14/2013 10:18:42 AM
Counters 12578 Views / 175 Downloads
User Rating 1 star 2 star 3 star 4 star 5 star * Average over 1 rating. ** Log In or Register to add your rating.

Relevance

Used in 2 fixlets   * Results in a true/false
Show indented relevance
(name of it = "WinVista" or name of it = "Win7" or name of it = "Win8") of operating system
Enable UA Status (Relevance 2124)
Used in 1 fixlet   * Results in a true/false
Show indented relevance
value "EnableLUA" of key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" of registry = 1 OR value "EnableLUA" of key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" of x64 registry = 1

Actions

Action 1 (default)

Action Link Click here to deploy this action.
Script Type BigFix Action Script
regset "[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]" "EnableLUA"=dword:0
if {x64 of operating system}
    regset64 "[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]" "EnableLUA"=dword:0
endif
Success Criteria

This action will be considered successful when the applicability relevance evaluates to false.


Sharing

Social Media:
Share this page on Yammer

Comments

Log In or Register to leave comments!
BrianCanFixIT -
There are many dangers of disabling UAC; this fixlet should only be used with extreme cation.
jgstew -
This does require a reboot to take effect.
Anuj_Attree -
A system restart is required to enable or disable UAC. On windows 7 -> If notify me when is not configured in Control Panel-User Accounts-User Account Control, then this setting wouldn’t have any effect.On Windows 8, it is simply a check box.
Anuj_Attree -
On windows 2008, nothing happened after updating registry key, might require a system restart. On windows 7, i enabled LUA-1, gave a system restart and UAC was not back. It is not working.
jgstew -
using "action uses wow64 redirection false" on a 32bit client has no effect since a 32bit client does not have wow64 redirection to enable or disable.
jgstew -
using "regset64" is equivalent to using "action uses wow64 redirection false" followed by "regset", but I prefer to use "regset64" despite the confusing "64" in the name because it is more obvious what registry will be set on a 64bit machine. "regset64" should be renamed to "regsetnative" to be more clear.
jgstew -
regset sets the 32bit registry on a 32bit machine and the 32bit registry on a 64bit machine. Think of it as the action equivalent of the inspector "registry" or "x32 registry"
jgstew -
regset64 sets the 32bit registry on a 32bit machine and sets the 64bit registry on a 64bit machine. Think of it as the action equivalent of the inspector "native registry"
danielheth -
does a 32bit system ignore the regset64 or error out? I don't have any 32bit Vista, 7 or 8's setup right now to test it.
jgstew -
This action only needs to be: regset64 "[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]" "EnableLUA"=dword:0