MicrosoftDocs / SCCMdocs

Configuration Manager documentation public repo
https://docs.microsoft.com/sccm/
Creative Commons Attribution 4.0 International
251 stars 361 forks source link

MDT Script ZTILangPacksOnline.wsf bug #2131

Closed pilgi3 closed 4 years ago

pilgi3 commented 4 years ago

I try to install the language pack online in the sccm tasksequence with the MDT step. But in the log file i see:

Language Packs can only be installed from within Windows Vista, Windows Server 2008, or later OSes

Please look at the code:

If iOSVerMajor < 6  or oEnvironment.Item("OSVersion") = "WinPE" then
            oLogging.CreateEntry "Language Packs can only be installed from within Windows Vista, Windows Server 2008, or later OSes", LogTypeError
            Main = Success
            Exit Function
        End if

The script looks at the first number of OSVersion and Windows 10 begins with 10.0.xxx . So 1 < 6 and the language pack get not installed. Could this be fixed with the next MDT release, please?

aczechowski commented 4 years ago

Thanks @pilgi3 for taking the time to share this with the Configuration Manager documentation team. I’m sorry that you’re having problems, and I want to make sure it gets to the right people that can help. There are a couple of options available to provide the best level of support for this:

pilgi3 commented 4 years ago

Thanks for the reply and sorry for the circumstances!