Hi,
Im looking to create a HTA File to add to an existing TS, i would like this HTA to prompt a user to select the desired OS Language from English, French, German, Dutch, Italian, Norwegian, Russian or Spanish for the deployment.
We currently have the following vbs script in place in which the user has to type the language they want, this is not fool proof enough as one typo will default the language to English.
'==========================================================================
' NAME: PromptForInstallLanguage.vbs
'
'==========================================================================
Dim sNewComputerlanguage, oTaskSequence, sIntallLanguage
Set oTaskSequence = CreateObject ("Microsoft.SMS.TSEnvironment")
sInstallLanguage = InputBox ("Please enter a Language to continue. Select from Dutch, English, French, German, Italian, Norwegian, Russian or Spanish,", "Language","English")
oTaskSequence("InstallLanguage") = UCase(sInstallLanguage)
Any help on this is greatly appreciated?
Thanks.