-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwindows_81.json
More file actions
70 lines (70 loc) · 1.79 KB
/
windows_81.json
File metadata and controls
70 lines (70 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"builders": [
{
"type": "virtualbox-iso",
"iso_urls": [
"./iso/Windows8.1.iso",
"http://it.pennmanor.net/Win8.1.iso"
],
"iso_checksum_type": "md5",
"iso_checksum": "f9ac831f06a760c722df0df34f1b9397",
"headless": true,
"boot_wait": "2m",
"ssh_username": "admin",
"ssh_password": "admin",
"ssh_wait_timeout": "5h",
"shutdown_command": "shutdown /s /t 10 /f /d p:4:1 /c \"Packer build complete.\"",
"guest_os_type": "Windows81_64",
"vm_name": "Win81Packer",
"disk_size": 61440,
"floppy_files": [
"./answer_files/81/Autounattend.xml",
"./answer_files/sysprep/unattendSysprep.xml",
"./scripts/openssh.ps1",
"./scripts/windowsApps.ps1",
"./scripts/microsoft-updates.bat",
"./scripts/dis-updates.ps1",
"./scripts/win-updates.ps1",
"./scripts/oracle-cert.cer"
],
"vboxmanage": [
[
"modifyvm",
"{{.Name}}",
"--memory",
"4096"
],
[
"modifyvm",
"{{.Name}}",
"--cpus",
"2"
]
]
}
],
"provisioners": [
{
"type": "shell",
"remote_path": "/tmp/script.bat",
"execute_command": "{{.Vars}} cmd /c C:/Windows/Temp/script.bat",
"scripts": [
"./scripts/vm-guest-tools.bat",
"./scripts/windowsApps.bat",
"./scripts/pennmanorAD.bat",
"./scripts/vagrant-ssh.bat",
"./scripts/disable-auto-logon.bat",
"./scripts/enable-rdp.bat",
"./scripts/compile-dotnet-assemblies.bat",
"./scripts/compact.bat",
"./scripts/sysprep.bat"
]
}
],
"post-processors": [
{
"type": "compress",
"output": "windows_81.tar.gz"
}
]
}