ProcessModelIdentityType Enum

Definition

Specifies the process model identity of an application pool.

public enum class ProcessModelIdentityType
public enum ProcessModelIdentityType
type ProcessModelIdentityType = 
Public Enum ProcessModelIdentityType
Inheritance
ProcessModelIdentityType

Fields

ApplicationPoolIdentity 4
LocalService 1

The application pool runs as NT AUTHORITY\LOCAL SERVICE.

LocalSystem 0

The application pool runs as NT AUTHORITY\SYSTEM.

NetworkService 2

The application pool runs as NT AUTHORITY\NETWORK SERVICE. The default value.

SpecificUser 3

The application pool runs as a specific user account, defined by the UserName property.

Remarks

The values of this enumeration enable you to configure your application pools to run under the security context of an existing security account or a custom account. If you configure the process model to use the SpecificUser value, you must also configure the UserName and Password properties of the ApplicationPoolProcessModel class.

Applies to