vote up 3 vote down star

Is there any way to configure application that requires admin rights (elevation) so it's automatically started with elevated privileges and does not request elevation on every startup?

For example, I have Riva Tuner that always starts with windows. And it always asks for elevation via UAC. I need Riva Tuner to silently start with elevated privileges and without any message from user account control (without disabling it).

flag

3 Answers

vote up 5 vote down check

This article covers quite a few options of how to do this. Among them are:

  • Using BeyondTrust in the Enterprise
  • Use Task Manager to launch startup applications
  • Use the Application Toolkit to disable UAC for selected application
  • Switch off UAC (Not Recommended / Bad Practice)

The option to Always run as administrator available when Right Clicking and going to Properties will still cause a UAC prompt, it just forces the application to always launch as administrator.

The other option is to edit the local machine policy and allow administrators to launch applications without being prompted. Will update post shortly with directions.

link|flag
vote up 2 vote down

The simplest and best way to do this is to set your application to be started when you log in, with Task Scheduler (Start search, or Administrative Tools -> Task Scheduler).

  1. Check the "Run with highest privileges" box on the General tab.
  2. On the Triggers tab, create a new trigger for when you log in.
  3. On the Actions tab, create a new action to start your chosen application.

This will launch your program as Administrator whenever you start up and log in.

link|flag
vote up 0 vote down

Right click, properties, 'compatibility' tab, there's a checkbox for 'privilege level', run program as administrator

link|flag
This will still prompt you for elevation even if it is ticked. This just forces the application to always run as administrator. – Diago Jul 15 at 7:30
The idea behind this tab, as far as I understand, is to replace missing application's manifest (old application don't have one) and automatically request admin rights without having one. – inazaruk Jul 15 at 7:36

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.