Skip to content

Instantly share code, notes, and snippets.

@mefellows
Created June 19, 2015 06:58
Show Gist options
  • Save mefellows/ef024590873c63bff323 to your computer and use it in GitHub Desktop.
Save mefellows/ef024590873c63bff323 to your computer and use it in GitHub Desktop.
Restart Windows Defect - Packer Community #54
{
"builders": [
{
"type": "virtualbox-ovf",
"communicator":"winrm",
"name":"win2008updates",
"source_path": "/Users/mfellows/Downloads/output-basebox-vbox/talentsearch-api-1.0.0.ovf",
"headless": false,
"boot_wait": "1m",
"winrm_username": "vagrant",
"winrm_password": "vagrant",
"winrm_timeout": "5m",
"guest_additions_mode": "disable",
"shutdown_timeout": "2h",
"shutdown_command": "shutdown /s /t 10 /f /d p:4:1 /c \"Packer Shutdown\"",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "2048"],
["modifyvm", "{{.Name}}", "--cpus", "1"]
]
}],
"provisioners": [
{
"type":"windows-restart"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment