Skip to content

Latest commit

 

History

History
126 lines (90 loc) · 3.27 KB

community.windows.win_zip_module.rst

File metadata and controls

126 lines (90 loc) · 3.27 KB

community.windows.win_zip

Compress file or directory as zip archive on the Windows node

The below requirements are needed on the host that executes this module.

  • .NET Framework 4.5 or later
Parameter Choices/Defaults Comments
dest
path / required
Destination path of zip file (provide absolute path of zip file on the target node).
src
string / required
File or directory path to be zipped (provide absolute path on the target node).
When a directory path the directory is zipped as the root entry in the archive.
Specify \* to the end of src to zip the contents of the directory and not the directory itself.

Note

  • The filenames in the zip are encoded using UTF-8.
.. seealso::

   :ref:`ansible.builtin.archive_module`
      The official documentation on the **ansible.builtin.archive** module.


- name: Compress a file
  community.windows.win_zip:
    src: C:\Users\hiyoko\log.txt
    dest: C:\Users\hiyoko\log.zip

- name: Compress a directory as the root of the archive
  community.windows.win_zip:
    src: C:\Users\hiyoko\log
    dest: C:\Users\hiyoko\log.zip

- name: Compress the directories contents
  community.windows.win_zip:
    src: C:\Users\hiyoko\log\*
    dest: C:\Users\hiyoko\log.zip

Authors

  • Kento Yagisawa (@hiyoko_taisa)