September 2018
Beginner to intermediate
214 pages
5h 53m
English
This is an Ansible module that is used to install and remove packages that are MSI or EXE files. It allows you to use a different source for the package, either on the local machine, on a network shared drive, or on the web. The following example playbook shows you how to install Atom:
- name: install atom editor on Windows hosts win_package: path: C:\app\atom.msi arguments: /install /norestart state: present
This module replaces old, unstable modules such as win_msi.
Read now
Unlock full access