![]() |
The following step describes how to query the agent presence capabilities of the platform’s Intel AMT device.
2. Retrieve the instance of AMT_AgentPresenceCapabilities., where the “InstanceID” key equals “Intel(r) AMT Agent Presence Capabilities”. Examine the fields of the object.
Click here for a snippet demonstrating this step
See the General Info Get Core Version use case for the GetCoreVersion function.
You can execute this snippet by inserting it into the execution template found here.
$agentPresenceCapabilitiesRef =$wsmanConnectionObject.NewReference("SELECT * FROM AMT_AgentPresenceCapabilities WHERE InstanceID='Intel(r) AMT Agent Presence Capabilities'")
$agentPresenceCapabilitiesInstance =$agentPresenceCapabilitiesRef.Get()
$maxTotalAgents =$agentPresenceCapabilitiesInstance.GetProperty("MaxTotalAgents")
$maxTotalActions =$agentPresenceCapabilitiesInstance.GetProperty("MaxTotalActions")
$minGuaranteedActionListSize =$agentPresenceCapabilitiesInstance.GetProperty("MinGuaranteedActionListSize")
$fwVersion = GetCoreVersion
if($fwVersion.ToString() -ge "4.0")
{
$maxEacAgents =$agentPresenceCapabilitiesInstance.GetProperty("MaxEacAgents")
}
Instance Diagram
Classes Used in This Flow
SDK Sample
If there is a sample demonstrating this flow, it is included in the SDK installation file. See SDK Installation Layout for details.
See Also: |
Copyright © 2006-2022, Intel Corporation. All rights reserved. |