Settings can't be opened using the Built-in Administrator account in Windows 10

22

8

In Windows 10, when trying to open the Language preferences by using the icon on the right side of the taskbar, "Settings can't be opened using the Built-in Administrator account in Windows 10" error is encountered as shown on the image below. Is there any fix regarding to this problem by changing settings in Windows 10 or applying an update from Microsoft's web site?

enter image description here

Murat Yıldız

Posted 2016-01-13T06:01:29.907

Reputation: 330

Answers

20

Yes, this is kind of tricky. I had the same issue last week. Simple google search will help you with answer.

Step 1

  • Navigate to your local security policy on your Windows 10 workstation – You can do this by typing secpol.msc at a search/run/command prompt.
  • Under Local Policies/Security Options navigate to “User Account Control Admin Approval Mode for the Built-in Administrator account“
  • Set the policy to Enabled

Here is the reference Updated for Windows 10 Home User

Step2:

Updated for Windows 10 Home Users

For Windows 10 Home users, the local security policy editor doesn’t exist. However, most of the policy changes that can be made using the policy editor can also be made using the registry. I have not tested this on a Windows 10 Home system, however, changing this registry key should be the equivalent to enabling the policy above – See the UAC registry guide from Microsoft

Navigate to the following registry key:

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

  • Create a DWORD value if it doesn’t already exist called FilterAdministratorToken
  • Set the value to 1

Next we need to navigate to the registry and make an additional change:

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\UIPI
  • Change the Default string key to 0x00000001(1)

    Image1 Image2

Finally, restart Windows and then you will be able to enjoy Edge under your Built-in Administrator account, and won't have to deal with that error.

manjesh23

Posted 2016-01-13T06:01:29.907

Reputation: 1 404

“User Account Control Admin Approval Mode for the Built-in Administrator account“ was already Enabled. But, applying the extra methods mentioned on the reference solved the problem. I think it is better to update your answer by adding the other step so that Windows 10 users will also benefit from it. Voted+ – Murat Yıldız – 2016-01-13T10:37:46.570

What is the addition step required in my answer, if you comment it here I can modify my answer. – manjesh23 – 2016-01-13T14:06:23.147

After the part of the title: "Updated for Windows 10 Home User" on the reference link. – Murat Yıldız – 2016-01-13T14:10:15.460

Updated my answer as suggested. Will this works? – manjesh23 – 2016-01-13T14:25:25.767

I think it is better to post the full answer instead of give link as the link might not work in the future. On the other hand, stackoverflow administrators suggest this as well for the same problem. – Murat Yıldız – 2016-01-13T14:39:42.163

Now it is ok by covering all of the mentioned steps. Thanks. – Murat Yıldız – 2016-01-14T06:46:08.560

2For me, I had to enable UAC, launch the application once, then re-disable UAC for this to work. – Sandy Chapman – 2016-03-31T18:26:06.693

That string value of 0x00000001(1) is kinda strange. It looks like the display for a DWORD value... – Goozak – 2016-11-11T18:40:41.333

1For dutch speaking people: The error message: "Microsoft Edge kan niet worden geopend met het ingebouwd administratoraccount. Meld u aan met een ander account en probeer het opnieuw."

The secpol.msc rule is found under and is called: "Beveiligingsinstellingen -> Lokaal beleid -> Beveiligingsopties -> "Gebruikersaccountbeheer: modus 'Door administrator goedkeuren' voor het ingebouwde administratoraccount".

I also set the "manage user accounts" slider to option "3". – juFo – 2017-05-30T12:34:22.113

In my case “User Account Control Admin Approval Mode for the Built-in Administrator account“ was also already Enabled. I enabled "Run all administrators in Admin Approval Mode" which resolved the issue after reboot. – Alexey Solonets – 2019-05-20T07:01:44.840

3

Beside enabling "User Account Control Admin Approval Mode for the Built-in Administrator account", you also should do this step:

Navigate to the following registry key:

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

Set EnableLUA to 1, then the system will ask you to restart, and viola, the problem is solved for good.

user3096089

Posted 2016-01-13T06:01:29.907

Reputation: 39

But, then you are also re-enabling UAC, which is annoying if you know what you are doing anyway. – MarioDS – 2016-06-24T09:06:21.540

1

Quicker Solution:

Just right click on START > COMMAND PROMPT (ADMIN) and enter this line:

Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\UIPI" /ve /t REG_SZ /d "0x00000001" /f  &&  Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "FilterAdministratorToken" /t REG_DWORD /d "0x00000001" /f

T.Todua

Posted 2016-01-13T06:01:29.907

Reputation: 2 436

1

You can create a Reg File with the following for easier integration/repetition.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"FilterAdministratorToken"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\UIPI]
@="0x00000001(1)"

FreeSoftwareServers

Posted 2016-01-13T06:01:29.907

Reputation: 962