CollapseAll image

Get the Parameters of the Active Profile

The following steps describe how to get the active 802.1x profile.

1.  Retrieve the instance of AMT_8021XProfile, where the “InstanceID” key equals “Intel(r) AMT 802.1x Profile 0”.

2.  Examine AMT_8021XProfile.Enabled, AMT_8021XProfile.AuthenticationProtocol, AMT_8021XProfile.Domain and other fields to see the active profile’s parameters.

Click here for a snippet demonstrating this step

You can execute this snippet by inserting it into the execution template found here.

  

$8021XProfileRef =$wsmanConnectionObject.NewReference("SELECT * FROM AMT_8021XProfile WHERE InstanceID='Intel(r) AMT 802.1x Profile 0'")

$8021XProfileInstance =$8021XProfileRef.Get()

$enabled =$8021XProfileInstance.GetProperty("Enabled")

$authenticationProtocol =$8021XProfileInstance.GetProperty("AuthenticationProtocol")

$domain =$8021XProfileInstance.GetProperty("Domain")

 

 

Instance Diagram

Classes Used in This Flow

SDK Sample

Not applicable

 

Copyright © 2006-2022, Intel Corporation. All rights reserved.