You are reading an unmaintained version of the Ansible documentation. Unmaintained Ansible versions can contain unfixed security vulnerabilities (CVE). Please upgrade to a maintained version. See the latest Ansible documentation.
win_shell - Execute shell commands on target hosts.¶
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.
For non-Windows targets, use the shell module instead.
# 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.txtargs:chdir:c:\somedircreates:c:\somelog.txt# Run a command under a non-Powershell interpreter (cmd in this case)-win_shell:echo %HOMEDIR%args:executable:cmdregister:homedir_out
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.
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.
For non-Windows targets, use the shell module instead.
For more information about Red Hat’s this support of this module, please
refer to this knowledge base article<https://access.redhat.com/articles/rhel-top-support-policies>