CollapseAll image

Enable Local Time Sync

The following steps describe how to allow any configuration software to synchronize the AMT network time to coordinate with UTC.

1.  Retrieve the instance of AMT_TimeSynchronizationService, where “the “Name” key equals “Intel(r) AMT Time Synchronization Service”.

2.  Invoke  AMT_TimeSynchronizationService EnableLocalTimeSync

Click here for a snippet demonstrating this step

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

  

$timeSynchronizationServiceRef =$wsmanConnectionObject.NewReference("SELECT * FROM AMT_TimeSynchronizationService WHERE Name='Intel(r) AMT Time Synchronization Service'")

$inputObject =$timeSynchronizationServiceRef.CreateMethodInput("EnableLocalTimeSync")

$inputObject.SetProperty("Enable","true")

$outputObject =$timeSynchronizationServiceRef.InvokeMethod($inputObject)

$returnValue =$outputObject.GetProperty("ReturnValue")

 

 

Additional Information

None

Instance Diagram

Classes Used in This Flow

SDK Sample

Not applicable

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