Enum WindowsIdentityHelper.LogonType
Logon type used with LogonUser.
Namespace: SuperOffice.Security.Util
Assembly: SoCore.dll
Syntax
public enum WindowsIdentityHelper.LogonType
Fields
| Name | Description |
|---|---|
| Batch | This logon type is intended for batch servers, where processes may be executing on behalf of a user without their direct intervention; or for higher performance servers that process many clear-text authentication attempts at a time, such as mail or web servers. LogonUser does not cache credentials for this logon type. |
| Interactive | This logon type is intended for users who will be interactively using the machine, such as a user being logged on by a terminal server, remote shell, or similar process. This logon type has the additional expense of caching logon information for disconnected operation, and is therefore inappropriate for some client/server applications, such as a mail server. |
| Network | This logon type is intended for high performance servers to authenticate clear text passwords. LogonUser does not cache credentials for this logon type. |
| NetworkCleartext | Windows 2000/XP: This logon type preserves the name and password in the authentication packages, allowing the server to make connections to other network servers while impersonating the client. This allows a server to accept clear text credentials from a client, call LogonUser, verify that the user can access the system across the network, and still communicate with other servers. |
| NewCredentials | Windows 2000/XP: This logon type allows the caller to clone its current token and specify new credentials for outbound connections. The new logon session has the same local identify, but uses different credentials for other network connections. This logon type is supported only by the LOGON32_PROVIDER_WINNT50 logon provider. |
| Service | Indicates a service-type logon. The account provided must have the service privilege enabled. |
| Unlock | This logon type is intended for GINA DLLs logging on users who will be interactively using the machine. This logon type allows a unique audit record to be generated that shows when the workstation was unlocked. |