1

I know that WebMatrix does not have Pool concepts, but can I put my WebSite in Webmatrix to run in context of a specified User?

Taryn East
  • 27,486
  • 9
  • 86
  • 108
LuigleDR
  • 309
  • 1
  • 2
  • 13

1 Answers1

1

WebMatrix uses IIS Express7.5 server and by default IIS Express runs as current user. You have two options.

  1. You can start WebMatrix as some particular user using 'runas' command. For Example: runas /noprofile /user:mymachine\administrator "%programfiles%\Microsoft Webmatrix\webmatrix.exe"

  2. check how to run iisexpress app pool under a different identity

Community
  • 1
  • 1
vikomall
  • 17,379
  • 6
  • 49
  • 39