Symantec Management Platform (Notification Server)

 View Only
  • 1.  How To Find Installed Language Packs on Operating Systerms in Altiris Reports

    Posted May 06, 2016 02:25 AM

    Hello,

    Am trying to FInd out the Installed Language Packs on an Operating System, Its not the Primary Language but the additional UI Languages which are installed on the desktops.

    Is there any report available in Altiris or Can we get this information readily available in the Database??

    We are on Altiris 7.6

     

    Thanks,

    Naresh Gokara



  • 2.  RE: How To Find Installed Language Packs on Operating Systerms in Altiris Reports

    Posted May 06, 2016 03:58 AM

    Not sure if these are inventoried but you could create a task to do so.

    http://stackoverflow.com/questions/32561430/powershell-command-to-get-all-the-language-packs-installed-on-a-server-running-w

    Powershell

    $LangPacks = DISM.exe /Online /Get-Intl /English |
        Select-String -SimpleMatch 'Installed language(s)'|
            ForEach-Object {
                if($_ -match ':\s*(.*)'){$Matches[1]}
            }
    
    if($LangPacks -notcontains 'ru-Ru'){
        Write-Host 'Language pack not installed!'

    WMI

    $OSInfo = Get-WmiObject -Class Win32_OperatingSystem
    $languagePacks = $OSInfo.MUILanguages
    $languagePacks