I'm creating Windows server 2016 images in Azure using Packer.
The only thing i'm unable to change is the locale, language and home location in the image. I'm in the UK and everything defaults to US.
I've tried the following Powershell (which works) but only changes the settings for the packer user. When I create a VM from the image and log in it's reverted back to US.
Set-WinHomeLocation -GeoId 0xf2
Set-TimeZone -Name "GMT Standard Time"
Set-WinSystemLocale en-GB
Set-Culture en-GB
Set-WinUserLanguageList -LanguageList (New-WinUserLanguageList -Language en-GB) -Force
Is there a way to change these settings for all users so it's baked into the image?