Skip to main content
Version: 6 - Palatschinke

ConnectorTypePS

class connector_types.connector_type_ps.ConnectorTypePS

Access a Windows Remote Management (WinRM) service.

This connector type enables you to interact with a Windows Remote Management (WinRM) service. See Windows Remote Management for information about WinRM.

Inputs

NameTypeDefaultDescription
cert_key_pemstrNoneProvide a certificate key in PEM format when using SSL transport, otherwise transport is reverted to basic auth over HTTPS.
cert_pemstrNoneProvide a certificate in PEM format when using SSL transport, otherwise transport is reverted to basic auth over HTTPS.
encodingstrutf-8The character encoding used on the remote host.
hoststrThe hostname or IP of the remote windows host.
message_encryptionstrautoIf to use message encryption. See Encryption.
passwordstrThe password to use for authentication.
run_batstrNoneA batch script to execute on the remote windows host. One of run_cmd, run_ps, or run_bat is required.
run_cmdstrNoneA command to execute on the remote windows host. One of run_cmd, run_ps, or run_bat is required.
run_cmd_argslistNoneArguments for the command executed by run_cmd.
run_psstrNoneA powershell script to execute on the remote windows host. One of run_cmd, run_ps, or run_bat is required.
transportstrsslWhich transport to use. See Valid transport options.
usernamestrThe username to use for authentication.

Outputs

NameTypeDefaultDescription
execution_idintThe ID of the connection execution
messagestrThe ended message for the connection. If the connection ended with an error, the message will contain information about what went wrong
statusstrThe ended status for the connection. Either "success" or "error".
status_codeintThe status code of the executed command.
std_errstrThe standard error of the executed command.
std_outstrThe standard output of the executed command.

Constants

input_list = ['cert_key_pem', 'cert_pem', 'encoding', 'host', 'message_encryption', 'password', 'run_bat', 'run_cmd', 'run_cmd_args', 'run_ps', 'transport', 'username'] output_list = ['status_code', 'std_err', 'std_out'] ssl_context_inputs = ['check_hostname', 'client_cert', 'client_key', 'server_ca'] version = 1

Methods

Example

import flow_api

def handler(system: flow_api.System, this: flow_api.Execution):
this.connect(
connector_type='PS',
host='my-windows-host',
username='kevin',
password='secret',
run_cmd='ipconfig',
)
this.connect(
connector_type='PS',
host='my-windows-host',
username='kevin',
password='secret',
run_ps='Write-Host "Hello World!"',
)
return this.success('all done')