Search Me

Tuesday, October 14, 2014

Detection Method: Language Pack

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