StefanScherer / packer-windows

Windows Templates for Packer: Windows 11, Windows 10, Windows Server 2022, 2019, 2016, also with Docker
MIT License
1.29k stars 434 forks source link

Vagrant windows_2019 version 2019.11.15 virtualbox image is 1809, not 1903 #229

Closed muddman closed 4 years ago

muddman commented 4 years ago

https://app.vagrantup.com/StefanScherer/boxes/windows_2019/versions/2019.11.15

Vagrant.configure("2") do |config| config.vm.box = "StefanScherer/windows_2019" config.vm.box_version = "2019.11.15" end

The virtualbox image is coming up as Windows Server 2019 Version 1809 (OS Build 17763.864) -- isn't it supposed to be 1903?

thanks!!

p

StefanScherer commented 4 years ago

Hi @muddman, the windows_2019 box in Vagrant Cloud is always the LTSC version, so no update to Windows Server 1903 SAC. This box is based on the Enterprise Eval ISO available and there is only one for Server 2019, not for the semi-annual releases. You would have to build your own with an ISO file from MSDN account and run

packer build --only virtualbox -var iso_url=path-to-server-1903.iso windows_server_1903.json
muddman commented 4 years ago

thanks and thanks for providing these!