The following steps describe how to retrieve the Intel AMT release version from the Intel AMT device.
1. Retrieve the instance of CIM_SoftwareIdentity where the “InstanceID” key equals “AMT FW Core Version”.
2. Examine the CIM_SoftwareIdentity.VersionString property to see the Intel AMT core version. For example:
Property | Value |
VersionString | “6.0.0” |
Click here for a snippet demonstrating this step
You can execute this snippet by inserting it into the execution template found here.
function GetCoreVersion
{
$softwareIdentityRef = $wsmanConnectionObject.NewReference("SELECT * FROM CIM_SoftwareIdentity WHERE InstanceID='AMT FW Core Version'")
$softwareIdentityInstance = $softwareIdentityRef.Get()
$versionString = $softwareIdentityInstance.GetProperty("VersionString")
return $versionString
}
Instance Diagram

Classes Used in This Flow
SDK Sample
Located at:<SDK_root>\Windows\Intel_AMT\Samples\WS-Management\GeneralInfo
Copyright © 2006-2012, Intel Corporation. All rights reserved. |