2

After reading a lot of answers (example) , I didn't find one that supply the whole solution to my problem.

Brief :

My problem basically is that If i'm setting the policy to run every program as elevated , then - in that case it does work , but then I can't run basic programs like calc.exe.

Details :

I have windows 10 pro. My user name is Dalits . I'm in the administrator's group :

enter image description here

Running secpol.msc — this is the settings of UAC :

enter image description here

Ok so let's start->run->cmd.exe :

enter image description here

Great. it runs as admin.

But Now I want calc.exe (start->run->calc.exe) :

enter image description here

Question

How can I configure my Win10 to run all programs as elevated AND allow basic programs like calc.exe (etc , I mean all programs) to run also.

Royi Namir
  • 5,888

1 Answers1

1

You can add a registry entry that will allow an administrator account to run applications that are otherwise blocked (calc, edge, etc.):

With regedit, browse to:

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

Create a new 32 Bit DWORD entry named FilterAdministratorTokenand set it's value to 1.

Reboot, and it should work.

Source

Disclaimer - I last tried this on one of the original win 10 releases when logged in directly as the built-in Administrator account; its entirely possible the security model has changed.

Argonauts
  • 4,490