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.

I have C# executable that I want to launch on Windows 7 without the dialogbox asking for run-as-administrator.. So here is my code inside the program that launches the C# executable named testApp.exe.

Process testApp = new Process();
testApp.StartInfo.FileName = "C:\\Program Files\\Common Files\\testApp.exe";
testApp.Start();

I also create the minfest for both programs. app.manifest for testApp.exe and app.manifest for the program that launches testApp.exe, and then I change the following line in both manifest to:

requestedExecutionLevel level="requireAdministrator" uiAccess="false"

When I double click on the testApp.exe to run it, testApp.exe program crashes, but when I run it as administrator, it works fine, no crash. So this behavoir also happens the same when i run the program that launches the testApp.exe, testApp.exe crashes.

I must do something wrong here. Do I need to change the name of the manifest because I use the default names that are generated by visual studio 2010.

thanks.

share|improve this question
thanks for the link. the post suggested to use requireAdministrator in the manifest but I want the executable to run administrator without the prompting dialogbox. – Bopha Sep 24 '12 at 0:43

2 Answers

up vote 0 down vote accepted

Actually you should only be using

requestedExecutionLevel level="requireAdministrator" uiAccess="false"

only when you want to run as administrator.

Change this to:

requestedExecutionLevel level="asInvoker" uiAccess="false"

And you'll be good to go.

share|improve this answer
thanks for the respond. I use asInvoker but it does not solve the issue. When I comemt out the code that references a third party DLL, it runs fine but when I dont comment out, it crashes. – Bopha Sep 24 '12 at 0:47
That means your third party DLL has to run in elevated mode, so your best option is to run as administrator. Bypassing the UAC prompt without running as administrator is a long complicated process. – Chibueze Opata Sep 24 '12 at 8:22
thank you Opata – Bopha Sep 28 '12 at 19:29

Opata's answer is on the spot. Check this link on how to embed this inside your project: http://www.developerfusion.com/code/7987/making-a-net-app-run-on-vista-with-administrator-priviledges/

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.