| Win32_Account | |||
| The Win32_Account class contains information about user accounts and group accounts known to the Win32 system. User or group names recognized by a Windows NT domain are descendents (or members) of this class. The Win32_Account class is not included in a default hardware inventory operation. | |||
| NameSpace Path | |||
| \ROOT\CIMV2 | |||
| PROPERTY | SMS_REPORT | CIMTYPE | DESCRIPTION |
| Caption | String | The Caption property is a short textual description (one-line string) of the object. | |
| Description | String | The Description property provides a textual description of the object. | |
| Domain | String | The Domain property indicates the name of the Windows domain to which a group or user belongs. Example: NA-SALES | |
| InstallDate | DateTime | The InstallDate property is datetime value indicating when the object was installed. A lack of a value does not indicate that the object is not installed. | |
| LocalAccount | Boolean | The LocalAccount property indicates whether the account is defined on the local machine. To retrieve only accounts defined on the local machine state a query that includes the condition 'LocalAccount=TRUE'. | |
| Name | String | The Name property indicates the name of the Win32 system account on the domain specified by the Domain member of this class. | |
| SID | String | The SID property contains the security identifier (SID) for this account. a SID is a string value of variable length used to identify a trustee. Each account has a unique SID issued by an authority (such as a Windows domain), stored in a security database. When a user logs on, the system retrieves the user's SID from the database and places it in the user's access token. The system uses the SID in the user's access token to identify the user in all subsequent interactions with Windows security. When a SID has been used as the unique identifier for a user or group, it cannot be used again to identify another user or group. | |
| SIDType | UInt8 | The SIDType property contains enumerated values that specify the type of security identifier (SID). SIDTypes include: SidTypeUser - Indicates a user SID. SidTypeGroup - Indicates a group SID. SidTypeDomain - Indicates a domain SID. SidTypeAlias - Indicates an alias SID. SidTypeWellKnownGroup - Indicates a SID for a well-known group. SidTypeDeletedAccount - Indicates a SID for a deleted account. SidTypeInvalid - Indicates an invalid SID. SidTypeUnknown - Indicates an unknown SID type. SidTypeComputer - Indicates a SID for a computer. | |
| Status | String | The Status property is a string indicating the current status of the object. Various operational and non-operational statuses can be defined. Operational statuses are "OK", "Degraded" and "Pred Fail". "Pred Fail" indicates that an element may be functioning properly but predicting a failure in the near future. An example is a SMART-enabled hard drive. Non-operational statuses can also be specified. These are "Error", "Starting", "Stopping" and "Service". The latter, "Service", could apply during mirror-resilvering of a disk, reload of a user permissions list, or other administrative work. Not all such work is on-line, yet the managed element is neither "OK" nor in one of the other states. | |
| SAMPLE DATA INSTANCE | |||
|    [LOCALE(1033): ToInstance Amended]    instance of Win32_SystemAccount    {     Caption = "SCCM01\\Everyone";     Description = "SCCM01\\Everyone";     Domain = "SCCM01";     LocalAccount = TRUE;     Name = "Everyone";     SID = "S-1-1-0";     SIDType = 5;     Status = "OK";    }; | |||