ansible.windows.win_updates module – Download and install Windows updates
Note
This module is part of the ansible.windows collection (version 2.5.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install ansible.windows
.
To use it in a playbook, specify: ansible.windows.win_updates
.
Synopsis
Searches, downloads, and installs Windows updates synchronously by automating the Windows Update client.
Note
This module has a corresponding action plugin.
Parameters
Parameter |
Comments |
---|---|
Internal use only. Choices:
|
|
Internal use only. |
|
A list of update titles or KB numbers that can be used to specify which updates are to be searched or installed. If an available update does not match one of the entries, then it is skipped and not installed. Each entry can either be the KB article or Update title as a regex according to the PowerShell regex rules. The accept list is only validated on updates that were found based on category_names. It will not force the module to install an update if it was not in the category specified. |
|
A scalar or list of categories to install updates from. To get the list of categories, run the module with Some possible categories are Application, Connectors, Critical Updates, Definition Updates, Developer Kits, Feature Packs, Guidance, Security Updates, Service Packs, Tools, Update Rollups, Updates, and Upgrades. Since Default: |
|
If set, |
|
Ansible will automatically reboot the remote host if it is required and continue to install updates after the reboot. This can be used instead of using a ansible.windows.win_reboot task after this one and ensures all updates for that category is installed in one go. Async does not work when Choices:
|
|
The time in seconds to wait until the host is back online from a reboot. This is only used if Default: |
|
A list of update titles or KB numbers that can be used to specify which updates are to be excluded from installation. If an available update does match one of the entries, then it is skipped and not installed. Each entry can either be the KB article or Update title as a regex according to the PowerShell regex rules. |
|
Defines the Windows Update source catalog.
Choices:
|
|
Skip optional updates where the update has BrowseOnly set by Microsoft. Microsoft documents show that BrowseOnly means that the update should not be installed automatically and appear as optional updates. Choices:
|
|
Controls whether found updates are downloaded or installed or listed This module also supports Ansible check mode, which has the same effect as setting state=searched Choices:
|
Notes
Note
ansible.windows.win_updates must be run by a user with membership in the local Administrators group.
ansible.windows.win_updates will use the default update service configured for the machine (Windows Update, Microsoft Update, WSUS, etc).
By default ansible.windows.win_updates does not manage reboots, but will signal when a reboot is required with the reboot_required return value. reboot can be used to reboot the host if required in the one task.
ansible.windows.win_updates can take a significant amount of time to complete (hours, in some cases). Performance depends on many factors, including OS version, number of updates, system load, and update server load.
Beware that just after ansible.windows.win_updates reboots the system, the Windows system may not have settled yet and some base services could be in limbo. This can result in unexpected behavior. Check the examples for ways to mitigate this.
More information about PowerShell and how it handles RegEx strings can be found at https://technet.microsoft.com/en-us/library/2007.11.powershell.aspx.
The current module doesn’t support Systems Center Configuration Manager (SCCM). See https://github.com/ansible-collections/ansible.windows/issues/194
By default the
ansible.builtin.ssh
connection plugin is configured to have no server timeout. As Windows Updates can restart the network adapter it is recommended to set-o ServerAliveInterval=30
and disable control master in ansible_ssh_args to ensure the client can handle a network reset. See the examples showing one way this can be set.By default the module will start a background process using the Task Scheduler on Windows. If the Task Scheduler is unavailable, unreliable, or does not work, run the task with become.
See Also
See also
- chocolatey.chocolatey.win_chocolatey
Manage packages using chocolatey.
- ansible.windows.win_feature
Installs and uninstalls Windows Features on Windows Server.
- community.windows.win_hotfix
Install and uninstalls Windows hotfixes.
- ansible.windows.win_package
Installs/uninstalls an installable package.
Examples
- name: Install all updates and reboot as many times as needed
ansible.windows.win_updates:
category_names: '*'
reboot: true
- name: Set a server alive interval during update stage for the ssh connection plugin
ansible.windows.win_updates:
category_names: '*'
reboot: true
vars:
# This can be set in a few ways, see the ssh connection plugin for more
# information. ControlMaster should be disabled to ensure the new timeout
# value is applied for this connection instead of through the cached
# connection.
ansible_ssh_args: -o ControlMaster=no -o ServerAliveInterval=30
- name: Install all security, critical, and rollup updates without a scheduled task
ansible.windows.win_updates:
category_names:
- SecurityUpdates
- CriticalUpdates
- UpdateRollups
become: true
become_method: runas
become_user: SYSTEM
- name: Search-only, return list of found updates (if any), log to C:\ansible_wu.txt
ansible.windows.win_updates:
category_names: SecurityUpdates
state: searched
log_path: C:\ansible_wu.txt
- name: Install all security updates with automatic reboots
ansible.windows.win_updates:
category_names:
- SecurityUpdates
reboot: true
- name: Install only particular updates based on the KB numbers
ansible.windows.win_updates:
category_names:
- SecurityUpdates
accept_list:
- KB4056892
- KB4073117
- name: Exclude updates based on the update title
ansible.windows.win_updates:
category_names:
- SecurityUpdates
- CriticalUpdates
reject_list:
- Windows Malicious Software Removal Tool for Windows
- \d{4}-\d{2} Cumulative Update for Windows Server 2016
# Optionally, you can increase the reboot_timeout to survive long updates during reboot
- name: Ensure we wait long enough for the updates to be applied during reboot
ansible.windows.win_updates:
reboot: true
reboot_timeout: 3600
# Search and download Windows updates
- name: Search and download Windows updates without installing them
ansible.windows.win_updates:
state: downloaded
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
The number of updates that failed to install. Returned: always Sample: |
|
Updates that were found but were filtered based on blacklist, whitelist or category_names. The return value is in the same form as updates, along with filtered_reason. Returned: success Sample: |
|
The reason why this update was filtered. This value has been deprecated since Returned: always Sample: |
|
A list of reasons why the update has been filtered. Can be Returned: success Sample: |
|
The number of updates found needing to be applied. Returned: success Sample: |
|
The number of updates successfully installed or downloaded. Returned: success Sample: |
|
True when the target server requires a reboot to complete updates (no further updates can be installed until after a reboot). Returned: success Sample: |
|
Set to Returned: success Sample: |
|
Updates that were found/installed. The key for each update is the Returned: success |
|
A list of category strings for this update. Returned: always Sample: |
|
Was the update downloaded. Returned: always Sample: |
|
The HRESULT code from a failed update. Returned: on install or download failure Sample: |
|
The error message with more details on the failure. Returned: on install or download failure and not running with async Sample: |
|
Internal Windows Update GUID. Returned: always Sample: |
|
Was the update successfully installed. Returned: always Sample: |
|
A list of KB article IDs that apply to the update. Returned: always Sample: |
|
Display name. Returned: always Sample: |