Always run a given program as an administrator in Windows 8.1 without prompt

8

2

I have set up a program to always run as an administrator using the Compatability setting in Properties, which is necessary as the program always require administrator rights. Is there a way to make so that the User Account Control prompt does not always pop up and require me to confirm that I want to run this as an administrator? I am on an administrator account. I know I can simply turn off all User Account Control notifications, but I would rather not do this for security purposes; rather, I just want UAC settings to remember the choice I made regarding running the program as an administrator but not prompt me to confirm it.

This is an example of what I want, but that was made for Windows 7 and I'm not sure how well it work in 8.1.

Jon Claus

Posted 2013-10-23T01:33:36.433

Reputation: 210

What you want requires a prompt – Ramhound – 2013-10-23T02:00:30.250

-1 re your last line, you're not sure how well it will work in windows 8.1? try it – barlop – 2013-10-24T18:26:58.867

even when given an answer of what to try, you don't know whether it will work unless you try it. that guide you link to has lots of pictures and you haven't struggled with any of it 'cos you haven't tried it. you haven't found it daunting you just haven't tried it. You could've tried it in the time it took to write your question. And if you tried it and it hadn't worked then you could've written a far better more well informed question. – barlop – 2013-10-24T18:36:26.560

Answers

8

The Task Scheduler trick you mention still works fine in Windows 8.x. I use it daily. You can use it without any issues.

magicandre1981

Posted 2013-10-23T01:33:36.433

Reputation: 86 560

3+1 to cancel the idiot that downvoted you without comment. – barlop – 2013-10-24T18:27:26.163

2

Open Windows PowerShell (open it as an Administrator) and Run below registry settings:

Set-ItemProperty -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableLUA" -Value "0"

Santosh S

Posted 2013-10-23T01:33:36.433

Reputation: 45

2-1 because he said he doesn't want to disable the UAC. – magicandre1981 – 2014-02-04T18:42:38.097

1

Click here for a few options:

The first involves creating a link to a task you will create using task manager for the application. The task is set to launch immediately and with elevated privileges and the other solutions rely on 3rd party software.

Search Words: uac suppress prompt

Mrbios

Posted 2013-10-23T01:33:36.433

Reputation: 21

1

You can use Microsoft's Windows Assessment and Deployment Kit(ADK)'s Compatibility Administrator. You can find a good starting tutorial here.

Patrick

Posted 2013-10-23T01:33:36.433

Reputation: 11

2

Welcome to Super User! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.

– Mokubai – 2014-08-12T20:43:47.817

0

The best way I found was to go to the EXE file, right-click and select Troubleshoot compatibility. There you'll have an option to select that the program requires additional permissions at which point the program will be changed to run as administrator. Save the changes and you're all set.

Toni Kostelac

Posted 2013-10-23T01:33:36.433

Reputation: 141

1this triggers the UAC prompt again which he wants to avoid ;) – magicandre1981 – 2014-07-24T04:10:43.310