Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Once my program is installed on a client machine, how to force my program to run as administrator on Windows 7?

share|improve this question
1  
Besides what Binary Worrier wrote, you might want to write some code to test if you have admin privileges .. (is that what you are asking for?) – lexu May 12 '10 at 11:14
10  
I would not take this task lightly though, you should verfiy what it actually needs admin for and see if you can work around it. No customer is going to be happy running an app in admin mode all the time. Alot of bigger customers won't even consider an app like that, and if logo testing matters to you it will not pass like that. – Alex May 12 '10 at 11:33

6 Answers

up vote 203 down vote accepted

You'll want to modify the manifest that gets embedded in the program. This works on VS2008 and higher: Project + Add New Item, select "Application Manifest File". Change the <requestedExecutionLevel> element to:

 <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />

The user gets the UAC prompt when they start the program. Use wisely, their patience can wear out quickly.

share|improve this answer
thanx mate.. thanx for the solution :) – Giggles.. Apr 5 at 5:47
This exact line of code didn't work for Vista. I wonder if it differs when handling this case. – Léon Pelletier May 27 at 1:43

Adding a requestedExecutionLevel element to your manifest is only half the battle, you have to remember that UAC can be turned off, if it is, you have to perform the check the old school way and put up a error dialog if the user is not admin (Call IsInRole(WindowsBuiltInRole.Administrator) on your threads CurrentPrincipal)

share|improve this answer
2  
Thank you for this answer. – Mikhail Orlov Oct 19 '10 at 11:49
4  
You could also use <requestedExecutionLevel level="highestAvailable" uiAccess="false" /> as well – Mark Kram Aug 14 '11 at 15:54

You can embed a manifest file in the exe, which will cause Windows Seven to always run the program as an administrator.

You can find more details here: http://msdn.microsoft.com/en-us/library/bb756929.aspx

share|improve this answer

In Visual Studio 2010 right click your project name. Hit "View Windows Settings", this generates and opens a file called "app.manifest". Within this file replace "asInvoker" with "requireAdministrator" as explained in the commented sections within the file.

share|improve this answer

Just one point I would like to add as per

<requestedExecutionLevel level="highestAvailable" uiAccess="false" />

you will want to add an application manifest if you dont already have one or dont know how to add one. as some projects dont automatically add a separate manifest file first go to project properties navigate to application tab and check to make sure your project is not excluding manifest at the bottom of the tap

next right click project add new Item last find and click Application Manifest File

share|improve this answer

while working on VS 2008. Right click on your Project -> Add New Item and then chose Application Manifest File. In manifest file you will find the tag 'requestedExecutionLevel' you may set the level to three values. OR OR to set your application to run as administrator you have to chose the middle one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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