Skip to content
New issue

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

Stopped working on Server 2019 #8

Open
tigerdeccan opened this issue Jul 9, 2020 · 0 comments
Open

Stopped working on Server 2019 #8

tigerdeccan opened this issue Jul 9, 2020 · 0 comments

Comments

@tigerdeccan
Copy link

tigerdeccan commented Jul 9, 2020

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

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"
    }
}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant