CollapseAll image

Using the KVM API

The HLAPI implements the KVM feature in the KVM API.

The available methods are described in these interfaces:

   IKVMSetup

   IKVMAdmin

Examples

These C# examples show how to use the KVM API (after connecting to the Intel AMT device).

Enable opening a KVM session via the default KVM port (5900)

amt.KVMSetup.SetInterfaceState(true);

amt.KVMSetup.SetPortsState(KVMPortsState.EnableDefaultPortOnly);

amt.KVMSetup.SetRFBPassword("Mypass1!");

 

Get the KVM capabilities of the Intel AMT system

KVMCapabilities capabilities = amt.KVMSetup.GetCapabilities();
Console.WriteLine("Visible Monitor is: {0}", capabilities.VisibleScreen);

Console.WriteLine("Opt-In policy timeout is: {0}", capabilities.OptInPolicyTimeout);
Console.WriteLine("Tcp session timeout is: {0}", capabilities.TcpSessionTimeout);

 

See Also:

   Connecting to an Intel AMT Device

 

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