Intel AMT Features > General Info > Use Cases > Get Enabled Interfaces
CollapseAll image

Get Enabled Interfaces

The following steps describe how to retrieve the enabled state of various features or interfaces of the Intel AMT device.

1.  Retrieve the instance of AMT_WebUIService, where the “Name” key equals “Intel(r) Web Browser UI Service”.

2.  Examine AMT_WebUIService.EnabledState to see the enabled state of the Web UI feature.

Click here for a snippet demonstrating this step

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

  

$webUIServiceRef =$wsmanConnectionObject.NewReference("SELECT * FROM AMT_WebUIService WHERE Name='Intel(r) AMT Web Browser UI Service'")

$webUIServiceInstance =$webUIServiceRef.Get()

$enabledState =$webUIServiceInstance.GetProperty("EnabledState")

 

 

3.  Retrieve the instance of AMT_RedirectionService, where the “Name” key equals “Intel(r) AMT Redirection Service”.

4.  Examine AMT_RedirectionService.EnabledState to see the enabled state of the Storage Redirection and SOL features.

Click here for a snippet demonstrating this step

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

  

$redirectionServiceRef =$wsmanConnectionObject.NewReference("SELECT * FROM AMT_RedirectionService WHERE Name='Intel(r) AMT Redirection Service'")

$redirectionServiceInstance =$redirectionServiceRef.Get()

$enabledState =$redirectionServiceInstance.GetProperty("EnabledState")

 

 

Instance Diagram

Classes Used in This Flow

SDK Sample

If there is a sample demonstrating this flow, it is included in the SDK installation file. See SDK Installation Layout for details.

 

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