Is it possible to run a batch script as an administer? We need this to be done without any user interaction, so there can't be any password prompt or UAC popups - is this possible?

link|improve this question

60% accept rate
feedback

3 Answers

Assuming batch means some sort of windows then you could use the task scheduler to do this.

link|improve this answer
feedback

You can use a Joeware tool - CPAU.exe to accomplish this:

cpau.exe -u machinename\administrator -p secret_password -ex "path_to_a_program.exe" -lwop

This tool makes easy work of running a program in a privileged context on demand.

link|improve this answer
feedback

Assuming batch is refering to the UNIX command, you can issue batch commands as root user, too.

link|improve this answer
Given that he's referring to Administrator and UAC - he's not. – Driftpeasant Dec 12 '11 at 16:43
feedback

Your Answer

 
or
required, but never shown

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