I'm trying to switch language, region and speech inside Windows 10 with a Powershell script. After the script ends, the user will be logged out and have to log in again. So everything should be changed.
But the region and speech is currently not changed. Does anyone know what i'm missing in the script?
Set-Culture en-US
Set-WinSystemLocale -SystemLocale en-US
Set-WinUILanguageOverride -Language en-US
Set-WinUserLanguageList en-US -Force
logoff;exit
I want that the user to just start the poweshell script so he can use Cortana with a different speech.
Would be very happy if someone could help me or give some further hints.
Greeting Christian