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_copy - Copies files to remote locations on windows hosts¶
When used instead of src, sets the contents of a file directly to the specified value. This is for simple values, for anything complex or with formatting please switch to the template module.
dest
yes
Remote absolute path where the file should be copied to. If src is a directory, this must be a directory too.
Use \ for path separators or \\ when in "double quotes".
If dest ends with \ then source or the contents of source will be copied to the directory without renaming.
If dest is a nonexistent path, it will only be created if dest ends with "/" or "\", or src is a directory.
If src and dest are files and if the parent directory of dest doesn't exist, then the task will fail.
force
(added in 2.3)
no
yes
yes
no
If set to yes, the file will only be transferred if the content is different than destination.
If set to no, the file will only be transferred if the destination does not exist.
If set to no, no checksuming of the content is performed which can help improve performance on larger files.
local_follow
(added in 2.4)
no
yes
yes
no
This flag indicates that filesystem links in the source tree, if they exist, should be followed.
remote_src
(added in 2.3)
no
no
yes
no
If False, it will search for src at originating/master machine, if True it will go to the remote/target machine for the src.
src
yes
Local path to a file to copy to the remote server; can be absolute or relative.
If path is a directory, it is copied (including the source folder name) recursively to dest.
If path is a directory and ends with "/", only the inside contents of that directory are copied to the destination. Otherwise, if it does not end with "/", the directory itself with all contents is copied.
If path is a file and dest ends with "\", the file is copied to the folder with the same filename.
-name:Copy a single filewin_copy:src:/srv/myfiles/foo.confdest:c:\Temp\renamed-foo.conf-name:Copy a single file keeping the filenamewin_copy:src:/src/myfiles/foo.confdest:c:\temp\-name:Copy folder to c:\temp (results in C:\Temp\temp_files)win_copy:src:files/temp_filesdest:c:\Temp-name:Copy folder contents recursivelywin_copy:src:files/temp_files/dest:c:\Temp-name:Copy a single file where the source is on the remote hostwin_copy:src:C:\temp\foo.txtdest:C:\ansible\foo.txtremote_src:True-name:Copy a folder recursively where the source is on the remote hostwin_copy:src:C:\tempdest:C:\ansibleremote_src:True-name:Set the contents of a filewin_copy:dest:C:\temp\foo.txtcontent:abc123
For non-Windows targets, use the copy module instead.
Currently win_copy does not support copying symbolic links from both local to remote and remote to remote.
It is recommended that backslashes \ are used instead of / when dealing with remote paths.
Because win_copy runs over WinRM, it is not a very efficient transfer mechanism. If sending large files consider hosting them on a web service and using win_get_url instead.
This module is flagged as stableinterface which means that the maintainers for this module guarantee that no backward incompatible interface changes will be made.
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>