SID_NAME_USE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntifs.h

typedef enum _SID_NAME_USE {
  SidTypeUser,
  SidTypeGroup,
  SidTypeDomain,
  SidTypeAlias,
  SidTypeWellKnownGroup,
  SidTypeDeletedAccount,
  SidTypeInvalid,
  SidTypeUnknown,
  SidTypeComputer,
  SidTypeLabel,
  SidTypeLogonSession
} SID_NAME_USE, *PSID_NAME_USE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-ntifs-_sid_name_use)

_SID_NAME_USE enumeration

Description

The SID_NAME_USE enumeration type contains values that specify the type of a security identifier (SID).

Constants

SidTypeUser

This value indicates a user SID.

SidTypeGroup

This value indicates a group SID.

SidTypeDomain

This value indicates a domain SID.

SidTypeAlias

This value indicates an alias SID.

SidTypeWellKnownGroup

This value indicates an SID for a well-known group.

SidTypeDeletedAccount

This value indicates a SID for a deleted account.

SidTypeInvalid

This value indicates an invalid SID.

SidTypeUnknown

This value indicates an unknown SID type.

SidTypeComputer

This value indicates a SID for a computer.

SidTypeLabel

SidTypeLogonSession

Remarks

This enumeration type is the same as the Win32 SID_NAME_USE enumeration type defined in winnt.h used by the Win32 LookupAccountName and LookupAccountSid functions.

See also

SecLookupAccountSid

SecLookupAccountName