Once my program is installed on a client machine, how to force my program to run as administrator on Windows 7?
|
|
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
The user gets the UAC prompt when they start the program. Use wisely, their patience can wear out quickly. |
|||||
|
|
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 |
|||
|
|
|
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) |
|||||||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
Just one point I would like to add as per
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 |
|||
|
|
