![]() |
The following steps describe how to retrieve the DDNS settings.
1. Retrieve the instance of AMT_GeneralSettings, where the “InstanceID” key equals “Intel(r) AMT: General Settings”.
2. Examine AMT_GeneralSettings.DDNSPeriodicUpdateInterval, AMT_GeneralSettings.DDNSTTL, AMT_GeneralSettings.DDNSUpdateEnabled to see the DDNS settings.
Click here for a snippet demonstrating this step
You can execute this snippet by inserting it into the execution template found here.
$generalSettingsRef =$wsmanConnectionObject.NewReference("SELECT * FROM AMT_GeneralSettings WHERE InstanceID='Intel(r) AMT: General Settings'")
$generalSettingsInstance =$generalSettingsRef.Get()
$ddnsPeriodicUpdateInterval =$generalSettingsInstance.GetProperty("DDNSPeriodicUpdateInterval")
$ddnsTTL =$generalSettingsInstance.GetProperty("DDNSTTL")
$ddnsUpdateEnabled =$generalSettingsInstance.GetProperty("DDNSUpdateEnabled")
Instance Diagram
Classes Used in This Flow
SDK Sample
Not applicable
Copyright © 2006-2022, Intel Corporation. All rights reserved. |