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.

link|improve this question

50% accept rate
I'm trying to understand your scenario better can you email me at sayedha [AT] (microsoft){.com}? – Sayed Ibrahim Hashimi Apr 15 '11 at 5:07
feedback

3 Answers

up vote 4 down vote accepted

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 for userName and password.

From MSDN:

Specifies that ASP.NET will run the worker process with a Windows identity that is different from the Windows identity for the default process identity. By default, this attribute is set to the Machine, and the process runs under a user account named ASPNET that is created automatically when ASP.NET is installed. The password for the ASPNET account is cryptographically generated at the time of installation. If valid credentials are presented in this attribute and the password attribute, the process is run with the given account.

This should allow you to run the site under different credentials from the logged in user.

link|improve this answer
Awesome, worked like a charm! – theKing Mar 16 '11 at 23:35
feedback

"runas" is only the solution. IIS Express maynot respect processModel settings which are defined in applicationhost.config file.

link|improve this answer
feedback

I wonder if this really works - IIS Express seems to run all application pools in the same process - and that process is executed in the context of the current user...?

Seems the "Run as" option could work, but that would require us to launch IIS Express from the command line (or build event) instead of relying on Visual Studio starting it up. :(

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.