This simple powershell script will help you discover if a language pack is available. It works great an an SCCM detection method if you are deploying language packs as using the Application Model.
If ((get-wmiObject -class Win32_OperatingSystem).MUILanguages -contains "zh-CN") { write-host $true }
Just substitute zh-CN with the language code of your choice. View the larger list here.
No comments:
Post a Comment