Отключение uac windows 10 cmd

Контроль учетных записей или UAC в Windows 10 уведомляет вас при запуске программ или выполнении действий, которые требуют права администратора на компьютере (что обычно означает, что программа или действие приведет к изменению системных настроек или файлов). Сделано это с целью защитить вас от потенциально опасных действий и запуска ПО, которое может нанести вред компьютеру.

По умолчанию UAC включен и требует подтверждения для любых действий, могущих оказать влияние на операционную систему, однако вы можете отключить UAC или настроить его уведомления удобным для себя способом. В конце инструкции также имеется видео, где показаны оба способа отключения контроля учетных записей Windows 10. Также вы можете отключить запрос контроля учетных записей для отдельной программы.

Отключение UAC в Панели управления

Первый способ — использовать соответствующий пункт в панели управления Windows 10 для изменения настроек контроля учетных записей. Прежде чем приступить, учитывайте, что для отключения UAC вам требуется наличие прав администратора. Если их нет, но вы хотите установить или запустить программу, может сработать способ из инструкции Как установить программу без прав администратора.

  1. Откройте панель управления, для этого можно использовать поиск в панели задач или нажать клавиши Win+R, ввести control и нажать Enter. А можно сразу перейти к 4-му шагу, нажав Win+R и введя UserAccountControlSettings
  2. В панели управления вверху справа в поле «Просмотр» вместо «Категории» установите «Значки», а затем откройте пункт «Учетные записи пользователей».
    Учетные записи пользователей в панели управления

  3. В следующем окне нажмите «Изменить параметры контроля учетных записей».
    Изменить параметры контроля учетных записей

  4. Далее вы можете вручную задать параметры UAC или отключить контроль учетных записей Windows 10, достаточно выбрать один из вариантов настроек работы UAC, каждый из которых пояснён далее.
    Отключение контроля учетных записей в панели управления

Возможные варианты настроек контроля учетных записей в панели управления от верхнего к нижнему:

  • Всегда уведомлять, когда приложения пытаются установить программное обеспечение или при изменении параметров компьютера — самый безопасный вариант, при любом своем действии, которое может что-то изменить, а также при действиях сторонних программ вы будете получать уведомление об этом. Обычные пользователи (не администраторы) должны будут ввести пароль для подтверждения действия.
  • Уведомлять только при попытках приложений внести изменения в компьютер — этот параметр установлен в Windows 10 по умолчанию. Он означает, что контролируются только действия программ, но не действия пользователя.
  • Уведомлять только при попытках приложений внести изменения в компьютер (не затемнять рабочий стол). Отличие от предыдущего пункта в том, что рабочий стол не затемняется и не блокируется, что в некоторых случаях (вирусы, трояны) может быть угрозой безопасности.
  • Не уведомлять меня — UAC отключен и не уведомляет о каких-либо изменениях в параметрах компьютера, инициированных вами или программами.

Если вы решили отключить контроль учетных записей Windows 10, что является совсем не безопасной практикой, в дальнейшем следует быть очень внимательным, поскольку все программы будут иметь к системе тот же доступ, что и вы, в то время как контроль учетных записей не сообщит, если какая-то из них может повлиять на работу системы. Иными словами, если причина отключения UAC только в том, что он «мешает», я настойчиво рекомендую включить его обратно.

Редакторе реестра

Отключение UAC и выбор любого из четырех вариантов работы контроля учетных записей Windows 10 возможен и с помощью редактора реестра (чтобы запустить его нажмите Win+R на клавиатуре и введите regedit).

Параметры работы UAC определяются тремя ключами реестра, находящимися в разделе

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

Включение и отключение UAC в редакторе реестра

Перейдите в этот раздел и найдите следующие параметры DWORD в правой части окна: PromptOnSecureDesktop, EnableLUA, ConsentPromptBehaviorAdmin. Для полного отключения контроля учетных записей достаточно изменить значение параметра EnableLUA на 0 (ноль), закрыть редактор реестра и перезагрузить компьютер.

Однако, когда вы меняете параметры UAC в панели управления, сама Windows 10 оперирует тремя параметрами одновременно и делает это несколько иначе (хотя предыдущий метод проще и быстрее). Далее привожу значения каждого из ключей PromptOnSecureDesktop, EnableLUA, ConsentPromptBehaviorAdmin в том порядке, как они указаны для разных вариантов оповещений контроля учетных записей.

  1. Всегда уведомлять — 1, 1, 2 соответственно.
  2. Уведомлять при попытках приложений изменить параметры (значения по умолчанию) — 1, 1, 5.
  3. Уведомлять без затемнения экрана — 0, 1, 5.
  4. Отключить UAC и не уведомлять — 0, 1, 0.

Командная строка

Быстрый способ полностью отключить контроль учетных записей — использовать командную строку, для этого:

  1. Запустите командную строку от имени администратора, в Windows 10 для этого можно начать вводить «Командная строка» в поиск на панели задач, а когда найдется нужный результат — либо нажать по нему правой кнопкой мыши и выбрать нужный пункт меню, либо выбрать «Запуск от имени администратора» в панели справа.
  2. Введите команду (нажав Enter после ввода)
    reg ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f
  3. Закройте командную строку и перезапустите компьютер или ноутбук.

По своей сути этот метод является вариантом способа с редактором реестра, который описан выше: просто нужный параметр изменяется с помощью указанной команды.

Редактор локальной групповой политики

Этот метод подойдёт для Windows 10 Pro и Enterprise, где присутствует редактор локальной групповой политики. Шаги будут следующими:

  1. Нажмите клавиши Win+R на клавиатуре, введите gpedit.msc и нажмите Enter.
  2. В редакторе перейдите к разделу «Конфигурация компьютера» — «Конфигурация Windows» — «Параметры Безопасности» — «Локальные политики» — «Параметры безопасности».
  3. В правой панели найдите параметр «Контроль учетных записей: все администраторы работают в режиме одобрения администратором» и дважды нажмите по нему.
    Настройки UAC в gpedit

  4. Установите параметр в значение «Отключен» и нажмите «Ок».
    Отключить контроль учетных записей в редакторе локальной групповой политики

Перезагрузка компьютера обычно не требуется.

В завершение еще раз напомню: я не рекомендую отключать контроль учетных записей ни в Windows 10 ни в других версиях ОС, если только вы абсолютно точно не знаете, для чего вам это нужно, а также являетесь достаточно опытным пользователем.

Контроль учетных записей Windows – это хорошая штука в плане безопасности, но часто-густо она оказывается чрезмерно назойливой и скорее бесит пользователя, нежели его защищает.

Что такое Контроль учетных записей (UAC)

Изначально UAC (User Account Control не путать с Union Aerospace Corporation из легендарной игры Doom) появился в Windows Vista, за что та и получила просто-таки тонны ненависти со стороны пользователей. Контроль учетных записей со временем никуда не делся, а способ его отключения очевиден не для всех. Эта инструкция рассказывает о том, как отключить контроль учетных записей UAC в Windows 10.

UAC

То самое окно UAC или Контроль учетных записей.

Как отключить Контроль учетных записей в панели управления

Важно понимать, что User Account Control обладает несколькими уровнями действия, поэтому вы можете подобрать для себя оптимальный, либо отключить его вовсе.

На выбор доступно четыре варианта:

  • Самый высокий: для параноиков, он же «режим Windows Vista». Система будет просить разрешение на изменение параметров компьютера, а также установку или изменение программ.
  • Высокий: по умолчанию. Система не уведомляет при изменении параметров, но будет запрашивать доступ при установке или изменении программ.
  • Средний: точно такой же, как и высокий, только не затемняет экран, следовательно, привлекает меньше внимания.
  • Низкий: никогда не уведомлять, все отключено. Не рекомендуется.

Какой из этих уровней установить, решать вам. Если вы хотите полностью избавиться от контроля учетных записей, тогда выбирайте самый последний.

Как отключить UAC через Командную Строку

Есть еще более неочевидные методы отключения контроля учетных записей в Windows 10. К примеру, через Командную Строку или Редактор реестра. С помощью Cmd эта процедура выполняется следующим образом:

  • Нажмите Win + S и введите cmd. В списке появится Командная строка. Нажмите по ней правой кнопкой мыши и выберите Запустить от имени администратора. Это важный пункт. Убедитесь, что вы запустили Командную строку с правами Администратора, иначе вам откажут в доступе.
    UAC 10

  • Введите следующую команду:

    C:\Windows\System32\cmd.exe /k C:\Windows\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f

  • После этой команды Контроль учетных записей будет полностью отключен, а компьютер вам сообщит о необходимости перезагрузки компьютера для применения внесенных изменений.
    UAC 1

Чтобы вернуть все назад, проделайте ту же процедуру, только воспользуйтесь уже другой командой:

C:\Windows\System32\cmd.exe /k C:\Windows\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f

Минус этого способа заключается в том, что вы не можете задать уровень UAC. Его можно либо включить, либо отключить. Но метод с использованием Командной строки отлично подойдет тем, кто хочет раз и навсегда избавиться от Контроля учетных записей.

Отключить Контроль учетных записей через Редактор реестра

Эта часть руководства для тех, кто не ищет легких путей или просто хочет уметь выполнять разные простые манипуляции различными способами, о существовании которых 99% пользователей Windows даже не догадываются.

  • Нажмите Win + R и введите regedit. Откроется редактор реестра.
    UAC 11

  • Перейдите по ветке ниже. Если вы используете Windows 10 Creators Update и выше, тогда просто скопируйте адрес в адресную строчку Редактора реестра.

    Компьютер\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

    UAC 12

  • В этом разделе реестра надо найти три ключа, которые влияют на поведение UAC: PromptOnSecureDesktop, EnableLUA, ConsentPtomptBehaviorAdmin.

Изменяйте значения этих ключей в зависимости от того, какой уровень вы хотите задать:

  • Первый уровень, всегда уведомлять, значения: PromptOnSecureDesktop — 1, EnableLUA — 1, ConsentPtomptBehaviorAdmin — 2.
  • Второй уровень, уведомлять при попытках приложения изменить параметры: PromptOnSecureDesktop — 1, EnableLUA — 1, ConsentPtomptBehaviorAdmin — 5.
  • Третий уровень, уведомлять без затемнения экрана: PromptOnSecureDesktop — 0, EnableLUA — 1, ConsentPtomptBehaviorAdmin — 5.
  • Четвертый уровень, не уведомлять вообще, все отключено: PromptOnSecureDesktop — 0, EnableLUA — 1, ConsentPtomptBehaviorAdmin — 0.
    UAC 13

После редактирования ключей перезагрузите компьютер, чтобы изменения вступили в силу.

  • Home
  • News
  • How to Disable UAC in Windows 10? Here Are Four Simple Ways!

By Vera | Follow |
Last Updated

Although disabling UAC is a terrible idea, this move is necessary if UAC prevents some applications from running properly. MiniTool will show you how to disable UAC Windows 10. Additionally, some tips on how to change UAC for standard user to automatically deny UAC elevation requests are also introduced simply.

What Is UAC in Windows 10

UAC, short for User Account Control, is a component of Microsoft Windows’s security system. It can help mitigate the impact of malware by preventing apps from making unwanted changes on the PC.

Windows 10 will pop up a UAC confirmation dialog to ask you to confirm the change or not when some software attempts to change system-related parts of the file system or Windows Registry. Simply put, UAC can offer a special security environment, which protects your user account that has limited access rights well.

However, turning UAC on sometimes prevents programs from running well. Then, a solution is to disable UAC in Windows 10. In this post, we will introduce four methods.

Tip: Enabling UAC can be an additional protection tip to prevent dangerous apps and viruses. Disabling it without a reason is a terrible idea! So, be cautious of this.

Related article: How to Protect Your Computer from Virus

How to Disable UAC Windows 10

Option 1: Disable UAC via Control Panel

Step 1: Type control panel in the search bar of Windows 10 and click this app in the result to open it.

Step 2: Go to User Accounts > Change User Account Control settings.

Step 3: Drag the slider control to Never notify and click OK to apply the change.

disable UAC Windows 10 control panel

This way, the UAC is disabled and you won’t receive any notification. But this won’t completely disable User Account Control that is still active in the background.

Option 2: Disable UAC Windows 10 Command Line

Step 1: Run Command Prompt as administrator.

Step 2: To turn off UAC Windows 10, enter the following command and press Enter:

reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f.

dsiable UAC Windows 10 command line

Tip: To turn UAC on, use the command – reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f.

Step 3: Reboot your computer to let the change take effect.

Option 3: Disable UAC Group Policy

Step 1: Input Policy Editor in the Windows 10 search box and click Edit group policy.

Step 2: Go to Computer Configuration > Windows Settings > Security Settings > Local Policies > Security Options.

Step 3: Scroll down to the bottom to find User Account Control: Run all administrators in Admin Approval Mode and double-click on it, choose Disabled and click OK.

diable UAC Windows 10 group policy

Option 4: Disable UAC Windows 10 Registry Key

Note: Before changing Windows Registry, we recommend you to back up registry to avoid system accidents.

Step 1: Press Win plus R keys to launch the Run dialog.

Step 2: Input regedit.exe and click OK.

Step 3: Go to the path:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

Step 4: Double-click on the key – EnableLUA and change its Value data to 0.

turn off UAC Windows 10 registry key

Step 5: Save the change and restart your computer.

Now, we have shown you how to disable UAC Windows 10 in detail. In addition, you may want to set UAC to automatically deny elevation requests from users with standard-level credentials to avoid being prompted to enter administrator credentials to confirm all the time when running a program requiring elevated permissions.

How to Automatically Deny UAC Elevation Requests

You can do this work via Windows Registry or Group Policy.

In Group Policy, go to Computer Configuration/Windows Settings/Security Settings/Local Policies/Security Options, double-click on User Account Control: Behavior of the elevation prompt for standard users and choose Automatically Deny elevation requests.

change UAC for standard user via Group Policy

In the Registry Editor window, navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System, double-click the ConsentPromptBehaviorUser key and change its Value data to 0 so that you can automatically deny UAC elevation requests.

change UAC for standard user via Registry

The End

After reading this post, you will know clearly on how to disable UAC Windows 10 and how to change UAC for standard user to automatically deny elevation requests. Just try the methods above based on your needs to perform these operations to User Account Control.

About The Author

Position: Columnist

Vera is an editor of the MiniTool Team since 2016 who has more than 7 years’ writing experiences in the field of technical articles. Her articles mainly focus on disk & partition management, PC data recovery, video conversion, as well as PC backup & restore, helping users to solve some errors and issues when using their computers. In her spare times, she likes shopping, playing games and reading some articles.

  • UAC can be disabled from the Control Panel, Windows Registry, Group Policy, Command Prompt, and Windows PowerShell.
  • Disable UAC from Command Prompt: reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f
  • Disable UAC from Control Panel by going to Control Panel >> User Accounts >> User Accounts >> Change User Account Control settings >> Drag slider to “Never Notify”

The Windows operating system is vulnerable to outside threats and unauthorized access, which is why it includes a User Account Control (UAC) feature.

Even if you are not aware of what UAC is, you must certainly have come across it if you are a Windows user. Ever seen that annoying confirmation dialog box that asks for administrative permission when you’re installing an app, running a setup, or uninstalling anything? That is the UAC prompt.

If it is getting too annoying for you and want to disable the UAC prompt, this article lists all the methods to do so on Windows 11. But before we show you how to do it, let us learn what it is, and whether it should be turned off or not.

Table of Contents

What is User Account Control (UAC)

User Account Control prompt

User Account Control prompt

The UAC is a Windows security feature that prevents the unauthorized execution of apps and processes with administrative privileges and also prevents malicious software from running on your computer.

When an app or a program is making changes to your computer, a popup emerges asking for user consent, as in the image above.

In simpler words, it is just an extra precautionary measure by Windows to ensure that no task is run without the user’s consent, and thus, you are prompted with a dialog box for confirmation.

Is it Safe to Disable UAC?

Now that we know the role of UAC, disabling UAC is not the smart choice. Although most tasks performed by the end user, like installing or uninstalling an app, are done with complete consciousness, a UAC prompt gives a second chance to the user to reconsider their action.

Not only that but any malicious action performed by software or piece of code could also be blocked by the UAC. Additionally, any occurrences happening in the background would be highlighted and brought to the user’s attention with the help of the UAC prompt.

Therefore, we recommend that you do not disable the UAC, and only do it when it is necessary. After that, you can re-enable it.

UAC Security Levels

If you read ahead, you will find that the UAC has different security levels. each of those security levels defines how the UAC will work, when the end user will be prompted with a UAC, and when the prompt will not be generated.

Here are the details of the 4 security levels of UAC:

  • Always notify

    A UAC prompt will appear when an app or a program tries to make changes to your system. It will also notify you when you try to change Windows settings. Additionally, it freezes background tasks until the user responds.

  • Notify me only when apps try to make changes to my computer

    This is the default Windows UAC level and only notifies you when an app tries to install or make changes to your PC. It also freezes background tasks until you respond.

  • Notify me only when apps try to make changes to my computer (do not dim my desktop)

    This option will display the UAC prompt but it does not freeze the background tasks, nor does it dim the desktop.

  • Never notify

    Selecting this option completely disables the UAC. No prompts will pop up.

Let us now continue to see the different methods to disable UAC when needed.

Disable UAC on Windows

Disable UAC from Control Panel

The following steps allow you to disable the UAC from the Control Panel:

  1. Press Windows Key + R to open the Run Command box.

  2. Type in “Control” and press Enter to open the Control Panel.

  3. Click “User Accounts.”

    Open User Account settings in Control Panel

    Open User Account settings in Control Panel
  4. Click “User Accounts” again.

    Click User Accounts again

    Click “User Accounts” again
  5. Click “Change User Account Control settings.”

    Change UAC settings from Control Panel

    Change UAC settings from Control Panel
  6. Drag the slider on the left to the bottom and click Ok.

    Disable UAC from the Control Panel

    Disable UAC from the Control Panel
  7. [Conditional] If UAC was already enabled, you will be prompted with a UAC. Click Yes.

UAC will now be disabled.

If you want to re-enable it again, simply return the slider inside the “Change User Account Control settings” page to its original UAC security level.

Default UAC setting from Control Panel

Default UAC setting from Control Panel

Disable UAC from Group Policy Editor

To disable the UAC prompts from the Group Policy editor, use these steps:

  1. Press Windows Key + R to open the Run Command box.

  2. Type in “gpedit.msc” and press Enter to open the Group Policy Editor.

  3. Navigate to the following path from the left side of the Group Policy Editor:

    Local Computer Policy > Computer Configuration > Windows Settings > Security Settings > Local Policies > Security Options
    
  4. Double-click the policy “User Account Control: Run all administrators in Admin Approval Mode” in the right pane.

    Open UAC Group Policy

    Open UAC Group Policy
  5. Select “Disabled” and then click Apply and Ok.

    Disable UAC from Group Policy Editor

    Disable UAC from Group Policy Editor
  6. Now press Windows Key + R again and type in “CMD“, then press CTRL + Shift + Enter to open the Command Prompt with elevated rights.

  7. Execute the following command to implement the changes in the Group Policy Editor:

    GPUpdate /Force
    Apply Group Policy changes

    Apply Group Policy changes

UAC will now be disabled.

However, if you want to enable it again, return to the “User Account Control: Run all administrators in Admin Approval Mode” Group Policy and enable it.

Disable UAC from Registry Editor

You can also disable the UAC from the Windows Registry Editor. Here is how:

Note: Misconfiguration of critical values in the system’s registry could be fatal for your operating system. Therefore, we insist that you create a system restore point or a complete system image backup before proceeding forward with the process.

You can also use our top selection of disk imaging and backup software so you never lose your data or operating system again.

  1. Press Windows Key + R to open the Run Command box.

  2. Type in “regedit” and press Enter to open the Registry editor.

  3. Navigate to the following path from the left pane:

    Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
    
  4. Double-click the DWORD “EnableLUA.”

    Open the EnableLUA DWORD in Windows Registry

    Open the EnableLUA DWORD in Windows Registry
  5. Change the Value Data to 0 and click Ok.

    Disable UAC from Windows Registry

    Disable UAC from Windows Registry
  6. Restart the computer.

Once the computer restarts, you will notice that the UAC has been disabled.

To re-enable it, return to the System key using the Registry Editor, double-click the DWORD “EnableLUA,” and set its Value Data to 1.

Disable UAC from Command Prompt

If you are a fan of the Command Line Interface (CLI), then you can also disable UAC directly from the Command Prompt with a single command. Here are the steps to follow:

  1. Press Windows Key + R to open the Run Command box.

  2. Type in “CMD” and then press CTRL + Shift + Enter to open the Command Prompt with elevated rights.

  3. Run the following command:

    reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f
    Disable UAC from Command Prompt

    Disable UAC from Command Prompt
  4. Now restart the computer.

The steps above will make changes to the EnableLUA DWORD in the Windows Registry and disable UAC.

To re-enable UAC, run the following command in an elevated Command Prompt:

reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f

Disable UAC from Windows PowerShell

Similar to the Command Prompt, you can also disable UAC from PowerShell. Here is how:

  1. Press Windows Key + R to open the Run Command box.

  2. Type in “PowerShell” and then press CTRL + Shift + Enter to open PowerShell with elevated rights.

  3. Run the following command:

    Set-ItemProperty -Path REGISTRY::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System -Name ConsentPromptBehaviorAdmin -Value 0
    Disable UAC from PowerShell

    Disable UAC from PowerShell
  4. Now restart the computer.

UAC will now be disabled when the computer restarts.

If you want to re-enable UAC, use this command in PowerShell:

Set-ItemProperty -Path REGISTRY::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System -Name ConsentPromptBehaviorAdmin -Value 1

These are all the methods you can disable (or enable) UAC on a Windows computer. Let us now show you how to do the same on a remote computer that is on the same network.

Disable UAC Remotely

You can disable the User Account Control on a remote computer as well using the Command Prompt. This method can be used by sysadmins to get the task done without having to leave their computer.

To disable UAC on a remote PC, we must use PsTools by SysInternals – which is a suite of command-line tools for the Windows operating system. Using the PsExec utility inside this suite, you can remote access the Command Prompt of the target PC and then run any command.

Use the following steps to disable UAC on a remote computer:

  1. Start by downloading and extracting PsTools.

    Extract PsTools

    Extract PsTools
  2. Launch an elevated Command Prompt and use the CD cmdlet to change the directory to the extracted folder:

    CD [PathToExtractedPsTools]
    Change directory to extracted PsTools folder

    Change directory to extracted PsTools folder
  3. Now use the following command syntax to connect to the remote computer:

    PsExec -i \\[RemoteComputerName] -u [Username] -p [Password] cmd

    Replace [RemoteComputerName] with the name of the PC you want to connect to, [Username] with the account name, and [Password] with the account password. Make sure that the account you are logging in with has administrative rights.

    Connect to remote PC using PsExec

    Connect to remote PC using PsExec

    You will now be connected to the remote PC.

  4. Now, use the following command to disable UAC on the remote PC:

    reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f
    Disable UAC on the remote computer

    Disable UAC on the remote computer
  5. Now run the following command to restart the remote PC:

    Shutdown /r
    Restart the remote computer

    Restart the remote computer

When the remote computer restarts, UAC will be turned off.

To re-enable it, you will need to use the PsExec tool again. Connect to the remote computer again using the command given above, and then use this command to re-enable UAC:

reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f

Note that these are the exact same commands to disable or enable UAC on your local computer. This is because PsExec has launched a Command prompt instance on the remote computer and any commands running after establishing the connection will be on the remote PC.

Final Verdict

As mentioned earlier, it is not entirely safe to disable User Account Control. However, there are certain moments when it is absolutely necessary. That being said, we always recommend that you re-enable UAC when you no longer need it disabled.

This article lists multiple methods of disabling UAC on the local computer as well as on a remote computer on the same network.

When you try to install programs in administrator mode or make any system change, a UAC prompt will pop up that alerts you to confirm your changes or operations. As a personal computer user, you may not want to disable these UAC prompts. In this tutorial we’ll show you 3 ways to turn on or off UAC (User Account Control) in Windows 10.

uac-prompt

Method 1: Turn On / Off UAC in WIndows 10 via Control Panel

  1. Open the Control Panel in Windows 10. Set the View by option to Large icons, and then click User Accounts.

    user-accounts

  2. Click on the Change User Account Control settings link.

    change-uac-settings

  3. In order to turn off UAC, move the slider to the bottom (Never Notify) and click OK. If you want to turn on UAC, move the silder to the top (Always notify).

    uac-settings

  4. If prompted by UAC, click on Yes to continue. Reboot your computer for the change to take effect.

Method 2: Turn On / Off UAC in WIndows 10 via Registry Editor

  1. Open Registry Editor by pressing Windows + R key combination, type in regedit and press Enter.

    If prompted by UAC, click on Yes to continue.

  2. In the left-side pane of Registry Editor, navigate to the following key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

    EnableLUA

    In right-side pane, double-click EnableLUA to modify.

  3. In the Value data box, type 0 if you want to turn off UAC, or type 1 to turn on UAC. Click OK.

  4. Exit Registry Editor and reboot your computer.

Method 3: Turn On / Off UAC in WIndows 10 via Command Line

  1. Press the Windows + X key combination, and then select “Command Prompt (Admin)” from the popup menu. When prompted by UAC, click Yes.
  2. To turn off UAC, copy and paste the following command in the Command Prompt, and press Enter.
    reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f

    disable-uac-via-cmd

    To turn on UAC, paste the following command into Command Prompt and press Enter.
    reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f

  3. After you enable or disable UAC, you will have to reboot your computer for the changes to take effect.

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Приложение центр отзывов windows 10 что это
  • Как сменить цвет выделения текста в windows 10
  • Панель задач пропали значки windows 10
  • Горячие клавиши для создания новой папки в windows 10
  • Acer aspire 5560g drivers windows 7