Setup and Configuration of Intel AMT > Configuration Settings > Wi-Fi Port Configuration > Use Cases > Set/Get Wireless Local User Profile Synchronization Settings
CollapseAll image

Set/Get Wireless Local User Profile Synchronization Settings

The following steps describe how to determine whether Wireless Local User Profile Synchronization is enabled, and how to set it.

1.  Retrieve the instance of AMT_WiFiPortConfigurationService, where the “Name” key equals “Intel(r) AMT WiFi Port Configuration Service”.

2.  Examine the following property to determine the local user profile synchronization state:

Property

Value

localProfileSynchronizationEnabled

     0 – Local synchronization disabled

     1 - User profile synchronization

Click here for a snippet demonstrating this step

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

  

$wifiPortConfigurationServiceRef =$wsmanConnectionObject.NewReference("SELECT * FROM AMT_WiFiPortConfigurationService WHERE Name='Intel(r) AMT WiFi Port Configuration Service'")

$wifiPortConfigurationServiceInstance =$wifiPortConfigurationServiceRef.Get()

$localProfileSynchronizationEnabled =$wifiPortConfigurationServiceInstance.GetProperty("localProfileSynchronizationEnabled")

 

 

3.  If required, change the setting and invoke AMT_WiFiPortConfigurationService.put.

Click here for a snippet demonstrating this step

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

  

$wifiPortConfigurationServiceRef =$wsmanConnectionObject.NewReference("SELECT * FROM AMT_WiFiPortConfigurationService WHERE Name='Intel(r) AMT WiFi Port Configuration Service'")

$wifiPortConfigurationServiceInstance =$wifiPortConfigurationServiceRef.Get()

$wifiPortConfigurationServiceInstance.SetProperty("localProfileSynchronizationEnabled","1")

$wifiPortConfigurationServiceRef.Put($wifiPortConfigurationServiceInstance)

 

 

Instance Diagram

Classes Used in This Flow

SDK Sample

Located at:<SDK_root>\Windows\Intel_AMT\Samples\WS-Management\WirelessConfiguration

 

See Also:

   User Profiles and Admin Profiles

 

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