Unattended always adding some additional language/keyboard

  • Thread starter Thread starter Brutser
  • Start date Start date
I understand and I tried his solution, but after-logon worked fine, but only for future users, not the current admin user.
When before-logon with the same solution, nothing happened, also not for future users, the registry settings were not there and NTUSER.dat was probably not modified (did not check).
 
garlin I was too soon, the script works fine, I made some small changes and final script is very easy, running after logon (user):
Code:
# US International keyboard

$LanguageList = New-WinUserLanguageList en-US
$LanguageList[0].InputMethodTips.Clear()
$LanguageList[0].InputMethodTips.Add('0409:00020409')
Set-WinUserLanguageList $LanguageList -Force

# Belgian regional format

Set-WinHomeLocation -GeoID 21
Set-Culture en-BE

Copy-UserInternationalSettingsToSystem -WelcomeScreen $True -NewUser $True
 
Back
Top