Disable UAC Admin Elevation Prompt via Regedit
This guide provides a straightforward walkthrough on how to disable the User Account Control (UAC) elevation prompt behavior for built-in administrators and users in the Administrator group using the Windows Registry Editor (Regedit). By altering this specific registry value, administrative tasks will run with elevated privileges automatically without displaying the standard consent or credential pop-up.
Step 1: Open the Registry Editor
- Press Windows Key + R to open the Run dialog box.
- Type
regeditand press Enter (or click OK). - If prompted by UAC, click Yes to allow access.
Step 2: Navigate to the UAC System Policies Key
In the Registry Editor address bar at the top, paste the following path and press Enter:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
Alternatively, you can manually expand the folders in the left navigation pane to reach the System key.
Step 3:
Modify the ConsentPromptBehaviorAdmin Value
- In the right pane of the System key, locate the
DWORD (32-bit) value named
ConsentPromptBehaviorAdmin. - If this value does not exist, right-click in an empty area in the
right pane, select New > DWORD (32-bit) Value, and
name it
ConsentPromptBehaviorAdmin. - Double-click
ConsentPromptBehaviorAdminto open its edit window. - Set the Value data to
0.0: Elevate without prompting (Disables the prompt and automatically permits administrative operations).
- Ensure the Base is set to Hexadecimal, then click OK.
Step 4: Apply the Changes
- Close the Registry Editor.
- Restart your computer or sign out and sign back into your Windows user account for the changes to take full effect.
Once configured, any application or action requiring administrative
rights initiated by an administrator account will elevate automatically
without interrupting your workflow with a UAC prompt. To revert this
setting to the default Windows behavior later, return to the same
registry value and change the data back to 5.