This is a Rundeck Node Execution/ File Copier plugin that uses WinRM to connect to Windows and execute commands and scripts. It uses the python WinRM Library to provide the WinRM implementation.
Download from the releases page and copy the py-winrm-plugin-X.X.X.zip to the libext/ directory for Rundeck.
The plugin needs the python module pywinrm. It can be installed with the following command: pip install pywinrm
Additional, it could be added the support for kerberos and credSSP autentication:
$ sudo apt-get install python-dev libkrb5-dev
$ pip install pywinrm[kerberos]
$ sudo yum install gcc krb5-devel krb5-workstation
$ pip install pywinrm[kerberos]
pip install pywinrm[credssp]
For further information see: https://pypi.python.org/pypi/pywinrm
- Authentication Type: The authentication type used for the connection: basic, ntlm, credssp. It can be overwriting at node level using
winrm-authtype
- Password Storage Path: Key storage path of the window's user password. It can be overwriting at node level using
winrm-password-storage-path
- No SSL Verification: When set to true SSL certificate validation is not performed. It can be overwriting at node level using
winrm-nossl
- WinRM Transport Protocol: WinRM transport protocol (http or https). It can be overwriting at node level using
winrm-transport
- WinRM Port: WinRM port (Default: 5985/5986 for http/https). It can be overwriting at node level using
winrm-port
- Shell: Windows Shell interpreter (powershell o cmd). It can be overwriting at node level using
winrm-shell
<node name="Hostname"
description="Windows Server"
tags="windows"
hostname="192.168.0.1"
osArch="amd64"
osFamily="windows"
osName="Windows Server 2012 R2"
osVersion="6.3"
username="[email protected]"
winrm-password-storage-path="keys/node/windows.password"
winrm-authtype="credssp"/>
Don't use the file copier to transfer big files, the performance is not the best to transfer large files. It works OK passing inline scripts to remote windows nodes
If you get the following error:
module object has no attribute 'SSL_ST_INIT'
Update your verion of PyOpenSSL:
python -m easy_install --upgrade pyOpenSSL