This command returns the network account to be used by local software system applications to access the firmware WS-Management interface. This account has access to local realms only. This command is used by host-based setup and by other applications that access Intel AMT settings without having Intel AMT credentials.
CFG_GetLocalSystemAccount Request
typedef struct _CFG_GET_LOCAL_SYSTEM_ACCOUNT_REQUEST
{
PTHI_MESSAGE_HEADER Header;
UINT8 Reserved[40];
} CFG_GET_LOCAL_SYSTEM_ACCOUNT_REQUEST;
Field |
Description |
Header.Version |
Major and minor interface version. |
Header.Reserved |
0000h |
Header.Command |
04000067h |
Header.Length |
Message Length, excluding the message header. |
Reserved |
Reserved for future input parameters |
CFG_GetLocalSystemAccount Response
typedef struct _CFG_GET_LOCAL_SYSTEM_ACCOUNT_RESPONSE
{
PTHI_MESSAGE_HEADER Header;
AMT_STATUS Status;
[success] CHAR[CFG_MAX_ACL_USER_LENGTH] UserName;
[success] CHAR[CFG_MAX_ACL_PWD_LENGTH] Password;
} CFG_GET_LOCAL_SYSTEM_ACCOUNT_RESPONSE;
Field |
Description |
Header.Version |
Major and minor interface version. |
Header.Reserved |
0000h |
Header.Command |
04800067h |
Header.Length |
Message Length, excluding the message header. |
Status |
A status code returned in a response message that indicates whether the operation specified in the corresponding request message succeeded or failed. If the operation failed, this code indicates the specific reason for failure. |
UserName |
User name in ASCII character set. The string is NULL terminated. CFG_MAX_ACL_USER_LENGTH is 33 |
Password |
Password in ASCII char set. The string is NULL terminated. CFG_MAX_ACL_PWD_LENGTH is 33 |
CFG_GetLocalSystemAccount Status Codes
Status |
Description |
AMT_STATUS_SUCCESS |
Request succeeded. |
AMT_STATUS_INTERNAL_ERROR |
An internal error in the Intel AMT device has occurred |
AMT_STATUS_INVALID_MESSAGE_LENGTH |
Length field of header is invalid. |
AMT_STATUS_NOT_FOUND |
Returned if the local system account was disabled or if its password was changed by the Network Administrator. |
Copyright © 2006-2022, Intel Corporation. All rights reserved. |