September 2018
Beginner to intermediate
214 pages
5h 53m
English
Ansible manages Windows updates, hotfixes, and features using three complementary modules: win_updates, win_hotfix and win_feature. These modules use system default services and tools by commanding them to apply a set of tasks configured on a playbook. The following example playbook has three examples on how to use each of the modules to install or enable Microsoft tools, fixes, or features:
- name: install updates for Windows related applications and tools win_updates: category_names: - Applications - Tools state: installed reboot: no become: yes become_user: SYSTEM - name: install a specific Windows Hotfix win_hotfix: hotfix_kb: KB4088786 source: ...
Read now
Unlock full access