Note
This module is part of the community.windows collection (version 2.4.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 community.windows.
To use it in a playbook, specify: community.windows.win_timezone.
Parameter | Comments |
|---|---|
timezone string / required | Timezone to set to. Example: Central Standard Time To disable Daylight Saving time, add the suffix |
Note
tzutil.exe /l and from https://msdn.microsoft.com/en-us/library/ms912391.aspx
See also
Set the region and format settings.
- name: Set timezone to 'Romance Standard Time' (GMT+01:00)
community.windows.win_timezone:
timezone: Romance Standard Time
- name: Set timezone to 'GMT Standard Time' (GMT)
community.windows.win_timezone:
timezone: GMT Standard Time
- name: Set timezone to 'Central Standard Time' (GMT-06:00)
community.windows.win_timezone:
timezone: Central Standard Time
- name: Set timezime to Pacific Standard time and disable Daylight Saving time adjustments
community.windows.win_timezone:
timezone: Pacific Standard Time_dstoff
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
|---|---|
previous_timezone string | The previous timezone if it was changed, otherwise the existing timezone. Returned: success Sample: |
timezone string | The current timezone (possibly changed). Returned: success Sample: |
© 2012–2018 Michael DeHaan
© 2018–2025 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/community/windows/win_timezone_module.html