I have an application that does a loop which starts some processes programmatically one by one. My app itself runs under a standard user, but I need to run only those processes as admin so I can install them.

To achieve this, I use the 4th response from this thread

My two questions are:

  1. is that code which is pointed in the above response, supposed to ensure that the process automatically runs as admin, or that the user is shown a dialog where he chooses whether to run as admin or not? I am confused by what this code is supposed to do.

  2. Also, in case a dialog is supposed to be given to the user - how can the app be coded, so that the first user option is remembered in my loop for the next processes started with the verb "runas" ? So basically to store somewhere the user option (run as admin or not) for the other processes.

Thank you in advance

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

First question: It is how to start an elevated process from a non-elevated one.

Second question: there isn't -- or at least shouldn't! -- be any way for a non-elevated process to elevate anything without a user prompt. The best solution for your program is either to start it off with admin rights, or to use the first elevation request as an opportunity to restart with them (using the technique you linked to).

link|improve this answer
about your 2nd answer - that is exactly what I want to do - to use the first elevation request and remember the user action in a variable. is that possible? – Andrei Cristof Aug 13 '11 at 16:52
The only way is for your own code to be elevated. – Artfunkel Aug 13 '11 at 17:03
thank you very much – Andrei Cristof Aug 13 '11 at 17:09
feedback

Your Answer

 
or
required, but never shown

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