![]() |
The following steps describe how to remove a profile and disable 802.1x.
1. Retrieve the instance of IPS_IEEE8021xSettings, where the “InstanceID” key equals “Intel(r) AMT: 8021X Settings”.
2. Set IPS_IEEE8021xSettings.Enabled to “3” (disabled).
3. Invoke IPS_IEEE8021xSettings.Put to deactivate the profile.
Click here for a snippet demonstrating this step
You can execute this snippet by inserting it into the execution template found here.
$iee8021xSettingsRef =$wsmanConnectionObject.NewReference("SELECT * FROM IPS_IEEE8021xSettings WHERE InstanceID='Intel(r) AMT: 8021X Settings'")
$iee8021xSettingsInstance =$iee8021xSettingsRef.Get()
$iee8021xSettingsInstance.SetProperty("Enabled","3")# '3' = Disable
$iee8021xSettingsRef.Put($iee8021xSettingsInstance)
Instance Diagram
Classes Used in This Flow
SDK Sample
Not applicable
Copyright © 2006-2022, Intel Corporation. All rights reserved. |