![]() |
The DSP1011 DASH profile (Physical Asset Profile), Chapter 9.1 (System Chassis FRU Information) describes how to retrieve information about the system chassis. Other chapters also mention the computer system package.
Click here for a snippet demonstrating the necessary
steps
You can execute this snippet by inserting it into the execution template found here.
$chassisRef =$wsmanConnectionObject.NewReference("CIM_Chassis")
foreach($chassisItem in$chassisRef.Enumerate())
{
$chassisInstance =$chassisItem.Object
$manufacturer =$chassisInstance.GetProperty("Manufacturer")
$model =$chassisInstance.GetProperty("Model")
$version =$chassisInstance.GetProperty("Version")
$serialNumber =$chassisInstance.GetProperty("SerialNumber")
}
Instance Diagram
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: |
• The DMTF Profile descriptions at http://www.dmtf.org/standards/profiles/. |
Copyright © 2006-2022, Intel Corporation. All rights reserved. |