We have a workflow that installs a few profiles for WiFi
and adds two users after a reboot.
The Problem with those users ist that the language settings are in English, not in German as the first local account.
i tried a script as follows:
#!/bin/sh
sudo languagesetup -langspec German
/usr/bin/defaults write /Library/Preferences/.GlobalPreferences AppleLanguages “(de, en, ja, fr, es, it, nl, sv, nb, da, fi, pt, zh-Hans, zh-Hant, ko)"
/usr/bin/defaults write /Library/Preferences/.GlobalPreferences AppleLocale „de“_DE?/usr/bin/defaults write /Library/Preferences/.GlobalPreferences Country „de“_DE”
Why is this and what can i do to not change the language of the two users by hand...
Thx,
Jack
