SetAMTFeatures¶
Use this AMT method to enable or disable Intel® AMT features such as KVM, SOL, and IDE-R.
Example: Request Body¶
Important
More information on obtaining an AMT device's GUID can be found here.
Note: The following code block is an example of what would be the data sent as part of the POST request.
//amt method
{
"method":"SetAMTFeatures",
"payload":{
"guid":"038d0240-045c-05f4-7706-980700080009", //Replace with an AMT Device's GUID
"userConsent":"all"
"enableSOL": false,
"enableIDER": false,
"enableKVM": true
}
}
Example : Success ResponseBody¶
'200':
{
"ResponseBody":"Updated"
}
Return to MPS Methods