39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
Copyright (C) 2008 Intel Corporation
|
||
|
||
Intel(R) Active Management Technology (Intel(R) AMT):
|
||
|
||
A short description of the CimWinRMClient, which uses
|
||
Microsoft WinRM* Client for WS-Management communication with Intel(r) AMT.
|
||
|
||
|
||
How to Configure WinRM
|
||
----------------------
|
||
1. Install WinRM on your management console.
|
||
2. Follow the instructions in the WS-ManagementCPP Readme.txt,
|
||
in the relevant section.
|
||
|
||
|
||
How to Compile a sample to use the WinRMWSManClient
|
||
---------------------------------------------------
|
||
1. Open the sample "*.vcxproj" in Microsoft Visual Studio 2019*.
|
||
2. Add the CimWinRMClient.lib to the linker's "Additional Dependencies".
|
||
3. Add the following path to C/C++->Additional Include Directories list:
|
||
SDK\Windows\Common\WS-Management\CPP\CimWinRMClient
|
||
4. Open the *sample.cpp file. In the constructor change the line
|
||
CimOpenWsmanClient wsmanClient(<28>);
|
||
To:
|
||
CimWinRMClient wsmanClient(<28>);
|
||
5. Remove the following parameters from the constructor:
|
||
- Proxy IP/ Hostname
|
||
- Proxy username
|
||
- Proxy password
|
||
- Connecting from remote / local
|
||
- Certificate name
|
||
- Certificate OID
|
||
6. Add the following line to the code: #include "CimWinRMClient.h"
|
||
7. Build the solution.
|
||
A resultant "*.exe" file should be created, using the CimWinRMClient.
|
||
|
||
-------------------------------------------------------------------
|
||
* Other names and brands may be claimed as the property of others.
|