Customize Windows 10 Start , Taskbar, Language and Region Settings

The region settings deployment still seems pretty broken. Haven’t tried Windows System Locale deployment yet. Does anyone know if it’s any better nowadays?

During onboarding, do you configure any local users? I had them add this bit to region settings because I found that if the user was created but wasn’t provisioned by Ensure-UserProfileExists then Region Settings would fail consistently.

# This script seems to work more reliably when we ensure the user profile exists and has been logged into at least once
if ($UserName) {
    $User = Get-LocalUser -Name "$UserName"
    Ensure-UserProfileExists -UserName $UserName -SID $User.SID
}

That’s why there’s a $username parameter now in region settings. If you have more than one created user, it might be worth seeing if we can get them to modify it to take an array of names

Only our local admin account. I also run the create profile deployment but I think that is different to creating a local user.

Yea, still no luck. Region isnt changing. Having to log into an account would also be annoying.