This post was contributed by Patrick Zovistoski, a fellow community member. Thanks!
The following steps show how to configure your Task Sequence to automatically install an Office 2013 Language Pack that matches the language selected during the Deployment Wizard. Since it is deployed dynamically, it eliminates the need to include the Office Language packs in your image.
Step 1
Import into MDT the Windows 8 Language Packs that you require.
Step 2
Create a new application for each Office 2013 Language Pack that you require, using the following command line for setup: "setup.exe /Config .\osmui.xx-xx\config.xml" where “xx-xx” is the language you are adding.
Step 3
Add a group to your Task Sequence with conditionals set for the “UILanguage” TS variable. For example, it will process the group only if “UILanguage” is not equal to English. Then, it will apply the appropriate sub-task depending on the value of “UILanguage”:
Step 4
Make sure to modify your rules/“CustomSettings.ini” to prompt for language selection in the Deployment Wizard:
SkipPackageDisplay=NO
SkipLocaleSelection=NO
SkipTimeZone=NO
Step 5
Now when you select a non-English language in the wizard, it will automatically deploy the associated Office 2013 Language Pack:
Thanks again Patrick, great contribution,
/ Johan
More ...