Windows – Install language pack via command line

language-packwindows-serverwindows-server-2016

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?

Best Answer

Try the command:

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

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

Related Question