I want to do an iisreset on a webserver after clicking on the save button of one of the screen in lightswitch application. I could achive that with below code. Now I wanted to have the iisreset command done with different user not the logged on user.

How can I execute iisreset with a specific set of user credentials?

Really appreciate your help on finding a solution.

dynamic shell = AutomationFactory.CreateObject("Shell.Application");
shell.ShellExecute(iisreset.exe, "/noforce", "", "", 0);
link|improve this question
feedback

2 Answers

I don't know that how to achieve this with just vbscript, but you can install utility like PsService & then restart the iisreset service where you can specify the username and password of user by which you have to perform this task.

link|improve this answer
feedback

You can use the runas command to launch it under a different user credentials. A full vbscript example is here: http://blogs.technet.com/b/heyscriptingguy/archive/2006/04/28/how-can-i-use-the-runas-command-to-run-a-script-under-alternate-user-credentials.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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