W3cubDocs

/Ansible

win_shell - Execute shell commands on target hosts.

New in version 2.2.

Synopsis

The win_shell module takes the command name followed by a list of space-delimited arguments. It is similar to the win_command module, but runs the command via a shell (defaults to PowerShell) on the target host.

Options

parameter required default choices comments
chdir
no
set the specified path as the current working directory before executing a command
creates
no
a path or path filter pattern; when the referenced path exists on the target host, the task will be skipped.
executable
no
change the shell used to execute the command (eg, cmd). The target shell must accept a /c parameter followed by the raw command line to be executed.
free_form
yes
the win_shell module takes a free form command to run. There is no parameter actually named 'free form'. See the examples!
removes
no
a path or path filter pattern; when the referenced path does not exist on the target host, the task will be skipped.

Examples

# Execute a command in the remote shell; stdout goes to the specified
# file on the remote.
- win_shell: C:\somescript.ps1 >> c:\somelog.txt

# Change the working directory to somedir/ before executing the command.
- win_shell: C:\somescript.ps1 >> c:\somelog.txt chdir=c:\somedir

# You can also use the 'args' form to provide the options. This command
# will change the working directory to somedir/ and will only run when
# somedir/somelog.txt doesn't exist.
- win_shell: C:\somescript.ps1 >> c:\somelog.txt
  args:
    chdir: c:\somedir
    creates: c:\somelog.txt

# Run a command under a non-Powershell interpreter (cmd in this case)
- win_shell: echo %HOMEDIR%
  args:
    executable: cmd
  register: homedir_out

Return Values

Common return values are documented here Common Return Values, the following are the fields unique to this module:

name description returned type sample
end The command execution end time always string 2016-02-25 09:18:26.755339
stdout The command standard output always string Clustering node [email protected] with [email protected] ...
cmd The command executed by the task always string rabbitmqctl join_cluster [email protected]
start The command execution start time always string 2016-02-25 09:18:26.429568
delta The command execution delta time always string 0:00:00.325771
stderr The command standard error always string ls: cannot access foo: No such file or directory
rc The command return code (0 means success) always int 0
msg changed always boolean True
stdout_lines The command standard output split in lines always list of strings ["u'Clustering node [email protected] with [email protected] ...'"]

Notes

Note

If you want to run an executable securely and predictably, it may be better to use the win_command module instead. Best practices when writing playbooks will follow the trend of using win_command unless win_shell is explicitly required. When running ad-hoc commands, use your best judgement.

Note

WinRM will not return from a command execution until all child processes created have exited. Thus, it is not possible to use win_shell to spawn long-running child or background processes. Consider creating a Windows service for managing background processes.

This is a Core Module

For more information on what this means please read Core Modules

For help in developing on modules, should you be so inclined, please read Community Information & Contributing, developing_test_pr and Developing Modules.

© 2012–2016 Michael DeHaan
© 2016 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/win_shell_module.html