-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
I have this code - it worked fine all the time on server 2016 . but on 2019 it doesnt work. No issues reported in DSC operational logs
Issue : Language insatllation works but langiage is not set to primary on control panel

Here is my code
Configuration LocaleExample
{
Import-DscResource -ModuleName LanguageDsc, xPSDesiredStateConfiguration , computermanagement
Node Localhost {
xRemoteFile DownloadLanguagePack {
DestinationPath = "c:\temp\de-DE.cab"
Uri = "https://langstoremumtaz.blob.core.windows.net/language/de-DE.cab"
}
LanguagePack InstallLanguagePack {
LanguagePackName = "de-DE"
LanguagePackLocation = "c:\temp\de-DE.cab"
Dependson = "[xRemoteFile]DownloadLanguagePack"
}
Language ConfigureLanguage {
IsSingleInstance = "Yes"
LocationID = 94
MUILanguage = "de-DE"
MUIFallbackLanguage = "en-US"
SystemLocale = "de-DE"
AddInputLanguages = @("0407:00000407")
RemoveInputLanguages = @("0409:00000409")
UserLocale = "de-DE"
CopySystem = $true
CopyNewUser = $true
Dependson = "[LanguagePack]InstallLanguagePack"
}
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels