Skip to content

Stopped working on Server 2019  #8

@tigerdeccan

Description

@tigerdeccan

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

}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions