User's Manual
Table Of Contents

35
3.4
Operations Check
Confirm whether the setting of NEC ESMPRO ServerAgentService.
1. Execute the following command on another server to set WinRM on Command
Prompt.
winrm quickconfig
winrm set winrm/config/Client @{AllowUnencrypted="true"}
winrm set winrm/config/Client/Auth @{Basic="true"}
winrm set winrm/config/Client @{TrustedHost="IPAddress"}
2. Execute the following command to confirm.
winrm identify -r:http://IPAddress:port -u:username -p:password
winrm e wmi/root/cimv2/Win32_ComputerSystemProduct -r:http://IPAddress:port
-u:username -p:password
winrm e wmi/root/ESMPRO/AS/ESM_GeneralInformation -r:http://IPAddress:port
-u:username -p:password
Tips
● When connecting HTTPS, designate HTTPS as "-r" instead of HTTP.
● When an OS on the server is Windows Server 2008, the port is HTTP/80 or
HTTPS/443. When from Windows Server 2008 R2 onward, it's HTTP/5985 or
HTTPS/5986.
● Input username and password of OS' logon account.
● When connecting a server that have been set HTTPS connection by
Self-Signed certificate, add "skipCACheck" to the command as follows.
WinRM identify -r:http://IPAddress:port -u:username -p:password
-skipCACheck.