How to set the region for Windows 10 intune device

Karan Thangarajan 21 Reputation points
2023-04-11T07:11:42.63+00:00

I have Enterprise Mobility + Security E5 license. We can setup the time zone which worked for Windows 10 using configuration profile in Intune Devices > Configuration profiles > Profile Name: Prod Time Zone Settings > Platform: Windows 10 & later with Custom Templates > Time Language Settings > Configure Time Zone > New Zealand Standard Time - it worked! Unfortunately I could not set the region, it remains as United States. Could you help to fix the issue?

Microsoft Intune Configuration
Microsoft Intune Configuration
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Configuration: The process of arranging or setting up computer systems, hardware, or software.
1,814 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
4,743 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Pavel yannara Mirochnitchenko 12,411 Reputation points MVP
    2023-04-11T09:04:31.1333333+00:00

    This is how I alter regional settings for Finland:

    New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International" -Name Locale -Value "0000040B" -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International" -Name LocaleName -Value "fi-FI" -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International" -Name sCountry -Value "Finland" -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International" -Name sCurrency -Value "€" -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International" -Name sDate -Value "." -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International" -Name sLanguage -Value "FIN" -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International" -Name sLongDate -Value "dddd d. MMMM yyyy" -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International" -Name sShortDate -Value "d.M.yyyy" -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International" -Name sShortTime -Value "H.mm" -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International" -Name sTimeFormat -Value "H:mm:ss" -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International" -Name sYearMonth -Value "MMMM yyyy" -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International\Geo" -Name Nation -Value "77" -PropertyType String -Force New-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Control Panel\International\Geo" -Name Name -Value "FI" -PropertyType String -Force

    2 people found this answer helpful.

  2. Pavel yannara Mirochnitchenko 12,411 Reputation points MVP
    2023-04-11T09:02:59.4433333+00:00

    Hi, you could do it with Powershell. If you don't how to alter registery with powershell, check my blog: https://www.linkedin.com/pulse/intune-advanced-automation-part-1-registry-altering-pavel/

    I have altered part of regional settings via Registery, because OOBE selections does not honor all parts of regional and location settings. This is more of a Windows "bug", rather than Intune Autopilot's fault. I see same behavior, where home user installs Windows and selects our region, part of Windows settings still points to US.

    0 comments No comments