ProcessModelIdentityType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the process model identity of an application pool.
public enum class ProcessModelIdentityType
public enum ProcessModelIdentityType
type ProcessModelIdentityType =
Public Enum ProcessModelIdentityType
- Inheritance
-
ProcessModelIdentityType
Fields
Name | Value | Description |
---|---|---|
LocalSystem | 0 | The application pool runs as NT AUTHORITY\SYSTEM. |
LocalService | 1 | The application pool runs as NT AUTHORITY\LOCAL SERVICE. |
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. |
ApplicationPoolIdentity | 4 |
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.