This repository has been archived by the owner on Oct 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/v1.24: (28 commits) Updated changelog Update Autounattend.xml Updated changelog Update Ultradefrag to 6.1.0 update to Windows 10 Inside Preview Build 10074 use Write-Output install setupssh-6.7p1-2.exe remove ssh_host_ed25519_key as Vagrant's net-ssh 2.9.1 does not support it update to setupssh-6.6.1p1-3 Stop SearchResult display failing Display windows updates that have been installed Define MaxUpdatesPerCycle for updates on 2008 R2 builds Windows 10 Technical Preview Build 9926 Updated changelog with fixed issues Fixing product key URL in comment. Fixing cut-and-paste error from 2012 autounattend. Add support for Hyper-V Server 2012 R2 extend primary partition to use template.json updated to setupssh-6.7p1-1.exe Grammar ...
- Loading branch information
Showing
15 changed files
with
881 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# -*- mode: ruby -*- | ||
# vi: set ft=ruby : | ||
|
||
Vagrant.require_version ">= 1.6.2" | ||
|
||
Vagrant.configure("2") do |config| | ||
config.vm.define "vagrant-windows-10-preview" | ||
config.vm.box = "windows_10_preview" | ||
config.vm.communicator = "winrm" | ||
|
||
# Admin user name and password | ||
config.winrm.username = "vagrant" | ||
config.winrm.password = "vagrant" | ||
|
||
config.vm.guest = :windows | ||
config.windows.halt_timeout = 15 | ||
|
||
config.vm.network :forwarded_port, guest: 3389, host: 3389, id: "rdp", auto_correct: true | ||
config.vm.network :forwarded_port, guest: 22, host: 2222, id: "ssh", auto_correct: true | ||
|
||
config.vm.provider :virtualbox do |v, override| | ||
#v.gui = true | ||
v.customize ["modifyvm", :id, "--memory", 2048] | ||
v.customize ["modifyvm", :id, "--cpus", 2] | ||
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ] | ||
end | ||
|
||
config.vm.provider :vmware_fusion do |v, override| | ||
#v.gui = true | ||
v.vmx["memsize"] = "2048" | ||
v.vmx["numvcpus"] = "2" | ||
v.vmx["ethernet0.virtualDev"] = "vmxnet3" | ||
v.vmx["RemoteDisplay.vnc.enabled"] = "false" | ||
v.vmx["RemoteDisplay.vnc.port"] = "5900" | ||
v.vmx["scsi0.virtualDev"] = "lsisas1068" | ||
end | ||
|
||
config.vm.provider :vmware_workstation do |v, override| | ||
#v.gui = true | ||
v.vmx["memsize"] = "2048" | ||
v.vmx["numvcpus"] = "2" | ||
v.vmx["ethernet0.virtualDev"] = "vmxnet3" | ||
v.vmx["RemoteDisplay.vnc.enabled"] = "false" | ||
v.vmx["RemoteDisplay.vnc.port"] = "5900" | ||
v.vmx["scsi0.virtualDev"] = "lsisas1068" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
{ | ||
"builders": [ | ||
{ | ||
"type": "vmware-iso", | ||
"iso_url": "http://iso.esd.microsoft.com/W10IP/E0F85BFCD0F6BA607BF1528926371D21F8F6B6BF/Windows10_InsiderPreview_x64_EN-US_10074.iso", | ||
"iso_checksum_type": "sha1", | ||
"iso_checksum": "E354B44994B46FB7CDC295FA1F075D9F95FECEA8", | ||
"headless": false, | ||
"boot_wait": "2m", | ||
"ssh_username": "vagrant", | ||
"ssh_password": "vagrant", | ||
"ssh_wait_timeout": "2h", | ||
"shutdown_command": "shutdown /s /t 10 /f /d p:4:1 /c \"Packer Shutdown\"", | ||
"guest_os_type": "windows8srv-64", | ||
"tools_upload_flavor": "windows", | ||
"disk_size": 61440, | ||
"vnc_port_min": 5900, | ||
"vnc_port_max": 5980, | ||
"floppy_files": [ | ||
"./answer_files/10/Autounattend.xml", | ||
"./scripts/microsoft-updates.bat", | ||
"./scripts/win-updates.ps1", | ||
"./scripts/openssh.ps1" | ||
], | ||
"vmx_data": { | ||
"RemoteDisplay.vnc.enabled": "false", | ||
"RemoteDisplay.vnc.port": "5900", | ||
"memsize": "2048", | ||
"numvcpus": "2", | ||
"scsi0.virtualDev": "lsisas1068" | ||
} | ||
}, | ||
{ | ||
"type": "virtualbox-iso", | ||
"iso_url": "http://iso.esd.microsoft.com/W10IP/E0F85BFCD0F6BA607BF1528926371D21F8F6B6BF/Windows10_InsiderPreview_x64_EN-US_10074.iso", | ||
"iso_checksum_type": "sha1", | ||
"iso_checksum": "E354B44994B46FB7CDC295FA1F075D9F95FECEA8", | ||
"headless": false, | ||
"boot_wait": "2m", | ||
"ssh_username": "vagrant", | ||
"ssh_password": "vagrant", | ||
"ssh_wait_timeout": "2h", | ||
"shutdown_command": "shutdown /s /t 10 /f /d p:4:1 /c \"Packer Shutdown\"", | ||
"guest_os_type": "Windows81_64", | ||
"disk_size": 61440, | ||
"floppy_files": [ | ||
"./answer_files/10/Autounattend.xml", | ||
"./scripts/microsoft-updates.bat", | ||
"./scripts/win-updates.ps1", | ||
"./scripts/openssh.ps1", | ||
"./scripts/oracle-cert.cer" | ||
], | ||
"vboxmanage": [ | ||
[ | ||
"modifyvm", | ||
"{{.Name}}", | ||
"--memory", | ||
"2048" | ||
], | ||
[ | ||
"modifyvm", | ||
"{{.Name}}", | ||
"--cpus", | ||
"2" | ||
] | ||
] | ||
} | ||
], | ||
"post-processors": [ | ||
{ | ||
"type": "vagrant", | ||
"keep_input_artifact": false, | ||
"output": "windows_10_{{.Provider}}.box", | ||
"vagrantfile_template": "vagrantfile-windows_10.template" | ||
} | ||
] | ||
} |
Oops, something went wrong.