User account control in windows7?

-2

It's annoying when I get a popup message saying "do you want the following program to make changes to your computer" for every application I run on my windows.

Is there anyway to change or disable it?

gweidemann

Posted 2016-02-02T15:20:48.357

Reputation: 33

2I'm confused -- You know it's "UAC" and "User Account Control", yet you couldn't just Google "disable UAC on Windows 7" or alike to find out how? is there some (larger/actual) problem here that we're missing? – Ƭᴇcʜιᴇ007 – 2016-02-02T18:46:02.410

Answers

0

It could be annoying while installing Some programs, but it is asking for user's security.

Users should know What is UAC (USER ACCOUNT CONTROL)?

  • UAC is a security feature of Windows Vista, Windows 7 and Windows 8 which helps prevent unauthorized changes to your computer. These changes can be initiated by applications, viruses or other users. User Account Control makes sure these changes are made only with approval from the administrator. If the changes are not approved by the administrator, they are not executed and Windows remains unchanged.

Users can change the settings in UAC follow these steps in this link How to set-up UAC

UAC in Windows 7

Smruti Ranjan

Posted 2016-02-02T15:20:48.357

Reputation: 11

1

Disable UAC by going to the start menu and type in UAC, the following option will show up:

enter image description here

At the next screen you can drag the slider up or down, up is more secure, down is less. Completely drag down the slider and UAC will be disabled:

enter image description here

Or use PowerShell to edit a registry key to disable UAC. (Will take effect after reboot!)

New-ItemProperty -Path HKLM:Software\Microsoft\Windows\CurrentVersion\policies\system -Name EnableLUA -PropertyType DWord -Value 0 -Force

Smeerpijp

Posted 2016-02-02T15:20:48.357

Reputation: 1 004