is there a way to run iisexpress app pool under a different identity other than the currently logged in user?
I am getting around this problem using the “runas” command currently but I would like to know if there is something built-in to iisexpress that I can utilize.
It looks like this should be possible. In your IIS Express site’s applicationhost.config file, there is a
<processModel/>element defined in<applicationPoolDefaults>under<applicationPools>The
<processModel>element has attributes foruserNameandpassword.From MSDN:
This should allow you to run the site under different credentials from the logged in user.