Hi Guys,
I want to change regional settings post-Windows Server Provisioning, namely “Display language” and “Input Language” for a) Current User, b) Welcome Screen, and c) New user to “English Australia”
I have the below module, unfortunately, it does not changes them to English - Australia, it keeps the default value to the English United States may I know what additional things do I need to add?
`
- name: install features on new Azure Windows Server
hosts: all
gather_facts: yes
tasks: - name: Set timezone to ‘A.U.S. Eastern Standard Time’ (GMT+10:00)
win_timezone:
timezone: E. Australia Standard Time - name: Set the region format to English Australia and copy settings to new profiles
win_region:
location: 12
format: en-AU
copy_settings: True
unicode_language: en-AU
register: result - win_reboot:
when: result.restart_required
`
Kindly assist.
Thank you very much.
Regards,
Ameya Agashe