We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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" } }
}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
![image](https://user-images.githubusercontent.com/23082205/87058807-71028300-c200-11ea-84fa-91cc1b2502ee.png)
Here is my code
Configuration LocaleExample
{
Import-DscResource -ModuleName LanguageDsc, xPSDesiredStateConfiguration , computermanagement
}
The text was updated successfully, but these errors were encountered: