8

I want to install additional language pack to Windows Server 2016 Evaluation Edition as a part of packer or vagrant provisioning.

I found this answer telling how to install additional language packs using GUI:

Control Panel –> Language -> Add Language -> Danish –> Add Click on Options (for the language you selected) -> Windows Display language -> Download and install language pack

But how can I do this using command line?

mixel
  • 441
  • 1
  • 5
  • 8

2 Answers2

5

Try the command:

Dism /online /Add-Package /PackagePath:C:\test\LangPacks\lp.cab

See: Add and Remove Language Packs on a Running Windows Installation

Reddy Lutonadio
  • 17,120
  • 4
  • 14
  • 35
Ricochet
  • 76
  • 1
  • 2
  • Is it possible to fetch `.cab` automatically? Looks like I have no access to Microsoft OEM for getting this `.cab`. – Vitaly Zdanevich May 12 '19 at 09:11
  • I was able to find the ISO on a non-Microsoft site, but no I don't know of any way to accomplish this without having the .CAB file. – Ricochet May 12 '19 at 15:44
-1

This site is supposed to make things clear.... https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/add-language-packs-to-windows Lot of material for a few language files....

guest
  • 11
  • 3
    Your answer should have all relevant information contained within it. All outside sources, should be quoted and cited, link-only answers are not helpful. – Ramhound Jul 04 '17 at 13:04