Hello people!
I have a special web site that can create new sites using IIS7 ServerManager:
using (ServerManager serverManager = new ServerManager())
{
// create new site logic here
}
This special site has to be running under system account to be able to manage IIS7. Is there any way to create a special windows user to be set as site's application pool identity and give this user special rights only to access IIS7 but not a full system access?
The reason why I want to do this is to give site's process identity as less permissions as possible.
Please let me know if the question is not clear enought :)