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);