June 2018
Beginner
578 pages
13h 39m
English
As already mentioned, Ansible will be using WinRM to interact with our Windows host.
To be able to use WinRM, Ansible requires us to install a few different Python modules, Linux users can use the following command to install them:
$ sudo pip install pywinrm[credssp]
macOS users may need to perform the following command if they get errors about pyOpenSSL that can't be updated, as it is part of the core operating system:
$ sudo pip install pywinrm[credssp] --ignore-installed pyOpenSSL
Once ...
Read now
Unlock full access