Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andif888/ansible-role-win-globalization
this role changes regional, language and timezone settings in windows
https://github.com/andif888/ansible-role-win-globalization
ansible-role globalization windows
Last synced: 27 days ago
JSON representation
this role changes regional, language and timezone settings in windows
- Host: GitHub
- URL: https://github.com/andif888/ansible-role-win-globalization
- Owner: andif888
- Created: 2022-01-30T09:17:37.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-28T13:23:31.000Z (over 1 year ago)
- Last Synced: 2024-11-11T23:33:13.663Z (3 months ago)
- Topics: ansible-role, globalization, windows
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ansible-role-win-globalization
=========this role changes regional, language and timezone settings in windows.
Requirements
------------changes to language settings requires that corresponding language packs are already installed.
Role Variables
--------------```yaml
# Copies the current user's international settings
# (Windows Display language, Input language, Regional Format/locale, and Location/GeoID)
# to one or both of the following:
# Welcome screen and system accounts
# New user accounts
win_globalization_copy_to_system_and_user: true# Geographical Locations
# https://docs.microsoft.com/en-us/windows/win32/intl/table-of-geographical-locations?redirectedfrom=MSDN
win_globalization_geo_id: 94# HKLM:\SYSTEM\CurrentControlSet\Control\MUI\Settings
# PreferredUILanguages
win_globalization_system_mui: 'de-DE'win_globalization_system_locale: 'de-DE'
win_globalization_system_timezone: 'W. Europe Standard Time'win_globalization_user_locale: 'de-DE'
# Input Locales
# https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs
win_globalization_user_input: '0407:00000407'```
Example Playbook
----------------```yaml
---
- hosts: win10
become: true
gather_facts: true
vars:roles:
- ansible-role-win-globalization
```