September 2018
Beginner to intermediate
214 pages
5h 53m
English
Ansible offers remote management to the Windows hosts registry using the win_regedit module. This allows you to create, edit, and remove registry keys and their values. The following playbook shows how to disable Windows auto-update via the registry:
- name: disable Windows auto-update win_regedit: path: HKLM:SOFTWARE\Policies\Microsoft\Windows \WindowsUpdate\AU name: NoAutoUpdate data: 1 type: binary
Read now
Unlock full access