Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision Both sides next revision
tutorial:adm:configuration_-_winrm [2019/06/12 06:52]
kucerar created
tutorial:adm:configuration_-_winrm [2019/06/12 08:56]
kucerar basic config, commands
Line 1: Line 1:
 ====== Configuration of WinRM ====== ====== Configuration of WinRM ======
 +In this tutorial we will go through configuration of WinRM which is necessary for using [[devel:documentation:systems:dev:winrm_connector|WinRM connector]]
 +
 +WinRM or Windows remote management, is a remote management protocol that uses Simple Object Access Protocol to interface with remote computers and servers, as well as Operating Systems and applications.
 +WinRM is a command-line tool.
 +
 +==== Check if Winrm is running ====
 +
 +<code>Test-WSMan</code>
 +The output should be following:
 +{{:tutorial:adm:winrm_test.png?nolink&400|}}
 +
 +If you get some error then you need to do the [[https://docs.microsoft.com/en-us/windows/desktop/winrm/installation-and-configuration-for-windows-remote-management#quick-default-configuration|quick default configuration]]
 +
 +Now execute the first command again and it should without error now.
 +
 +==== Show current configuration ====
 +Display WinRM listener. It will show useful information about port, address, ... where WinRM is listening for incoming connections.
 +After quick config you will probably see only one listener for HTTP.
 +<code>winrm e winrm/config/listener</code>
 +{{:tutorial:adm:winrm_listener.png?nolink&600|}}
 +
 +Display current winrm configuration
 +<code>winrm get winrm/config</code>
 +{{:tutorial:adm:winrm_config.png?nolink&600|}}
 +
 +Show SDDL setting, this command will show dialog window
 +<code>winrm configSDDL default</code>
 +{{:tutorial:adm:winrm_sddl.png?nolink&400|}}
  • by erbenr