top of page
Search

(186) Microsoft Intune - Update to User Locale (en-AU)

  • Writer: Mr B SOE way
    Mr B SOE way
  • 3 hours ago
  • 1 min read

Last year I posted about using 'User Locale' with remediation scripts, and not too long ago I posted about setting English (Australia) as the default language. Of late I have noticed in Windows 11 25H2 when you have  English (Australia) as the default language in place, it somehow sets English (United Kingdom) showing up.

ree










What I did was re-look at my 'User Locale' with remediation scripts, which I know works.


It will check to see if "en-GB" is there, if it does then it will remove it and set en-AU as the language.


# Set culture and system locale
Set-Culture -CultureInfo en-AU
Set-WinSystemLocale -SystemLocale en-AU
Set-WinHomeLocation -GeoId 12
Set-WinUILanguageOverride -Language en-AU

# Set user language list to only en-AU
$LangList = New-WinUserLanguageList en-AU
Set-WinUserLanguageList $LangList -Force

In order for this to work, the following settings:

PowerShell script: Install.ps1

Run this script using the logged on credentials: Yes

Enforce script signature check: No

Run script in 64 bit PowerShell Host: Yes


ree

 
 
 

Comments


bottom of page