167 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			167 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "builders": [
 | |
|     {
 | |
|       "vm_name":"WindowsServer2016",
 | |
|       "type": "hyperv-iso",
 | |
|       "disk_size": 41440,
 | |
|       "boot_wait": "0s",
 | |
|       "guest_additions_mode":"disable",
 | |
|       "iso_url": "{{user `iso_url`}}",
 | |
|       "iso_checksum_type": "{{user `iso_checksum_type`}}",
 | |
|       "iso_checksum": "{{user `iso_checksum`}}",
 | |
|       "floppy_files": [
 | |
|         "{{user `autounattend`}}",
 | |
|         "./floppy/WindowsPowershell.lnk",
 | |
|         "./floppy/PinTo10.exe",
 | |
|         "./scripts/unattend.xml",
 | |
|         "./scripts/sysprep.bat",
 | |
|         "./scripts/disable-screensaver.ps1",
 | |
|         "./scripts/disable-winrm.ps1",
 | |
|         "./scripts/enable-winrm.ps1",
 | |
|         "./scripts/microsoft-updates.bat",
 | |
|         "./scripts/win-updates.ps1"
 | |
|       ],
 | |
|       "communicator":"winrm",
 | |
|       "winrm_username": "vagrant",
 | |
|       "winrm_password": "vagrant",
 | |
|       "winrm_timeout" : "2h",
 | |
|       "shutdown_command": "a:/sysprep.bat",
 | |
|       "ram_size": 2048,
 | |
|       "cpu": 2,
 | |
|       "switch_name":"{{user `hyperv_switchname`}}",
 | |
|       "enable_secure_boot":true
 | |
|     },
 | |
|     {
 | |
|       "type": "vmware-iso",
 | |
|       "communicator": "winrm",
 | |
|       "iso_url": "{{user `iso_url`}}",
 | |
|       "iso_checksum_type": "{{user `iso_checksum_type`}}",
 | |
|       "iso_checksum": "{{user `iso_checksum`}}",
 | |
|       "headless": false,
 | |
|       "boot_wait": "2m",
 | |
|       "winrm_username": "vagrant",
 | |
|       "winrm_password": "vagrant",
 | |
|       "winrm_timeout": "4h",
 | |
|       "shutdown_timeout": "2h",
 | |
|       "shutdown_command": "a:/sysprep.bat",
 | |
|       "guest_os_type": "windows8srv-64",
 | |
|       "disk_size": 61440,
 | |
|       "vnc_port_min": 5900,
 | |
|       "vnc_port_max": 5980,
 | |
|       "version": 11,
 | |
|       "floppy_files": [
 | |
|         "{{user `autounattend`}}",
 | |
|         "./floppy/WindowsPowershell.lnk",
 | |
|         "./floppy/PinTo10.exe",
 | |
|         "./scripts/unattend.xml",
 | |
|         "./scripts/sysprep.bat",
 | |
|         "./scripts/disable-screensaver.ps1",
 | |
|         "./scripts/disable-winrm.ps1",
 | |
|         "./scripts/enable-winrm.ps1",
 | |
|         "./scripts/microsoft-updates.bat",
 | |
|         "./scripts/win-updates.ps1"
 | |
|       ],
 | |
|       "vmx_data": {
 | |
|         "RemoteDisplay.vnc.enabled": "false",
 | |
|         "RemoteDisplay.vnc.port": "5900",
 | |
|         "memsize": "2048",
 | |
|         "numvcpus": "2",
 | |
|         "scsi0.virtualDev": "lsisas1068"
 | |
|       }
 | |
|     },
 | |
|     {
 | |
|       "type": "virtualbox-iso",
 | |
|       "communicator": "winrm",
 | |
|       "iso_url": "{{user `iso_url`}}",
 | |
|       "iso_checksum_type": "{{user `iso_checksum_type`}}",
 | |
|       "iso_checksum": "{{user `iso_checksum`}}",
 | |
|       "headless": false,
 | |
|       "boot_wait": "2m",
 | |
|       "winrm_username": "vagrant",
 | |
|       "winrm_password": "vagrant",
 | |
|       "winrm_timeout": "4h",
 | |
|       "shutdown_command": "a:/sysprep.bat",
 | |
|       "guest_os_type": "Windows2016_64",
 | |
|       "guest_additions_mode": "disable",
 | |
|       "disk_size": 61440,
 | |
|       "floppy_files": [
 | |
|         "{{user `autounattend`}}",
 | |
|         "./floppy/WindowsPowershell.lnk",
 | |
|         "./floppy/PinTo10.exe",
 | |
|         "./scripts/unattend.xml",
 | |
|         "./scripts/sysprep.bat",
 | |
|         "./scripts/disable-screensaver.ps1",
 | |
|         "./scripts/disable-winrm.ps1",
 | |
|         "./scripts/enable-winrm.ps1",
 | |
|         "./scripts/microsoft-updates.bat",
 | |
|         "./scripts/win-updates.ps1",
 | |
|         "./scripts/oracle-cert.cer"
 | |
|       ],
 | |
|       "vboxmanage": [
 | |
|         [
 | |
|           "modifyvm",
 | |
|           "{{.Name}}",
 | |
|           "--memory",
 | |
|           "2048"
 | |
|         ],
 | |
|         [
 | |
|           "modifyvm",
 | |
|           "{{.Name}}",
 | |
|           "--cpus",
 | |
|           "2"
 | |
|         ]
 | |
|       ]
 | |
|     }
 | |
|   ],
 | |
|   "provisioners": [
 | |
|     {
 | |
|       "type": "windows-shell",
 | |
|       "execute_command": "{{ .Vars }} cmd /c \"{{ .Path }}\"",
 | |
|       "scripts": [
 | |
|         "./scripts/vm-guest-tools.bat",
 | |
|         "./scripts/enable-rdp.bat"
 | |
|       ]
 | |
|     },
 | |
|     {
 | |
|       "type": "powershell",
 | |
|       "scripts": [
 | |
|         "./scripts/debloat-windows.ps1"
 | |
|       ]
 | |
|     },
 | |
|     {
 | |
|       "type": "windows-restart"
 | |
|     },
 | |
|     {
 | |
|       "type": "windows-shell",
 | |
|       "execute_command": "{{ .Vars }} cmd /c \"{{ .Path }}\"",
 | |
|       "scripts": [
 | |
|         "./scripts/pin-powershell.bat",
 | |
|         "./scripts/set-winrm-automatic.bat",
 | |
|         "./scripts/compile-dotnet-assemblies.bat",
 | |
|         "./scripts/uac-enable.bat",
 | |
|         "./scripts/compact.bat"
 | |
|       ]
 | |
|     },
 | |
|     {
 | |
|       "type": "file",
 | |
|       "source": "./answer_files/2016/Autounattend_sysprep.xml",
 | |
|       "destination": "c:/Windows/Temp/Autounattend_sysprep.xml"
 | |
|     }
 | |
|   ],
 | |
|   "post-processors": [
 | |
|     {
 | |
|       "type": "vagrant",
 | |
|       "keep_input_artifact": false,
 | |
|       "output": "windows_2016_{{.Provider}}.box",
 | |
|       "vagrantfile_template": "vagrantfile-windows_2016.template"
 | |
|     }
 | |
|   ],
 | |
|   "variables": {
 | |
|     "iso_url": "https://software-download.microsoft.com/download/pr/Windows_Server_2016_Datacenter_EVAL_en-us_14393_refresh.ISO",
 | |
|     "iso_checksum_type": "md5",
 | |
|     "iso_checksum": "70721288BBCDFE3239D8F8C0FAE55F1F",
 | |
|     "autounattend": "./answer_files/2016/Autounattend.xml",
 | |
|     "hyperv_switchname": "{{env `hyperv_switchname`}}"
 | |
|   }
 | |
| }
 | 
