Vagrant doesnt connect via winrm

82 views
Skip to first unread message

mat...@mlfvs.info

unread,
Mar 4, 2016, 11:17:58 AM3/4/16
to Vagrant
Hi,

"vagrant up" is consistently flaking out with "Timed out while waiting for the machine to boot." just after "default: WinRM transport: plaintext"
I have tried everything I can think of, to the point that i've now rebuilt my laptop with msdn windows 7 pro x64, vmware workstation 8 Pro + licence, vc++ redistributable 2010 x86, vagrant 1.8.1, vagrant-vmware-workstation + license, and my uber-basic vagrantfile - always with the same error.

I have done set-item wsman:/localhost/Client/TrustedHosts -value * on both client and vm.

Still: "Timed out while waiting for the machine to boot"

Any suggestions?

mat...@mlfvs.info

unread,
Mar 4, 2016, 11:50:47 AM3/4/16
to Vagrant
P.S.

To prove that winrm is active on the vm, this works from the laptop powershell prompt:
Invoke-Command { "hello, world" | Out-File "C:\log.log" } -computername 192.168.244.129 -Cred (New-Object TypeName System.Management.Automation.PSCredential ArgumentList "Administrator", (ConvertTo-SecureString String "Password" AsPlainText -Force))


Vagrantfile:

# -*- mode: ruby -*-
# vi: set ft=ruby :


Vagrant.configure(2) do |config|
 config
.vm.guest = :windows
 config
.vm.box = "vmware_windows-2012r2.box"
 config
.vm.box_url = "http://myTeamcityServer/guestAuth/repository/download/Infrastructure_VanillaVM_VanillaVM/14901:id/vmware_windows-2012r2.box"
 config
.vm.communicator = "winrm"
 config
.winrm.username = "Administrator"
 config
.winrm.password = "Telent2016"
 config
.vm.boot_timeout = 1200
end



debug output:

PS C:\vagrant> vagrant up
 INFO
global: Vagrant version: 1.8.1
 INFO
global: Ruby version: 2.2.3
 INFO
global: RubyGems version: 2.4.5.1
 INFO
global: VAGRANT_EXECUTABLE="C:\\HashiCorp\\Vagrant\\embedded\\gems\\gems\\vagrant-1.8.1\\bin\\vagrant"
 INFO
global: VAGRANT_INSTALLER_EMBEDDED_DIR="C:\\HashiCorp\\Vagrant\\embedded"
 INFO
global: VAGRANT_INSTALLER_ENV="1"
 INFO
global: VAGRANT_INSTALLER_VERSION="2"
 INFO
global: VAGRANT_INTERNAL_BUNDLERIZED="1"
 INFO
global: VAGRANT_LOG="debug"
 INFO
global: VAGRANT_OLD_ENV_="::=::\\"
 INFO
global: VAGRANT_OLD_ENV_ALLUSERSPROFILE="C:\\ProgramData"
 INFO
global: VAGRANT_OLD_ENV_APPDATA="C:\\Users\\Thing\\AppData\\Roaming"
 INFO
global: VAGRANT_OLD_ENV_CommonProgramFiles="C:\\Program Files (x86)\\Common Files"
 INFO
global: VAGRANT_OLD_ENV_CommonProgramFiles(x86)="C:\\Program Files (x86)\\Common Files"
 INFO
global: VAGRANT_OLD_ENV_CommonProgramW6432="C:\\Program Files\\Common Files"
 INFO
global: VAGRANT_OLD_ENV_COMPUTERNAME="THING-PC"
 INFO
global: VAGRANT_OLD_ENV_ComSpec="C:\\Windows\\system32\\cmd.exe"
 INFO
global: VAGRANT_OLD_ENV_FP_NO_HOST_CHECK="NO"
 INFO
global: VAGRANT_OLD_ENV_HOMEDRIVE="C:"
 INFO
global: VAGRANT_OLD_ENV_HOMEPATH="\\Users\\Thing"
 INFO
global: VAGRANT_OLD_ENV_https_proxy="http://myproxy:8080/accelerated_pac_base.pac"
 INFO
global: VAGRANT_OLD_ENV_http_proxy="http://myproxy:8080/accelerated_pac_base.pac"
 INFO
global: VAGRANT_OLD_ENV_LOCALAPPDATA="C:\\Users\\Thing\\AppData\\Local"
 INFO
global: VAGRANT_OLD_ENV_LOGONSERVER="\\\\THING-PC"
 INFO
global: VAGRANT_OLD_ENV_NUMBER_OF_PROCESSORS="4"
 INFO
global: VAGRANT_OLD_ENV_OS="Windows_NT"
 INFO
global: VAGRANT_OLD_ENV_Path="C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\system32;C:\\Windows;C
:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\HashiCorp\\Vagrant\\bin"

 INFO
global: VAGRANT_OLD_ENV_PATHEXT=".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC"
 INFO
global: VAGRANT_OLD_ENV_PROCESSOR_ARCHITECTURE="x86"
 INFO
global: VAGRANT_OLD_ENV_PROCESSOR_ARCHITEW6432="AMD64"
 INFO
global: VAGRANT_OLD_ENV_PROCESSOR_IDENTIFIER="Intel64 Family 6 Model 37 Stepping 2, GenuineIntel"
 INFO
global: VAGRANT_OLD_ENV_PROCESSOR_LEVEL="6"
 INFO
global: VAGRANT_OLD_ENV_PROCESSOR_REVISION="2502"
 INFO
global: VAGRANT_OLD_ENV_ProgramData="C:\\ProgramData"
 INFO
global: VAGRANT_OLD_ENV_ProgramFiles="C:\\Program Files (x86)"
 INFO
global: VAGRANT_OLD_ENV_ProgramFiles(x86)="C:\\Program Files (x86)"
 INFO
global: VAGRANT_OLD_ENV_ProgramW6432="C:\\Program Files"
 INFO
global: VAGRANT_OLD_ENV_PSModulePath="C:\\Users\\Thing\\Documents\\WindowsPowerShell\\Modules;C:\\Windows\\system3
2\\WindowsPowerShell\\v1.0\\Modules\\"

 INFO
global: VAGRANT_OLD_ENV_PUBLIC="C:\\Users\\Public"
 INFO
global: VAGRANT_OLD_ENV_SystemDrive="C:"
 INFO
global: VAGRANT_OLD_ENV_SystemRoot="C:\\Windows"
 INFO
global: VAGRANT_OLD_ENV_TEMP="C:\\Users\\Thing\\AppData\\Local\\Temp"
 INFO
global: VAGRANT_OLD_ENV_TMP="C:\\Users\\Thing\\AppData\\Local\\Temp"
 INFO
global: VAGRANT_OLD_ENV_USERDOMAIN="Thing-PC"
 INFO
global: VAGRANT_OLD_ENV_USERNAME="Thing"
 INFO
global: VAGRANT_OLD_ENV_USERPROFILE="C:\\Users\\Thing"
 INFO
global: VAGRANT_OLD_ENV_VAGRANT_LOG="debug"
 INFO
global: VAGRANT_OLD_ENV_windir="C:\\Windows"
 INFO
global: VAGRANT_OLD_ENV_windows_tracing_flags="3"
 INFO
global: VAGRANT_OLD_ENV_windows_tracing_logfile="C:\\BVTBin\\Tests\\installpackage\\csilogfile.log"
 INFO
global: Plugins:
 INFO
global:   - bundler = 1.10.6
 INFO
global:   - mime-types = 1.25.1
 INFO
global:   - rest-client = 1.6.9
 INFO
global:   - vagrant-share = 1.1.5
 INFO
global:   - vagrant-vmware-workstation = 4.0.8
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/box/plugin.rb
 INFO manager
: Registered plugin: box command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/cap/plugin.rb
 INFO manager
: Registered plugin: cap command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/destroy/plugin
.rb
 INFO manager
: Registered plugin: destroy command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/global-status/
plugin
.rb
 INFO manager
: Registered plugin: global-status command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/halt/plugin.rb


 INFO manager
: Registered plugin: halt command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/help/plugin.rb


 INFO manager
: Registered plugin: help command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/init/plugin.rb


 INFO manager
: Registered plugin: init command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/list-commands/
plugin
.rb
 INFO manager
: Registered plugin: list-commands command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/login/plugin.r
b
 INFO manager
: Registered plugin: vagrant-login
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/package/plugin
.rb
 INFO manager
: Registered plugin: package command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/plugin/plugin.
rb
 INFO manager
: Registered plugin: plugin command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/port/plugin.rb


 INFO manager
: Registered plugin: port command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/powershell/plu
gin
.rb
 INFO manager
: Registered plugin: powershell command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/provider/plugi
n
.rb
 INFO manager
: Registered plugin: provider command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/provision/plug
in.rb
 INFO manager
: Registered plugin: provision command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/push/plugin.rb


 INFO manager
: Registered plugin: push command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/rdp/plugin.rb
 INFO manager
: Registered plugin: rdp command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/reload/plugin.
rb
 INFO manager
: Registered plugin: reload command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/resume/plugin.
rb
 INFO manager
: Registered plugin: resume command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/snapshot/plugi
n
.rb
 INFO manager
: Registered plugin: snapshot command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/ssh/plugin.rb
 INFO manager
: Registered plugin: ssh command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/ssh_config/plu
gin
.rb
 INFO manager
: Registered plugin: ssh-config command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/status/plugin.
rb
 INFO manager
: Registered plugin: status command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/suspend/plugin
.rb
 INFO manager
: Registered plugin: suspend command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/up/plugin.rb
 INFO manager
: Registered plugin: up command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/version/plugin
.rb
 INFO manager
: Registered plugin: version command
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/communicators/ssh/plugi
n
.rb
 INFO manager
: Registered plugin: ssh communicator
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/communicators/winrm/plu
gin
.rb
 INFO manager
: Registered plugin: winrm communicator
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/arch/plugin.rb
 INFO manager
: Registered plugin: Arch guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/atomic/plugin.rb


 INFO manager
: Registered plugin: Atomic Host guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/coreos/plugin.rb


 INFO manager
: Registered plugin: CoreOS guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/darwin/plugin.rb


 INFO manager
: Registered plugin: Darwin guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/debian/plugin.rb


 INFO manager
: Registered plugin: Debian guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/esxi/plugin.rb
 INFO manager
: Registered plugin: ESXi guest.
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/fedora/plugin.rb


 INFO manager
: Registered plugin: Fedora guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/freebsd/plugin.r
b
 INFO manager
: Registered plugin: FreeBSD guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/funtoo/plugin.rb


 INFO manager
: Registered plugin: Funtoo guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/gentoo/plugin.rb


 INFO manager
: Registered plugin: Gentoo guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/linux/plugin.rb
 INFO manager
: Registered plugin: Linux guest.
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/mint/plugin.rb
 INFO manager
: Registered plugin: Mint guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/netbsd/plugin.rb


 INFO manager
: Registered plugin: NetBSD guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/nixos/plugin.rb
 INFO manager
: Registered plugin: NixOS guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/omnios/plugin.rb


 INFO manager
: Registered plugin: OmniOS guest.
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/openbsd/plugin.r
b
 INFO manager
: Registered plugin: OpenBSD guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/photon/plugin.rb


 INFO manager
: Registered plugin: VMware Photon guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/pld/plugin.rb
 INFO manager
: Registered plugin: PLD Linux guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/redhat/plugin.rb


 INFO manager
: Registered plugin: Red Hat Enterprise Linux guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/slackware/plugin
.rb
 INFO manager
: Registered plugin: Slackware guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/smartos/plugin.r
b
 INFO manager
: Registered plugin: SmartOS guest.
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/solaris/plugin.r
b
 INFO manager
: Registered plugin: Solaris guest.
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/solaris11/plugin
.rb
 INFO manager
: Registered plugin: Solaris 11 guest.
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/suse/plugin.rb
 INFO manager
: Registered plugin: SUSE guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/tinycore/plugin.
rb
 INFO manager
: Registered plugin: TinyCore Linux guest.
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/ubuntu/plugin.rb


 INFO manager
: Registered plugin: Ubuntu guest
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/windows/plugin.r
b
 INFO manager
: Registered plugin: Windows guest.
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/arch/plugin.rb
 INFO manager
: Registered plugin: Arch host
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/bsd/plugin.rb
 INFO manager
: Registered plugin: BSD host
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/darwin/plugin.rb
 INFO manager
: Registered plugin: Mac OS X host
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/freebsd/plugin.rb


 INFO manager
: Registered plugin: FreeBSD host
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/gentoo/plugin.rb
 INFO manager
: Registered plugin: Gentoo host
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/linux/plugin.rb
 INFO manager
: Registered plugin: Linux host
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/null/plugin.rb
 INFO manager
: Registered plugin: null host
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/redhat/plugin.rb
 INFO manager
: Registered plugin: Red Hat Enterprise Linux host
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/slackware/plugin.
rb
 INFO manager
: Registered plugin: Slackware host
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/suse/plugin.rb
 INFO manager
: Registered plugin: SUSE host
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/windows/plugin.rb


 INFO manager
: Registered plugin: Windows host
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/kernel_v1/plugin.rb
 INFO manager
: Registered plugin: kernel
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/kernel_v2/plugin.rb
 INFO manager
: Registered plugin: kernel
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/plugin
.rb
 INFO manager
: Registered plugin: docker-provider
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/hyperv/plugin
.rb
 INFO manager
: Registered plugin: Hyper-V provider
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/virtualbox/pl
ugin
.rb
 INFO manager
: Registered plugin: VirtualBox provider
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/ansible/pl
ugin
.rb
 INFO manager
: Registered plugin: ansible
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/cfengine/p
lugin
.rb
 INFO manager
: Registered plugin: CFEngine Provisioner
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/chef/plugi
n
.rb
 INFO manager
: Registered plugin: chef
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/docker/plu
gin
.rb
 INFO manager
: Registered plugin: docker
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/file/plugi
n
.rb
 INFO manager
: Registered plugin: file
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/puppet/plu
gin
.rb
 INFO manager
: Registered plugin: puppet
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/salt/plugi
n
.rb
 INFO manager
: Registered plugin: salt
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/shell/plug
in.rb
 INFO manager
: Registered plugin: shell
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/pushes/atlas/plugin.rb
 INFO manager
: Registered plugin: atlas
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/pushes/ftp/plugin.rb
 INFO manager
: Registered plugin: ftp
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/pushes/heroku/plugin.rb


 INFO manager
: Registered plugin: heroku
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/pushes/local-exec/plugi
n
.rb
 INFO manager
: Registered plugin: local-exec
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/pushes/noop/plugin.rb
 INFO manager
: Registered plugin: noop
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/synced_folders/nfs/plug
in.rb
 INFO manager
: Registered plugin: NFS synced folders
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/synced_folders/rsync/pl
ugin
.rb
 INFO manager
: Registered plugin: RSync synced folders
DEBUG
global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/synced_folders/smb/plug
in.rb
 INFO manager
: Registered plugin: SMB synced folders
 INFO
global: Loading plugins!
 INFO manager
: Registered plugin: vagrant-share
 INFO manager
: Registered plugin: VMware Workstation Provider
 INFO vagrant
: `vagrant` invoked: ["up"]
DEBUG vagrant
: Creating Vagrant environment
 INFO environment
: Environment initialized (#<Vagrant::Environment:0x3b2c8d8>)
 INFO environment
:   - cwd: C:/vagrant
 INFO environment: Home path: C:/
Users/Thing/.vagrant.d
 INFO environment
: Local data path: C:/vagrant/.vagrant
DEBUG environment
: Creating: C:/vagrant/.vagrant
 INFO environment
: Running hook: environment_plugins_loaded
 INFO runner
: Preparing hooks for middleware sequence...
 INFO runner
: 1 hooks defined.
 INFO runner
: Running action: environment_plugins_loaded #<Vagrant::Action::Builder:0x3880800>
 INFO environment
: Running hook: environment_load
 INFO runner
: Preparing hooks for middleware sequence...
 INFO runner
: 2 hooks defined.
 INFO runner
: Running action: environment_load #<Vagrant::Action::Builder:0x3668850>
 INFO warden
: Calling IN action: #<HashiCorp::VagrantVMwareworkstation::SetupPlugin:0x3661110>
 INFO warden
: Calling IN action: HashiCorp Background Check: Start
DEBUG activation
: Last ping time: 1457103131
DEBUG activation
: License file ID: 747c5959-4512-40b7-9865-ef68e294b88a
 INFO warden
: Calling OUT action: HashiCorp Background Check: Start
 INFO warden
: Calling OUT action: #<HashiCorp::VagrantVMwareworkstation::SetupPlugin:0x3661110>
 INFO cli
: CLI: [] "up" []
DEBUG cli
: Invoking command class: VagrantPlugins::CommandUp::Command []
DEBUG command
: 'Up' each target VM...
 INFO loader
: Set :root = ["#<Pathname:C:/vagrant/Vagrantfile>"]
DEBUG loader
: Populating proc cache for #<Pathname:C:/vagrant/Vagrantfile>
DEBUG loader
: Load procs for pathname: C:/vagrant/Vagrantfile
 INFO loader
: Loading configuration in order: [:home, :root]
DEBUG loader
: Loading from: root (evaluating)
DEBUG loader
: Configuration loaded successfully, finalizing and returning
DEBUG push
: finalizing
 INFO loader
: Set "22157892_machine_default" = []
 INFO loader
: Loading configuration in order: [:home, :root, "22157892_machine_default"]
DEBUG loader
: Loading from: root (cache)
DEBUG loader
: Configuration loaded successfully, finalizing and returning
DEBUG push
: finalizing
 INFO host
: Autodetecting host type for [#<Vagrant::Environment: C:/vagrant>]
DEBUG host
: Trying: arch
DEBUG host
: Trying: darwin
DEBUG host
: Trying: freebsd
DEBUG host
: Trying: gentoo
DEBUG host
: Trying: redhat
DEBUG host
: Trying: slackware
DEBUG host
: Trying: suse
DEBUG host
: Trying: bsd
DEBUG host
: Trying: linux
DEBUG host
: Trying: null
DEBUG host
: Trying: windows
 INFO host
: Detected: windows!
DEBUG host
: Searching for cap: provider_install_vmware_workstation
DEBUG host
: Checking in: windows
DEBUG command
: Getting target VMs for command. Arguments:
DEBUG command
:  -- names: ["default"]
DEBUG command
:  -- options: {:provider=>nil}
DEBUG command
: Finding machine that match name: default
 INFO loader
: Set "22157892_machine_default" = []
 INFO loader
: Loading configuration in order: [:home, :root, "22157892_machine_default"]
DEBUG loader
: Loading from: root (cache)
DEBUG loader
: Configuration loaded successfully, finalizing and returning
DEBUG push
: finalizing
 INFO environment
: Getting machine: default (vmware_workstation)
 INFO environment
: Uncached load of machine.
 INFO loader
: Set "22157892_machine_default" = []
 INFO loader
: Loading configuration in order: [:home, :root, "22157892_machine_default"]
DEBUG loader
: Loading from: root (cache)
DEBUG loader
: Configuration loaded successfully, finalizing and returning
DEBUG push
: finalizing
 INFO box_collection
: Box found: vmware_windows-2012r2.box (vmware_desktop)
 INFO loader
: Set :"25449300_vmware_windows-2012r2.box_vmware_desktop" = ["#<Pathname:C:/Users/Thing/.vagrant.d/boxes/vm
ware_windows-2012r2.box/0/vmware_desktop/Vagrantfile>"
]
DEBUG loader
: Populating proc cache for #<Pathname:C:/Users/Thing/.vagrant.d/boxes/vmware_windows-2012r2.box/0/vmware_de
sktop
/Vagrantfile>
DEBUG loader
: Load procs for pathname: C:/Users/Thing/.vagrant.d/boxes/vmware_windows-2012r2.box/0/vmware_desktop/Vagran
tfile
 INFO loader
: Loading configuration in order: [:"25449300_vmware_windows-2012r2.box_vmware_desktop", :home, :root, "2215
7892_machine_default"
]
DEBUG loader
: Loading from: root (cache)
DEBUG loader
: Configuration loaded successfully, finalizing and returning
DEBUG push
: finalizing
 INFO machine
: Initializing machine: default
 INFO machine
:   - Provider: HashiCorp::VagrantVMwareworkstation::Provider
 INFO machine
:   - Box: #<Vagrant::Box:0x3b84610>
 INFO machine
:   - Data dir: C:/vagrant/.vagrant/machines/default/vmware_workstation
DEBUG vmware
: Re-initializing driver for new ID: nil
 INFO vmware_driver
: VMX file:
DEBUG machine
: Eager loading WinRM communicator to avoid GH-3390
 INFO winrm
: Initializing WinRMCommunicator
DEBUG vmware
: VM state requested. Current state: not_created
 INFO machine
: New machine ID: nil
DEBUG vmware
: Re-initializing driver for new ID: nil
 INFO vmware_driver
: VMX file:
 INFO
interface: Machine: metadata ["provider", :vmware_workstation, {:target=>:default}]
 INFO command
: With machine: default (#<HashiCorp::VagrantVMwareworkstation::Provider:0x2ccb9e0 @logger=#<Log4r::Logger:
0x2ccb980 @fullname="hashicorp::vagrant::vmware", @outputters=[], @additive=true, @name="vmware", @path="hashicorp::vagr
ant"
, @parent=#<Log4r::Logger:0x39aa238 @fullname="hashicorp", @outputters=[#<Log4r::StderrOutputter:0x368a318 @mon_owne
r
=nil, @mon_count=0, @mon_mutex=#<Mutex:0x368a2d0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x366
b1c0
@depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="hashicorp", @path="", @parent=#<Log4r::RootLogger:0x36bee7
8 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: default (Has
hiCorp
::VagrantVMwareworkstation::Provider)>, @driver=#<HashiCorp::VagrantVMwareworkstation::Driver::WorkstationWindows:
0x4499058 @lic_features=["workstation", "workstation10", "workstation11", "workstation12", "workstation10"], @logger=#<L
og4r
::Logger:0x4498f68 @fullname="hashicorp::provider::vmware_driver", @outputters=[], @additive=true, @name="vmware_dri
ver"
, @path="hashicorp::provider", @parent=#<Log4r::Logger:0x39aa238 @fullname="hashicorp", @outputters=[#<Log4r::Stderr
Outputter:0x368a318 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x368a2d0>, @name="stderr", @level=0, @formatter=#<
Log4r::DefaultFormatter:0x366b1c0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="hashicorp", @path="", @parent
=#<Log4r::RootLogger:0x36bee78 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @vmx_path=ni
l
, @vm_dir=nil, @reg_type=131097, @install_path=#<Pathname:C:\Program Files (x86)\VMware\VMware Workstation\>, @version=
"12.1.0.3272444", @vmrun_path=#<Pathname:C:\Program Files (x86)\VMware\VMware Workstation/vmrun.exe>, @vnetlib_path=#<Pa
thname
:C:\Program Files (x86)\VMware\VMware Workstation/vnetlib.exe>, @natconf_path=#<Pathname:C:/ProgramData/VMware/vmn
etnat
.conf>>, @cap_logger=#<Log4r::Logger:0x2fa8a90 @fullname="vagrant::capability_host::hashicorp::vagrantvmwareworksta
tion
::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::hashicorp::vagrantvm
wareworkstation
", @parent=#<Log4r::Logger:0x36bef98 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x368a318
 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x368a2d0>, @name="
stderr", @level=0, @formatter=#<Log4r::DefaultForma
tter:0x366b1c0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="
vagrant", @path="", @parent=#<Log4r::RootLogger:
0x36bee78 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:vmware_worksta
tion, #<#<Class:0x2fa9528>:0x2cf1378>]], @cap_args=[#<Vagrant::Machine: default (HashiCorp::VagrantVMwareworkstation::Pr
ovider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x2fa93c0 @items={:public_address=>#<Proc:0x3b854b0@C:/HashiCorp/Vagr
ant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/plugin.rb:54>, :proxy_machine=>#<Proc:0x3b85390@C:/HashiCo
rp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/plugin.rb:59>}, @results_cache={}>, :hyperv=>#<Vagr
ant::Registry:0x2fa92b8 @items={:public_address=>#<Proc:0x3c455d0@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/
plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x2fa91f8 @items={:forward
ed_ports=>#<Proc:0x3b6bb90@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/virtualbox/plugin.rb:
27>, :nic_mac_addresses=>#<Proc:0x3b6bb00@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/virtua
lbox/plugin.rb:32>, :public_address=>#<Proc:0x3a0c2f0@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-share-1.1.5/lib/va
grant-share.rb:39>, :snapshot_list=>#<Proc:0x3b6ba58@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provi
ders/virtualbox/plugin.rb:42>}, @results_cache={}>, :vmware_workstation=>#<Vagrant::Registry:0x2fa9018 @items={:forwarde
d_ports=>#<Proc:0x38aa1d0@C:/Users/Thing/.vagrant.d/gems/gems/vagrant-vmware-workstation-4.0.8/lib/vagrant-vmware-workst
ation/plugin.rb:92>, :public_address=>#<Proc:0x38aa770@C:/Users/Thing/.vagrant.d/gems/gems/vagrant-vmware-workstation-4.
0.8/lib/vagrant-vmware-workstation/plugin.rb:97>, :snapshot_list=>#<Proc:0x38aab30@C:/Users/Thing/.vagrant.d/gems/gems/v
agrant-vmware-workstation-4.0.8/lib/vagrant-vmware-workstation/plugin.rb:102>, :nic_mac_addresses=>#<Proc:0x38ab310@C:/U
sers/Thing/.vagrant.d/gems/gems/vagrant-vmware-workstation-4.0.8/lib/vagrant-vmware-workstation/plugin.rb:109>}, @result
s_cache={}>}>)
 INFO interface: info: Bringing machine 'default' up with 'vmware_workstation' provider...
Bringing machine 'default' up with 'vmware_workstation' provider...
DEBUG vmware: VM state requested. Current state: not_created
 INFO batch_action: Enabling parallelization by default.
 INFO batch_action: Disabling parallelization because provider doesn't support it: vmware_workstation
 INFO batch_action: Batch action will parallelize: false
 INFO batch_action: Starting action: #<Vagrant::Machine:0x301b2a0> up {:destroy_on_error=>true, :install_provider=>true,
 :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil}
 INFO machine: Calling action: up on provider VMware Workstation
DEBUG environment: Attempting to acquire process-lock: machine-action-67cb3d38c6eb9f958edae766f107ac81
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: machine-action-67cb3d38c6eb9f958edae766f107ac81
 INFO interface: Machine: action ["
up", "start", {:target=>:default}]
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x42abf30>
 INFO warden: Calling IN action: VMware Middleware: Compatibility
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x3be5df8>
 INFO warden: Calling IN action: VMware Middleware: FixOldMachineID
 INFO warden: Calling IN action: VMware Middleware: CheckVMware
 INFO warden: Calling IN action: VMware Middleware: SudoHelperInstall
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x3a945b0>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x38170c8>
 INFO warden: Calling IN action: VMware Middleware: Created
DEBUG vmware: VM state requested. Current state: not_created
 INFO warden: Calling OUT action: VMware Middleware: Created
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x30487c8>
 INFO warden: Calling IN action: #<Proc:0x486e718@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/acti
on/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x3048690>
 INFO handle_box: Machine already has box. HandleBox will not run.
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::PrepareClone:0x2fa95a0>
 INFO warden: Calling IN action: VMware Middleware: Import
 INFO import: VMX file not in metadata, attempting to discover...
DEBUG import: Cloning into: C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63


 INFO import: VMX file: C:/Users/Thing/.vagrant.d/boxes/vmware_windows-2012r2.box/0/vmware_desktop/packer-vmware-iso.vmx


 INFO interface: info: Cloning VMware VM: 'vmware_windows-2012r2.box'. This can take some time...
 INFO interface: info: ==> default: Cloning VMware VM: 'vmware_windows-2012r2.box'. This can take some time...
==> default: Cloning VMware VM: 'vmware_windows-2012r2.box'. This can take some time...
 INFO vmware_driver: Cloning VM to C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c
3992a63
DEBUG vmware_driver: Copying: disk.vmdk
DEBUG vmware_driver: Copying: metadata.json
DEBUG vmware_driver: Copying: packer-vmware-iso.nvram
DEBUG vmware_driver: Copying: packer-vmware-iso.vmsd
DEBUG vmware_driver: Copying: packer-vmware-iso.vmx
DEBUG vmware_driver: Copying: packer-vmware-iso.vmxf
DEBUG vmware_driver: Copying: Vagrantfile
 INFO vmware_driver: VMX file: C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992
a63/packer-vmware-iso.vmx
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = TRUE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = packer-vmware-iso
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.bsdname = en0
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.displayname = Ethernet
DEBUG vmware_driver:   - ethernet0.linkstatepropagation.enable = FALSE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 33
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.startconnected = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - ethernet0.wakeonpcktrcv = FALSE
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 6a 72 a7 d3 b0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - softpoweroff = TRUE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc
DEBUG vmware_driver:   - uuid.location = 56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
 INFO vmware_driver: Modifying VMX data...
DEBUG vmware_driver:   - SET .encoding = "
UTF-8"
DEBUG vmware_driver:   - SET bios.bootorder = "
hdd,CDROM"
DEBUG vmware_driver:   - SET checkpoint.vmstate = ""
DEBUG vmware_driver:   - SET cleanshutdown = "
TRUE"
DEBUG vmware_driver:   - SET config.version = "
8"
DEBUG vmware_driver:   - SET displayname = "
packer-vmware-iso"
DEBUG vmware_driver:   - SET ehci.pcislotnumber = "
-1"
DEBUG vmware_driver:   - SET ehci.present = "
FALSE"
DEBUG vmware_driver:   - SET ethernet0.addresstype = "
generated"
DEBUG vmware_driver:   - SET ethernet0.bsdname = "
en0"
DEBUG vmware_driver:   - SET ethernet0.connectiontype = "
nat"
DEBUG vmware_driver:   - SET ethernet0.displayname = "
Ethernet"
DEBUG vmware_driver:   - SET ethernet0.linkstatepropagation.enable = "
FALSE"
DEBUG vmware_driver:   - SET ethernet0.pcislotnumber = "
33"
DEBUG vmware_driver:   - SET ethernet0.present = "
TRUE"
DEBUG vmware_driver:   - SET ethernet0.startconnected = "
TRUE"
DEBUG vmware_driver:   - SET ethernet0.virtualdev = "
e1000"
DEBUG vmware_driver:   - SET ethernet0.wakeonpcktrcv = "
FALSE"
DEBUG vmware_driver:   - SET extendedconfigfile = "
packer-vmware-iso.vmxf"
DEBUG vmware_driver:   - SET floppy0.present = "
FALSE"
DEBUG vmware_driver:   - SET guestos = "
windows8srv-64"
DEBUG vmware_driver:   - SET gui.fitguestusingnativedisplayresolution = "
FALSE"
DEBUG vmware_driver:   - SET gui.fullscreenatpoweron = "
FALSE"
DEBUG vmware_driver:   - SET gui.viewmodeatpoweron = "
windowed"
DEBUG vmware_driver:   - SET hgfs.linkrootshare = "
TRUE"
DEBUG vmware_driver:   - SET hgfs.maprootshare = "
TRUE"
DEBUG vmware_driver:   - SET ide1:0.devicetype = "
cdrom-raw"
DEBUG vmware_driver:   - SET ide1:0.filename = "
auto detect"
DEBUG vmware_driver:   - SET ide1:0.present = "
TRUE"
DEBUG vmware_driver:   - SET isolation.tools.hgfs.disable = "
FALSE"
DEBUG vmware_driver:   - SET memsize = "
1024"
DEBUG vmware_driver:   - SET migrate.hostlog = "
.\packer-vmware-iso-e8b3122f.hlog"
DEBUG vmware_driver:   - SET monitor.phys_bits_used = "
40"
DEBUG vmware_driver:   - SET msg.autoanswer = "
true"
DEBUG vmware_driver:   - SET numa.autosize.cookie = "
10001"
DEBUG vmware_driver:   - SET numa.autosize.vcpu.maxpervirtualnode = "
1"
DEBUG vmware_driver:   - SET numvcpus = "
1"
DEBUG vmware_driver:   - SET nvram = "
packer-vmware-iso.nvram"
DEBUG vmware_driver:   - SET pcibridge0.pcislotnumber = "
17"
DEBUG vmware_driver:   - SET pcibridge0.present = "
TRUE"
DEBUG vmware_driver:   - SET pcibridge4.functions = "
8"
DEBUG vmware_driver:   - SET pcibridge4.pcislotnumber = "
21"
DEBUG vmware_driver:   - SET pcibridge4.present = "
TRUE"
DEBUG vmware_driver:   - SET pcibridge4.virtualdev = "
pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge5.functions = "
8"
DEBUG vmware_driver:   - SET pcibridge5.pcislotnumber = "
22"
DEBUG vmware_driver:   - SET pcibridge5.present = "
TRUE"
DEBUG vmware_driver:   - SET pcibridge5.virtualdev = "
pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge6.functions = "
8"
DEBUG vmware_driver:   - SET pcibridge6.pcislotnumber = "
23"
DEBUG vmware_driver:   - SET pcibridge6.present = "
TRUE"
DEBUG vmware_driver:   - SET pcibridge6.virtualdev = "
pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge7.functions = "
8"
DEBUG vmware_driver:   - SET pcibridge7.pcislotnumber = "
24"
DEBUG vmware_driver:   - SET pcibridge7.present = "
TRUE"
DEBUG vmware_driver:   - SET pcibridge7.virtualdev = "
pcieRootPort"
DEBUG vmware_driver:   - SET powertype.poweroff = "
soft"
DEBUG vmware_driver:   - SET powertype.poweron = "
soft"
DEBUG vmware_driver:   - SET powertype.reset = "
soft"
DEBUG vmware_driver:   - SET powertype.suspend = "
soft"
DEBUG vmware_driver:   - SET proxyapps.publishtohost = "
FALSE"
DEBUG vmware_driver:   - SET remotedisplay.vnc.enabled = "
FALSE"
DEBUG vmware_driver:   - SET remotedisplay.vnc.port = "
5978"
DEBUG vmware_driver:   - SET replay.filename = ""
DEBUG vmware_driver:   - SET replay.supported = "
FALSE"
DEBUG vmware_driver:   - SET scsi0.pcislotnumber = "
160"
DEBUG vmware_driver:   - SET scsi0.present = "
TRUE"
DEBUG vmware_driver:   - SET scsi0.saswwid = "
50 05 05 6a 72 a7 d3 b0"
DEBUG vmware_driver:   - SET scsi0.virtualdev = "
lsisas1068"
DEBUG vmware_driver:   - SET scsi0:0.filename = "
disk.vmdk"
DEBUG vmware_driver:   - SET scsi0:0.present = "
TRUE"
DEBUG vmware_driver:   - SET scsi0:0.redo = ""
DEBUG vmware_driver:   - SET softpoweroff = "
TRUE"
DEBUG vmware_driver:   - SET sound.startconnected = "
FALSE"
DEBUG vmware_driver:   - SET tools.synctime = "
TRUE"
DEBUG vmware_driver:   - SET tools.upgrade.policy = "
upgradeAtPowerCycle"
DEBUG vmware_driver:   - SET usb.pcislotnumber = "
-1"
DEBUG vmware_driver:   - SET usb.present = "
FALSE"
DEBUG vmware_driver:   - SET uuid.action = "
create"
DEBUG vmware_driver:   - SET uuid.bios = "
56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc"
DEBUG vmware_driver:   - SET uuid.location = "
56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc"
DEBUG vmware_driver:   - SET virtualhw.productcompatibility = "
hosted"
DEBUG vmware_driver:   - SET virtualhw.version = "
9"
DEBUG vmware_driver:   - SET vm.genid = "
8660380855336655423"
DEBUG vmware_driver:   - SET vm.genidx = "
-7605912608754498240"
DEBUG vmware_driver:   - SET vmci0.id = "
1861462627"
DEBUG vmware_driver:   - SET vmci0.pcislotnumber = "
35"
DEBUG vmware_driver:   - SET vmci0.present = "
TRUE"
DEBUG vmware_driver:   - SET vmotion.checkpointfbsize = "
33554432"
 INFO machine: New machine ID: "
C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c399
2a63/packer-vmware-iso.vmx"
DEBUG vmware: Re-initializing driver for new ID: "
C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-
4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx"
 INFO vmware_driver: VMX file: C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992
a63/packer-vmware-iso.vmx
 INFO warden: Calling IN action: VMware Middleware: SetDisplayName
 INFO vmx_modify: Setting the default display name: vagrant: default
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = TRUE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = packer-vmware-iso
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.bsdname = en0
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.displayname = Ethernet
DEBUG vmware_driver:   - ethernet0.linkstatepropagation.enable = FALSE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 33
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.startconnected = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - ethernet0.wakeonpcktrcv = FALSE
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 6a 72 a7 d3 b0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - softpoweroff = TRUE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc
DEBUG vmware_driver:   - uuid.location = 56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
 INFO vmware_driver: Modifying VMX data...
DEBUG vmware_driver:   - SET .encoding = "
UTF-8"
DEBUG vmware_driver:   - SET bios.bootorder = "
hdd,CDROM"
DEBUG vmware_driver:   - SET checkpoint.vmstate = ""
DEBUG vmware_driver:   - SET cleanshutdown = "
TRUE"
DEBUG vmware_driver:   - SET config.version = "
8"
DEBUG vmware_driver:   - SET displayname = "
vagrant: default"
DEBUG vmware_driver:   - SET ehci.pcislotnumber = "
-1"
DEBUG vmware_driver:   - SET ehci.present = "
FALSE"
DEBUG vmware_driver:   - SET ethernet0.addresstype = "
generated"
DEBUG vmware_driver:   - SET ethernet0.bsdname = "
en0"
DEBUG vmware_driver:   - SET ethernet0.connectiontype = "
nat"
DEBUG vmware_driver:   - SET ethernet0.displayname = "
Ethernet"
DEBUG vmware_driver:   - SET ethernet0.linkstatepropagation.enable = "
FALSE"
DEBUG vmware_driver:   - SET ethernet0.pcislotnumber = "
33"
DEBUG vmware_driver:   - SET ethernet0.present = "
TRUE"
DEBUG vmware_driver:   - SET ethernet0.startconnected = "
TRUE"
DEBUG vmware_driver:   - SET ethernet0.virtualdev = "
e1000"
DEBUG vmware_driver:   - SET ethernet0.wakeonpcktrcv = "
FALSE"
DEBUG vmware_driver:   - SET extendedconfigfile = "
packer-vmware-iso.vmxf"
DEBUG vmware_driver:   - SET floppy0.present = "
FALSE"
DEBUG vmware_driver:   - SET guestos = "
windows8srv-64"
DEBUG vmware_driver:   - SET gui.fitguestusingnativedisplayresolution = "
FALSE"
DEBUG vmware_driver:   - SET gui.fullscreenatpoweron = "
FALSE"
DEBUG vmware_driver:   - SET gui.viewmodeatpoweron = "
windowed"
DEBUG vmware_driver:   - SET hgfs.linkrootshare = "
TRUE"
DEBUG vmware_driver:   - SET hgfs.maprootshare = "
TRUE"
DEBUG vmware_driver:   - SET ide1:0.devicetype = "
cdrom-raw"
DEBUG vmware_driver:   - SET ide1:0.filename = "
auto detect"
DEBUG vmware_driver:   - SET ide1:0.present = "
TRUE"
DEBUG vmware_driver:   - SET isolation.tools.hgfs.disable = "
FALSE"
DEBUG vmware_driver:   - SET memsize = "
1024"
DEBUG vmware_driver:   - SET migrate.hostlog = "
.\packer-vmware-iso-e8b3122f.hlog"
DEBUG vmware_driver:   - SET monitor.phys_bits_used = "
40"
DEBUG vmware_driver:   - SET msg.autoanswer = "
true"
DEBUG vmware_driver:   - SET numa.autosize.cookie = "
10001"
DEBUG vmware_driver:   - SET numa.autosize.vcpu.maxpervirtualnode = "
1"
DEBUG vmware_driver:   - SET numvcpus = "
1"
DEBUG vmware_driver:   - SET nvram = "
packer-vmware-iso.nvram"
DEBUG vmware_driver:   - SET pcibridge0.pcislotnumber = "
17"
DEBUG vmware_driver:   - SET pcibridge0.present = "
TRUE"
DEBUG vmware_driver:   - SET pcibridge4.functions = "
8"
DEBUG vmware_driver:   - SET pcibridge4.pcislotnumber = "
21"
DEBUG vmware_driver:   - SET pcibridge4.present = "
TRUE"
DEBUG vmware_driver:   - SET pcibridge4.virtualdev = "
pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge5.functions = "
8"
DEBUG vmware_driver:   - SET pcibridge5.pcislotnumber = "
22"
DEBUG vmware_driver:   - SET pcibridge5.present = "
TRUE"
DEBUG vmware_driver:   - SET pcibridge5.virtualdev = "
pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge6.functions = "
8"
DEBUG vmware_driver:   - SET pcibridge6.pcislotnumber = "
23"
DEBUG vmware_driver:   - SET pcibridge6.present = "
TRUE"
DEBUG vmware_driver:   - SET pcibridge6.virtualdev = "
pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge7.functions = "
8"
DEBUG vmware_driver:   - SET pcibridge7.pcislotnumber = "
24"
DEBUG vmware_driver:   - SET pcibridge7.present = "
TRUE"
DEBUG vmware_driver:   - SET pcibridge7.virtualdev = "
pcieRootPort"
DEBUG vmware_driver:   - SET powertype.poweroff = "
soft"
DEBUG vmware_driver:   - SET powertype.poweron = "
soft"
DEBUG vmware_driver:   - SET powertype.reset = "
soft"
DEBUG vmware_driver:   - SET powertype.suspend = "
soft"
DEBUG vmware_driver:   - SET proxyapps.publishtohost = "
FALSE"
DEBUG vmware_driver:   - SET remotedisplay.vnc.enabled = "
FALSE"
DEBUG vmware_driver:   - SET remotedisplay.vnc.port = "
5978"
DEBUG vmware_driver:   - SET replay.filename = ""
DEBUG vmware_driver:   - SET replay.supported = "
FALSE"
DEBUG vmware_driver:   - SET scsi0.pcislotnumber = "
160"
DEBUG vmware_driver:   - SET scsi0.present = "
TRUE"
DEBUG vmware_driver:   - SET scsi0.saswwid = "
50 05 05 6a 72 a7 d3 b0"
DEBUG vmware_driver:   - SET scsi0.virtualdev = "
lsisas1068"
DEBUG vmware_driver:   - SET scsi0:0.filename = "
disk.vmdk"
DEBUG vmware_driver:   - SET scsi0:0.present = "
TRUE"
DEBUG vmware_driver:   - SET scsi0:0.redo = ""
DEBUG vmware_driver:   - SET softpoweroff = "
TRUE"
DEBUG vmware_driver:   - SET sound.startconnected = "
FALSE"
DEBUG vmware_driver:   - SET tools.synctime = "
TRUE"
DEBUG vmware_driver:   - SET tools.upgrade.policy = "
upgradeAtPowerCycle"
DEBUG vmware_driver:   - SET usb.pcislotnumber = "
-1"
DEBUG vmware_driver:   - SET usb.present = "
FALSE"
DEBUG vmware_driver:   - SET uuid.action = "
create"
DEBUG vmware_driver:   - SET uuid.bios = "
56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc"
DEBUG vmware_driver:   - SET uuid.location = "
56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc"
DEBUG vmware_driver:   - SET virtualhw.productcompatibility = "
hosted"
DEBUG vmware_driver:   - SET virtualhw.version = "
9"
DEBUG vmware_driver:   - SET vm.genid = "
8660380855336655423"
DEBUG vmware_driver:   - SET vm.genidx = "
-7605912608754498240"
DEBUG vmware_driver:   - SET vmci0.id = "
1861462627"
DEBUG vmware_driver:   - SET vmci0.pcislotnumber = "
35"
DEBUG vmware_driver:   - SET vmci0.present = "
TRUE"
DEBUG vmware_driver:   - SET vmotion.checkpointfbsize = "
33554432"
 INFO warden: Calling IN action: VMware Middleware: Compatibility
 INFO warden: Calling IN action: VMware Middleware: FixOldMachineID
 INFO warden: Calling IN action: VMware Middleware: SudoHelperInstall
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::BoxCheckOutdated:0x4907700>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x48d8930>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x4680918>
 INFO warden: Calling IN action: VMware Middleware: Running
 INFO subprocess: Starting process: ["
C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: not_running
 INFO warden: Calling OUT action: VMware Middleware: Running
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x458d570>
 INFO warden: Calling IN action: #<Proc:0x449bb00@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/acti
on/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: VMware Middleware: PruneForwardedPorts
 INFO prune_forwarded_ports: Pruning forwarded ports...
DEBUG environment: Attempting to acquire process-lock: vmware-network
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: vmware-network
 INFO vmware_driver: Pruning forwarded ports...
 INFO subprocess: Starting process: ["
C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
 INFO vmware_driver: Reading detailed forwarded ports...
DEBUG vmware_driver: vmnet 'vmnet1' not NAT. ignoring
DEBUG vmware_driver: vmnet 'vmnet8' is NAT. Reading ports...
DEBUG vmware_driver: Error reading Registry key: NAT\TCPForward
DEBUG vmware_driver: Error reading Registry key: NAT\UDPForward
DEBUG nat_conf: Read section: incomingtcp
DEBUG nat_conf: -- Value: "
[incomingtcp]\n# Use these with care - anyone can enter into your virtual machine through the
se
...\n\n# FTP (both active and passive FTP is always enabled)\n#      ftp localhost 8887\n#8887 = 192.168.27.128:21\n\n
# WEB (make sure that if you are using named webhosting, names point to\n#     your host, not to guest... And if you are
 forwarding port other
\n#     than 80 make sure that your server copes with mismatched port \n#     number in Host: head
er
)\n#      lynx http://localhost:8888\n#8888 = 192.168.27.128:80\n\n# SSH\n#      ssh -p 8889 root@localhost\n#8889 = 1
92.168.27.128:22\n"
DEBUG nat_conf: Read section: incomingudp
DEBUG nat_conf: -- Value: "
[incomingudp]\n# UDP port forwarding example\n#6000 = 192.168.27.128:6001\n"
DEBUG nat_conf
: Replace section: incomingtcp
DEBUG nat_conf
: Replace section: incomingudp
DEBUG nat_conf
: Writing NAT file: "# Windows NAT configuration file\n\n[host]\n\n# NAT gateway address\nip = 192.168.244
.2/24\nhostMAC = 00:50:56:C0:00:08\n\n# enable configuration; disabled by default for security reasons\n#configport = 33
445\n\n# VMnet device if not specified on command line\ndevice = vmnet8\n\n# Allow PORT/EPRT FTP commands (they need inc
oming TCP stream...)\nactiveFTP = 1\n\n# Allows the source to have any OUI.  Turn this one if you change the OUI\n# in t
he MAC address of your virtual machines.\nallowAnyOUI = 1\n\n# Controls if (TCP) connections should be reset when the ad
apter\n# they are bound to goes down.\nresetConnectionOnLinkDown = 1\n\n# Controls if (TCP) connections should be reset
when guest TCP packet's\n# destination is the NAT's IP itself.\nresetConnectionOnDestLocalHost = 1\n\n# Controls if enab
le ipv6 for NAT mode\nnatIp6Enable = 0\n\n# Controls if set ipv6 prefix for NAT mode\nnatIp6Prefix = fd15:4ba5:5a2b:1008
::/64\n\n[tcp]\n# Value of timeout in TCP TIME_WAIT state, in seconds\ntimeWaitTimeout = 30\n\n[udp]\n# Timeout in secon
ds, 0 = no timeout, default = 30; real value might\n# be up to 100% longer\ntimeout = 30\n\n[dns]\n# This section applie
s only to Windows.\n#\n# Policy to use for DNS forwarding.  Accepted values include order,\n# rotate, burst.\n#\n# order
: send one DNS request at a time in order of the name servers\n# rotate: send one DNS request at a time, rotate through
the DNS servers\n# burst: send to three servers and wait for the first one to respond\npolicy = order\n\n# Timeout in se
conds before retrying DNS request.\ntimeout = 2\n\n# Retries before giving up on DNS request\nretries = 3\n\n# Automatic
ally detect the DNS servers (not supported in Windows NT)\nautodetect = 1\n\n# List of DNS servers to use.  Up to three
may be specified\n#nameserver1 = 198.41.0.4\n#nameserver2 = 192.36.148.17\n#nameserver3 = 202.12.27.33\n\n[netbios]\n\n#
 Timeout for NBNS queries.\nnbnsTimeout = 2\n\n# Number of retries for each NBNS query.\nnbnsRetries = 3\n\n# Timeout fo
r NBDS queries.\nnbdsTimeout = 3\n\n[incomingtcp]\n# Use these with care - anyone can enter into your virtual machine th
rough these...\n\n# FTP (both active and passive FTP is always enabled)\n#      ftp localhost 8887\n#8887 = 192.168.27.1
28:21\n\n# WEB (make sure that if you are using named webhosting, names point to\n#     your host, not to guest... And i
f you are forwarding port other\n#     than 80 make sure that your server copes with mismatched port \n#     number in H
ost: header)\n#      lynx http://localhost:8888\n#8888 = 192.168.27.128:80\n\n# SSH\n#      ssh -p 8889 root@localhost\n
#8889 = 192.168.27.128:22\n\n[incomingudp]\n# UDP port forwarding example\n#6000 = 192.168.27.128:6001\n\n[PrivilegedTCP
]\nautodetect = 1\n\n[PrivilegedUDP]\nautodetect = 1\n\n"

DEBUG nat_conf
: Read section: incomingtcp
DEBUG nat_conf
: -- Value: "[incomingtcp]\n# Use these with care - anyone can enter into your virtual machine through the
se...\n\n# FTP (both active and passive FTP is always enabled)\n#      ftp localhost 8887\n#8887 = 192.168.27.128:21\n\n
# WEB (make sure that if you are using named webhosting, names point to\n#     your host, not to guest... And if you are
 forwarding port other\n#     than 80 make sure that your server copes with mismatched port \n#     number in Host: head
er)\n#      lynx http://localhost:8888\n#8888 = 192.168.27.128:80\n\n# SSH\n#      ssh -p 8889 root@localhost\n#8889 = 1
92.168.27.128:22\n"

DEBUG nat_conf
: Read section: incomingudp
DEBUG nat_conf
: -- Value: "[incomingudp]\n# UDP port forwarding example\n#6000 = 192.168.27.128:6001\n"
 INFO environment
: Released process lock: vmware-network
DEBUG environment
: Attempting to acquire process-lock: dotlock
 INFO environment
: Acquired process lock: dotlock
 INFO environment
: Released process lock: dotlock
 INFO warden
: Calling IN action: VMware Middleware: CheckExistingNetwork
 INFO check_existing_network
: Checking if the vmnet devices are healthy...
DEBUG environment
: Attempting to acquire process-lock: vmware-network
DEBUG environment
: Attempting to acquire process-lock: dotlock
 INFO environment
: Acquired process lock: dotlock
 INFO environment
: Released process lock: dotlock
 INFO environment
: Acquired process lock: vmware-network
 INFO
interface: info: Verifying vmnet devices are healthy...
 INFO
interface: info: ==> default: Verifying vmnet devices are healthy...
==> default: Verifying vmnet devices are healthy...
 INFO environment
: Released process lock: vmware-network
DEBUG environment
: Attempting to acquire process-lock: dotlock
 INFO environment
: Acquired process lock: dotlock
 INFO environment
: Released process lock: dotlock
 INFO warden
: Calling IN action: #<Vagrant::Action::Builtin::Call:0x45083d0>
 INFO runner
: Preparing hooks for middleware sequence...
 INFO runner
: 1 hooks defined.
 INFO runner
: Running action: machine_action_up #<Vagrant::Action::Builder:0x4238e80>
 INFO warden
: Calling IN action: VMware Middleware: Suspended
 INFO subprocess
: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess
: Command not in installer, restoring original environment...
DEBUG subprocess
: Selecting on IO
DEBUG subprocess
: stdout: Total running VMs: 0
DEBUG subprocess
: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess
: Exit status: 0
DEBUG vmware
: VM state requested. Current state: not_running
DEBUG suspended
: result: false
 INFO warden
: Calling OUT action: VMware Middleware: Suspended
 INFO runner
: Preparing hooks for middleware sequence...
 INFO runner
: 1 hooks defined.
 INFO runner
: Running action: machine_action_up #<Vagrant::Action::Warden:0x368b548>
 INFO warden
: Calling IN action: #<Proc:0x47ac3f0@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/acti
on
/warden.rb:94 (lambda)>
 INFO warden
: Calling IN action: #<Vagrant::Action::Builtin::Provision:0x368b4e8>
 INFO provision
: Checking provisioner sentinel file...
 INFO warden
: Calling IN action: VMware Middleware: PrepareSyncedFolderCleanup
 INFO subprocess
: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess
: Command not in installer, restoring original environment...
DEBUG subprocess
: Selecting on IO
DEBUG subprocess
: stdout: Total running VMs: 0
DEBUG subprocess
: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess
: Exit status: 0
 INFO warden
: Calling IN action: #<VagrantPlugins::SyncedFolderNFS::ActionCleanup:0x2ff1ae0>
DEBUG host
: Searching for cap: nfs_prune
DEBUG host
: Checking in: windows
 INFO nfs
: Host doesn't support pruning NFS. Skipping.
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x2f67fc0>
 INFO synced_folder_cleanup: Invoking synced folder cleanup for: vmware
 INFO synced_folder: Clearing shared folders
 INFO vmware_driver: Clearing shared folders...
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = TRUE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.bsdname = en0
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.displayname = Ethernet
DEBUG vmware_driver:   - ethernet0.linkstatepropagation.enable = FALSE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 33
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.startconnected = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - ethernet0.wakeonpcktrcv = FALSE
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 6a 72 a7 d3 b0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - softpoweroff = TRUE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc
DEBUG vmware_driver:   - uuid.location = 56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
 INFO vmware_driver: Modifying VMX data...
DEBUG vmware_driver:   - SET .encoding = "UTF-8"
DEBUG vmware_driver:   - SET bios.bootorder = "hdd,CDROM"
DEBUG vmware_driver:   - SET checkpoint.vmstate = ""
DEBUG vmware_driver:   - SET cleanshutdown = "TRUE"
DEBUG vmware_driver:   - SET config.version = "8"
DEBUG vmware_driver:   - SET displayname = "vagrant: default"
DEBUG vmware_driver:   - SET ehci.pcislotnumber = "-1"
DEBUG vmware_driver:   - SET ehci.present = "FALSE"
DEBUG vmware_driver:   - SET ethernet0.addresstype = "generated"
DEBUG vmware_driver:   - SET ethernet0.bsdname = "en0"
DEBUG vmware_driver:   - SET ethernet0.connectiontype = "nat"
DEBUG vmware_driver:   - SET ethernet0.displayname = "Ethernet"
DEBUG vmware_driver:   - SET ethernet0.linkstatepropagation.enable = "FALSE"
DEBUG vmware_driver:   - SET ethernet0.pcislotnumber = "33"
DEBUG vmware_driver:   - SET ethernet0.present = "TRUE"
DEBUG vmware_driver:   - SET ethernet0.startconnected = "TRUE"
DEBUG vmware_driver:   - SET ethernet0.virtualdev = "e1000"
DEBUG vmware_driver:   - SET ethernet0.wakeonpcktrcv = "FALSE"
DEBUG vmware_driver:   - SET extendedconfigfile = "packer-vmware-iso.vmxf"
DEBUG vmware_driver:   - SET floppy0.present = "FALSE"
DEBUG vmware_driver:   - SET guestos = "windows8srv-64"
DEBUG vmware_driver:   - SET gui.fitguestusingnativedisplayresolution = "FALSE"
DEBUG vmware_driver:   - SET gui.fullscreenatpoweron = "FALSE"
DEBUG vmware_driver:   - SET gui.viewmodeatpoweron = "windowed"
DEBUG vmware_driver:   - SET hgfs.linkrootshare = "TRUE"
DEBUG vmware_driver:   - SET hgfs.maprootshare = "TRUE"
DEBUG vmware_driver:   - SET ide1:0.devicetype = "cdrom-raw"
DEBUG vmware_driver:   - SET ide1:0.filename = "auto detect"
DEBUG vmware_driver:   - SET ide1:0.present = "TRUE"
DEBUG vmware_driver:   - SET isolation.tools.hgfs.disable = "FALSE"
DEBUG vmware_driver:   - SET memsize = "1024"
DEBUG vmware_driver:   - SET migrate.hostlog = ".\packer-vmware-iso-e8b3122f.hlog"
DEBUG vmware_driver:   - SET monitor.phys_bits_used = "40"
DEBUG vmware_driver:   - SET msg.autoanswer = "true"
DEBUG vmware_driver:   - SET numa.autosize.cookie = "10001"
DEBUG vmware_driver:   - SET numa.autosize.vcpu.maxpervirtualnode = "1"
DEBUG vmware_driver:   - SET numvcpus = "1"
DEBUG vmware_driver:   - SET nvram = "packer-vmware-iso.nvram"
DEBUG vmware_driver:   - SET pcibridge0.pcislotnumber = "17"
DEBUG vmware_driver:   - SET pcibridge0.present = "TRUE"
DEBUG vmware_driver:   - SET pcibridge4.functions = "8"
DEBUG vmware_driver:   - SET pcibridge4.pcislotnumber = "21"
DEBUG vmware_driver:   - SET pcibridge4.present = "TRUE"
DEBUG vmware_driver:   - SET pcibridge4.virtualdev = "pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge5.functions = "8"
DEBUG vmware_driver:   - SET pcibridge5.pcislotnumber = "22"
DEBUG vmware_driver:   - SET pcibridge5.present = "TRUE"
DEBUG vmware_driver:   - SET pcibridge5.virtualdev = "pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge6.functions = "8"
DEBUG vmware_driver:   - SET pcibridge6.pcislotnumber = "23"
DEBUG vmware_driver:   - SET pcibridge6.present = "TRUE"
DEBUG vmware_driver:   - SET pcibridge6.virtualdev = "pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge7.functions = "8"
DEBUG vmware_driver:   - SET pcibridge7.pcislotnumber = "24"
DEBUG vmware_driver:   - SET pcibridge7.present = "TRUE"
DEBUG vmware_driver:   - SET pcibridge7.virtualdev = "pcieRootPort"
DEBUG vmware_driver:   - SET powertype.poweroff = "soft"
DEBUG vmware_driver:   - SET powertype.poweron = "soft"
DEBUG vmware_driver:   - SET powertype.reset = "soft"
DEBUG vmware_driver:   - SET powertype.suspend = "soft"
DEBUG vmware_driver:   - SET proxyapps.publishtohost = "FALSE"
DEBUG vmware_driver:   - SET remotedisplay.vnc.enabled = "FALSE"
DEBUG vmware_driver:   - SET remotedisplay.vnc.port = "5978"
DEBUG vmware_driver:   - SET replay.filename = ""
DEBUG vmware_driver:   - SET replay.supported = "FALSE"
DEBUG vmware_driver:   - SET scsi0.pcislotnumber = "160"
DEBUG vmware_driver:   - SET scsi0.present = "TRUE"
DEBUG vmware_driver:   - SET scsi0.saswwid = "50 05 05 6a 72 a7 d3 b0"
DEBUG vmware_driver:   - SET scsi0.virtualdev = "lsisas1068"
DEBUG vmware_driver:   - SET scsi0:0.filename = "disk.vmdk"
DEBUG vmware_driver:   - SET scsi0:0.present = "TRUE"
DEBUG vmware_driver:   - SET scsi0:0.redo = ""
DEBUG vmware_driver:   - SET sharedfolder.maxnum = "0"
DEBUG vmware_driver:   - SET softpoweroff = "TRUE"
DEBUG vmware_driver:   - SET sound.startconnected = "FALSE"
DEBUG vmware_driver:   - SET tools.synctime = "TRUE"
DEBUG vmware_driver:   - SET tools.upgrade.policy = "upgradeAtPowerCycle"
DEBUG vmware_driver:   - SET usb.pcislotnumber = "-1"
DEBUG vmware_driver:   - SET usb.present = "FALSE"
DEBUG vmware_driver:   - SET uuid.action = "create"
DEBUG vmware_driver:   - SET uuid.bios = "56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc"
DEBUG vmware_driver:   - SET uuid.location = "56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc"
DEBUG vmware_driver:   - SET virtualhw.productcompatibility = "hosted"
DEBUG vmware_driver:   - SET virtualhw.version = "9"
DEBUG vmware_driver:   - SET vm.genid = "8660380855336655423"
DEBUG vmware_driver:   - SET vm.genidx = "-7605912608754498240"
DEBUG vmware_driver:   - SET vmci0.id = "1861462627"
DEBUG vmware_driver:   - SET vmci0.pcislotnumber = "35"
DEBUG vmware_driver:   - SET vmci0.present = "TRUE"
DEBUG vmware_driver:   - SET vmotion.checkpointfbsize = "33554432"
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolders:0x29b3f98>
 INFO synced_folders: SyncedFolders loading from cache: false
 INFO synced_folders: Synced Folder Implementation: vmware
 INFO synced_folders:   - /vagrant: . => /vagrant
 INFO synced_folders: Invoking synced folder prepare for: vmware
 INFO warden: Calling IN action: VMware Middleware: PrepareNFSSettings
 INFO warden: Calling IN action: VMware Middleware: Network
DEBUG network: Available slots for high-level adapters: #<Set: {1, 2, 3, 4, 5, 6, 7, 8}>
 INFO network: Determining network adapters required for high-level configuration...
 INFO network: Determining adapters and compiling network configuration...
 INFO network: Slot 0. Type: nat
DEBUG network: Normalized configuration: {:auto_config=>false, :type=>:dhcp}
DEBUG network: Adapter configuration: {:type=>:nat, :slot=>0}
DEBUG network: Network configuration: {:type=>:dhcp, :auto_config=>false}
 INFO network: Enabling 1 adapters...
DEBUG environment: Attempting to acquire process-lock: vmware-network
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: vmware-network
 INFO interface: info: Preparing network adapters...
 INFO interface: info: ==> default: Preparing network adapters...
==> default: Preparing network adapters...
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = TRUE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.bsdname = en0
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.displayname = Ethernet
DEBUG vmware_driver:   - ethernet0.linkstatepropagation.enable = FALSE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 33
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.startconnected = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - ethernet0.wakeonpcktrcv = FALSE
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 6a 72 a7 d3 b0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - sharedfolder.maxnum = 0
DEBUG vmware_driver:   - softpoweroff = TRUE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc
DEBUG vmware_driver:   - uuid.location = 56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
 INFO vmware_driver: Modifying VMX data...
DEBUG vmware_driver:   - SET .encoding = "UTF-8"
DEBUG vmware_driver:   - SET bios.bootorder = "hdd,CDROM"
DEBUG vmware_driver:   - SET checkpoint.vmstate = ""
DEBUG vmware_driver:   - SET cleanshutdown = "TRUE"
DEBUG vmware_driver:   - SET config.version = "8"
DEBUG vmware_driver:   - SET displayname = "vagrant: default"
DEBUG vmware_driver:   - SET ehci.pcislotnumber = "-1"
DEBUG vmware_driver:   - SET ehci.present = "FALSE"
DEBUG vmware_driver:   - SET ethernet0.addresstype = "generated"
DEBUG vmware_driver:   - SET ethernet0.connectiontype = "nat"
DEBUG vmware_driver:   - SET ethernet0.present = "TRUE"
DEBUG vmware_driver:   - SET ethernet0.virtualdev = "e1000"
DEBUG vmware_driver:   - SET extendedconfigfile = "packer-vmware-iso.vmxf"
DEBUG vmware_driver:   - SET floppy0.present = "FALSE"
DEBUG vmware_driver:   - SET guestos = "windows8srv-64"
DEBUG vmware_driver:   - SET gui.fitguestusingnativedisplayresolution = "FALSE"
DEBUG vmware_driver:   - SET gui.fullscreenatpoweron = "FALSE"
DEBUG vmware_driver:   - SET gui.viewmodeatpoweron = "windowed"
DEBUG vmware_driver:   - SET hgfs.linkrootshare = "TRUE"
DEBUG vmware_driver:   - SET hgfs.maprootshare = "TRUE"
DEBUG vmware_driver:   - SET ide1:0.devicetype = "cdrom-raw"
DEBUG vmware_driver:   - SET ide1:0.filename = "auto detect"
DEBUG vmware_driver:   - SET ide1:0.present = "TRUE"
DEBUG vmware_driver:   - SET isolation.tools.hgfs.disable = "FALSE"
DEBUG vmware_driver:   - SET memsize = "1024"
DEBUG vmware_driver:   - SET migrate.hostlog = ".\packer-vmware-iso-e8b3122f.hlog"
DEBUG vmware_driver:   - SET monitor.phys_bits_used = "40"
DEBUG vmware_driver:   - SET msg.autoanswer = "true"
DEBUG vmware_driver:   - SET numa.autosize.cookie = "10001"
DEBUG vmware_driver:   - SET numa.autosize.vcpu.maxpervirtualnode = "1"
DEBUG vmware_driver:   - SET numvcpus = "1"
DEBUG vmware_driver:   - SET nvram = "packer-vmware-iso.nvram"
DEBUG vmware_driver:   - SET pcibridge0.pcislotnumber = "17"
DEBUG vmware_driver:   - SET pcibridge0.present = "TRUE"
DEBUG vmware_driver:   - SET pcibridge4.functions = "8"
DEBUG vmware_driver:   - SET pcibridge4.pcislotnumber = "21"
DEBUG vmware_driver:   - SET pcibridge4.present = "TRUE"
DEBUG vmware_driver:   - SET pcibridge4.virtualdev = "pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge5.functions = "8"
DEBUG vmware_driver:   - SET pcibridge5.pcislotnumber = "22"
DEBUG vmware_driver:   - SET pcibridge5.present = "TRUE"
DEBUG vmware_driver:   - SET pcibridge5.virtualdev = "pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge6.functions = "8"
DEBUG vmware_driver:   - SET pcibridge6.pcislotnumber = "23"
DEBUG vmware_driver:   - SET pcibridge6.present = "TRUE"
DEBUG vmware_driver:   - SET pcibridge6.virtualdev = "pcieRootPort"
DEBUG vmware_driver:   - SET pcibridge7.functions = "8"
DEBUG vmware_driver:   - SET pcibridge7.pcislotnumber = "24"
DEBUG vmware_driver:   - SET pcibridge7.present = "TRUE"
DEBUG vmware_driver:   - SET pcibridge7.virtualdev = "pcieRootPort"
DEBUG vmware_driver:   - SET powertype.poweroff = "soft"
DEBUG vmware_driver:   - SET powertype.poweron = "soft"
DEBUG vmware_driver:   - SET powertype.reset = "soft"
DEBUG vmware_driver:   - SET powertype.suspend = "soft"
DEBUG vmware_driver:   - SET proxyapps.publishtohost = "FALSE"
DEBUG vmware_driver:   - SET remotedisplay.vnc.enabled = "FALSE"
DEBUG vmware_driver:   - SET remotedisplay.vnc.port = "5978"
DEBUG vmware_driver:   - SET replay.filename = ""
DEBUG vmware_driver:   - SET replay.supported = "FALSE"
DEBUG vmware_driver:   - SET scsi0.pcislotnumber = "160"
DEBUG vmware_driver:   - SET scsi0.present = "TRUE"
DEBUG vmware_driver:   - SET scsi0.saswwid = "50 05 05 6a 72 a7 d3 b0"
DEBUG vmware_driver:   - SET scsi0.virtualdev = "lsisas1068"
DEBUG vmware_driver:   - SET scsi0:0.filename = "disk.vmdk"
DEBUG vmware_driver:   - SET scsi0:0.present = "TRUE"
DEBUG vmware_driver:   - SET scsi0:0.redo = ""
DEBUG vmware_driver:   - SET sharedfolder.maxnum = "0"
DEBUG vmware_driver:   - SET softpoweroff = "TRUE"
DEBUG vmware_driver:   - SET sound.startconnected = "FALSE"
DEBUG vmware_driver:   - SET tools.synctime = "TRUE"
DEBUG vmware_driver:   - SET tools.upgrade.policy = "upgradeAtPowerCycle"
DEBUG vmware_driver:   - SET usb.pcislotnumber = "-1"
DEBUG vmware_driver:   - SET usb.present = "FALSE"
DEBUG vmware_driver:   - SET uuid.action = "create"
DEBUG vmware_driver:   - SET uuid.bios = "56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc"
DEBUG vmware_driver:   - SET uuid.location = "56 4d ca 8a 72 a7 d3 b5-02 5c 80 2c 5b bc 75 fc"
DEBUG vmware_driver:   - SET virtualhw.productcompatibility = "hosted"
DEBUG vmware_driver:   - SET virtualhw.version = "9"
DEBUG vmware_driver:   - SET vm.genid = "8660380855336655423"
DEBUG vmware_driver:   - SET vm.genidx = "-7605912608754498240"
DEBUG vmware_driver:   - SET vmci0.id = "1861462627"
DEBUG vmware_driver:   - SET vmci0.pcislotnumber = "35"
DEBUG vmware_driver:   - SET vmci0.present = "TRUE"
DEBUG vmware_driver:   - SET vmotion.checkpointfbsize = "33554432"
 INFO environment: Released process lock: vmware-network
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SetHostname:0x491f6e8>
 INFO warden: Calling IN action: VMware Middleware: VMXModify
 INFO warden: Calling IN action: VMware Middleware: PrepareForwardedPortCollisionParams
 INFO vmware_driver: Reading all forwarded ports...
 INFO vmware_driver: Reading detailed forwarded ports...
DEBUG vmware_driver: vmnet '
vmnet1' not NAT. ignoring
DEBUG vmware_driver: vmnet '
vmnet8' is NAT. Reading ports...
DEBUG vmware_driver: Error reading Registry key: NAT\TCPForward
DEBUG vmware_driver: Error reading Registry key: NAT\UDPForward
DEBUG nat_conf: Read section: incomingtcp
DEBUG nat_conf: -- Value: "[incomingtcp]\n# Use these with care - anyone can enter into your virtual machine through the
se...\n\n# FTP (both active and passive FTP is always enabled)\n#      ftp localhost 8887\n#8887 = 192.168.27.128:21\n\n
# WEB (make sure that if you are using named webhosting, names point to\n#     your host, not to guest... And if you are
 forwarding port other\n#     than 80 make sure that your server copes with mismatched port \n#     number in Host: head
er)\n#      lynx http://localhost:8888\n#8888 = 192.168.27.128:80\n\n# SSH\n#      ssh -p 8889 root@localhost\n#8889 = 1
92.168.27.128:22\n"
DEBUG nat_conf: Read section: incomingudp
DEBUG nat_conf: -- Value: "[incomingudp]\n# UDP port forwarding example\n#6000 = 192.168.27.128:6001\n"
DEBUG nat_conf: Read section: incomingtcp
DEBUG nat_conf: -- Value: "[incomingtcp]\n# Use these with care - anyone can enter into your virtual machine through the
se...\n\n# FTP (both active and passive FTP is always enabled)\n#      ftp localhost 8887\n#8887 = 192.168.27.128:21\n\n
# WEB (make sure that if you are using named webhosting, names point to\n#     your host, not to guest... And if you are
 forwarding port other\n#     than 80 make sure that your server copes with mismatched port \n#     number in Host: head
er)\n#      lynx http://localhost:8888\n#8888 = 192.168.27.128:80\n\n# SSH\n#      ssh -p 8889 root@localhost\n#8889 = 1
92.168.27.128:22\n"
DEBUG nat_conf: Read section: incomingudp
DEBUG nat_conf: -- Value: "[incomingudp]\n# UDP port forwarding example\n#6000 = 192.168.27.128:6001\n"
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x4882500>
DEBUG environment: Attempting to acquire process-lock: fpcollision
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: fpcollision
 INFO handle_port_collisions: Detecting any forwarded port collisions...
DEBUG handle_port_collisions: Extra in use: []
DEBUG handle_port_collisions: Remap: {}
DEBUG handle_port_collisions: Repair: true
 INFO environment: Released process lock: fpcollision
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO warden: Calling IN action: VMware Middleware: ForwardPorts
DEBUG forward_ports: Building up ports to forward...
 INFO vmware_driver: Reading all forwarded ports...
 INFO vmware_driver: Reading detailed forwarded ports...
DEBUG vmware_driver: vmnet '
vmnet1' not NAT. ignoring
DEBUG vmware_driver: vmnet '
vmnet8' is NAT. Reading ports...
DEBUG vmware_driver: Error reading Registry key: NAT\TCPForward
DEBUG vmware_driver: Error reading Registry key: NAT\UDPForward
DEBUG nat_conf: Read section: incomingtcp
DEBUG nat_conf: -- Value: "[incomingtcp]\n# Use these with care - anyone can enter into your virtual machine through the
se...\n\n# FTP (both active and passive FTP is always enabled)\n#      ftp localhost 8887\n#8887 = 192.168.27.128:21\n\n
# WEB (make sure that if you are using named webhosting, names point to\n#     your host, not to guest... And if you are
 forwarding port other\n#     than 80 make sure that your server copes with mismatched port \n#     number in Host: head
er)\n#      lynx http://localhost:8888\n#8888 = 192.168.27.128:80\n\n# SSH\n#      ssh -p 8889 root@localhost\n#8889 = 1
92.168.27.128:22\n"
DEBUG nat_conf: Read section: incomingudp
DEBUG nat_conf: -- Value: "[incomingudp]\n# UDP port forwarding example\n#6000 = 192.168.27.128:6001\n"
DEBUG nat_conf: Read section: incomingtcp
DEBUG nat_conf: -- Value: "[incomingtcp]\n# Use these with care - anyone can enter into your virtual machine through the
se...\n\n# FTP (both active and passive FTP is always enabled)\n#      ftp localhost 8887\n#8887 = 192.168.27.128:21\n\n
# WEB (make sure that if you are using named webhosting, names point to\n#     your host, not to guest... And if you are
 forwarding port other\n#     than 80 make sure that your server copes with mismatched port \n#     number in Host: head
er)\n#      lynx http://localhost:8888\n#8888 = 192.168.27.128:80\n\n# SSH\n#      ssh -p 8889 root@localhost\n#8889 = 1
92.168.27.128:22\n"
DEBUG nat_conf: Read section: incomingudp
DEBUG nat_conf: -- Value: "[incomingudp]\n# UDP port forwarding example\n#6000 = 192.168.27.128:6001\n"
 INFO warden: Calling IN action: VMware Middleware: Boot
 INFO interface: info: Starting the VMware VM...
 INFO interface: info: ==> default: Starting the VMware VM...
==> default: Starting the VMware VM...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "start", "C:/vagra
nt/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx", "nogui"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 40
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::WaitForCommunicator:0x47cfca0>
 INFO interface: output: Waiting for machine to boot. This may take a few minutes...
DEBUG provider: Searching for cap: winrm_info
DEBUG provider: Checking in: vmware_workstation
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO interface: output: ==> default: Waiting for machine to boot. This may take a few minutes...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
==> default: Waiting for machine to boot. This may take a few minutes...
 INFO subprocess: Command not in installer, restoring original environment...
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO vmware_driver: Reading an accessible IP for machine...
 INFO vmware_driver: Trying vmrun getGuestIPAddress...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "getGuestIPAddress
", "C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx"]


 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
DEBUG subprocess: stdout: Error: The VMware Tools are not running in the virtual machine: C:/vagrant/.vagrant/machines/d
efault/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 4294967295
 INFO vmware_driver: vmrun getGuestIPAddress failed: VMRunError
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = FALSE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 65 2d ec 2e a0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - sharedfolder.maxnum = 0
DEBUG vmware_driver:   - softpoweroff = FALSE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - uuid.location = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
DEBUG vmware_driver:   - ide1:0.autodetect = TRUE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 32
DEBUG vmware_driver:   - ethernet0.generatedaddress = 00:0c:29:86:18:59
DEBUG vmware_driver:   - ethernet0.generatedaddressoffset = 0
DEBUG vmware_driver: Trying to get MAC address for ethernet0
DEBUG vmware_driver: No explicitly set MAC, looking or auto-generated one...
DEBUG vmware_driver:  -- MAC: 00:0c:29:86:18:59
 INFO vmware_driver: Reading DHCP lease for '
00:0c:29:86:18:59' on 'vmnet8'
 INFO vmware_driver: DHCP leases file: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Initialized DHCP helper: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Looking for IP for MAC: 00:0c:29:86:18:59
 INFO dhcp_lease_file:   - IP:
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO vmware_driver: Reading an accessible IP for machine...
 INFO vmware_driver: Trying vmrun getGuestIPAddress...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "getGuestIPAddress
", "C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx"]


 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Error: The VMware Tools are not running in the virtual machine: C:/vagrant/.vagrant/machines/d
efault/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 4294967295
 INFO vmware_driver: vmrun getGuestIPAddress failed: VMRunError
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = FALSE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 65 2d ec 2e a0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - sharedfolder.maxnum = 0
DEBUG vmware_driver:   - softpoweroff = FALSE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - uuid.location = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
DEBUG vmware_driver:   - ide1:0.autodetect = TRUE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 32
DEBUG vmware_driver:   - ethernet0.generatedaddress = 00:0c:29:86:18:59
DEBUG vmware_driver:   - ethernet0.generatedaddressoffset = 0
DEBUG vmware_driver: Trying to get MAC address for ethernet0
DEBUG vmware_driver: No explicitly set MAC, looking or auto-generated one...
DEBUG vmware_driver:  -- MAC: 00:0c:29:86:18:59
 INFO vmware_driver: Reading DHCP lease for '
00:0c:29:86:18:59' on 'vmnet8'
 INFO vmware_driver: DHCP leases file: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Initialized DHCP helper: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Looking for IP for MAC: 00:0c:29:86:18:59
 INFO dhcp_lease_file:   - IP:
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO vmware_driver: Reading an accessible IP for machine...
 INFO vmware_driver: Trying vmrun getGuestIPAddress...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "getGuestIPAddress
", "C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx"]


 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Error: The VMware Tools are not running in the virtual machine: C:/vagrant/.vagrant/machines/d
efault/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 4294967295
 INFO vmware_driver: vmrun getGuestIPAddress failed: VMRunError
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = FALSE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 65 2d ec 2e a0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - sharedfolder.maxnum = 0
DEBUG vmware_driver:   - softpoweroff = FALSE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - uuid.location = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
DEBUG vmware_driver:   - ide1:0.autodetect = TRUE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 32
DEBUG vmware_driver:   - ethernet0.generatedaddress = 00:0c:29:86:18:59
DEBUG vmware_driver:   - ethernet0.generatedaddressoffset = 0
DEBUG vmware_driver: Trying to get MAC address for ethernet0
DEBUG vmware_driver: No explicitly set MAC, looking or auto-generated one...
DEBUG vmware_driver:  -- MAC: 00:0c:29:86:18:59
 INFO vmware_driver: Reading DHCP lease for '
00:0c:29:86:18:59' on 'vmnet8'
 INFO vmware_driver: DHCP leases file: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Initialized DHCP helper: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Looking for IP for MAC: 00:0c:29:86:18:59
 INFO dhcp_lease_file:   - IP:
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO vmware_driver: Reading an accessible IP for machine...
 INFO vmware_driver: Trying vmrun getGuestIPAddress...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "getGuestIPAddress
", "C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx"]


 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Error: The VMware Tools are not running in the virtual machine: C:/vagrant/.vagrant/machines/d
efault/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 4294967295
 INFO vmware_driver: vmrun getGuestIPAddress failed: VMRunError
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = FALSE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 65 2d ec 2e a0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - sharedfolder.maxnum = 0
DEBUG vmware_driver:   - softpoweroff = FALSE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - uuid.location = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
DEBUG vmware_driver:   - ide1:0.autodetect = TRUE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 32
DEBUG vmware_driver:   - ethernet0.generatedaddress = 00:0c:29:86:18:59
DEBUG vmware_driver:   - ethernet0.generatedaddressoffset = 0
DEBUG vmware_driver: Trying to get MAC address for ethernet0
DEBUG vmware_driver: No explicitly set MAC, looking or auto-generated one...
DEBUG vmware_driver:  -- MAC: 00:0c:29:86:18:59
 INFO vmware_driver: Reading DHCP lease for '
00:0c:29:86:18:59' on 'vmnet8'
 INFO vmware_driver: DHCP leases file: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Initialized DHCP helper: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Looking for IP for MAC: 00:0c:29:86:18:59
 INFO dhcp_lease_file:   - IP:
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
 INFO vmware_driver: Reading an accessible IP for machine...
 INFO vmware_driver: Trying vmrun getGuestIPAddress...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "getGuestIPAddress
", "C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx"]


 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
DEBUG subprocess: stdout: Error: The VMware Tools are not running in the virtual machine: C:/vagrant/.vagrant/machines/d
efault/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 4294967295
 INFO vmware_driver: vmrun getGuestIPAddress failed: VMRunError
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = FALSE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 65 2d ec 2e a0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - sharedfolder.maxnum = 0
DEBUG vmware_driver:   - softpoweroff = FALSE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - uuid.location = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
DEBUG vmware_driver:   - ide1:0.autodetect = TRUE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 32
DEBUG vmware_driver:   - ethernet0.generatedaddress = 00:0c:29:86:18:59
DEBUG vmware_driver:   - ethernet0.generatedaddressoffset = 0
DEBUG vmware_driver: Trying to get MAC address for ethernet0
DEBUG vmware_driver: No explicitly set MAC, looking or auto-generated one...
DEBUG vmware_driver:  -- MAC: 00:0c:29:86:18:59
 INFO vmware_driver: Reading DHCP lease for '
00:0c:29:86:18:59' on 'vmnet8'
 INFO vmware_driver: DHCP leases file: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Initialized DHCP helper: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Looking for IP for MAC: 00:0c:29:86:18:59
 INFO dhcp_lease_file:   - IP:
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO vmware_driver: Reading an accessible IP for machine...
 INFO vmware_driver: Trying vmrun getGuestIPAddress...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "getGuestIPAddress
", "C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx"]


 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Error: The VMware Tools are not running in the virtual machine: C:/vagrant/.vagrant/machines/d
efault/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 4294967295
 INFO vmware_driver: vmrun getGuestIPAddress failed: VMRunError
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = FALSE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 65 2d ec 2e a0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - sharedfolder.maxnum = 0
DEBUG vmware_driver:   - softpoweroff = FALSE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - uuid.location = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
DEBUG vmware_driver:   - ide1:0.autodetect = TRUE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 32
DEBUG vmware_driver:   - ethernet0.generatedaddress = 00:0c:29:86:18:59
DEBUG vmware_driver:   - ethernet0.generatedaddressoffset = 0
DEBUG vmware_driver: Trying to get MAC address for ethernet0
DEBUG vmware_driver: No explicitly set MAC, looking or auto-generated one...
DEBUG vmware_driver:  -- MAC: 00:0c:29:86:18:59
 INFO vmware_driver: Reading DHCP lease for '
00:0c:29:86:18:59' on 'vmnet8'
 INFO vmware_driver: DHCP leases file: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Initialized DHCP helper: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Looking for IP for MAC: 00:0c:29:86:18:59
 INFO dhcp_lease_file:   - IP:
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
 INFO vmware_driver: Reading an accessible IP for machine...
 INFO vmware_driver: Trying vmrun getGuestIPAddress...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "getGuestIPAddress
", "C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx"]


 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
DEBUG subprocess: stdout: Error: The VMware Tools are not running in the virtual machine: C:/vagrant/.vagrant/machines/d
efault/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 4294967295
 INFO vmware_driver: vmrun getGuestIPAddress failed: VMRunError
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = FALSE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 65 2d ec 2e a0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - sharedfolder.maxnum = 0
DEBUG vmware_driver:   - softpoweroff = FALSE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - uuid.location = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
DEBUG vmware_driver:   - ide1:0.autodetect = TRUE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 32
DEBUG vmware_driver:   - ethernet0.generatedaddress = 00:0c:29:86:18:59
DEBUG vmware_driver:   - ethernet0.generatedaddressoffset = 0
DEBUG vmware_driver: Trying to get MAC address for ethernet0
DEBUG vmware_driver: No explicitly set MAC, looking or auto-generated one...
DEBUG vmware_driver:  -- MAC: 00:0c:29:86:18:59
 INFO vmware_driver: Reading DHCP lease for '
00:0c:29:86:18:59' on 'vmnet8'
 INFO vmware_driver: DHCP leases file: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Initialized DHCP helper: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Looking for IP for MAC: 00:0c:29:86:18:59
 INFO dhcp_lease_file:   - IP: 192.168.244.129
DEBUG provider: Searching for cap: winrm_info
DEBUG provider: Checking in: vmware_workstation
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO vmware_driver: Reading an accessible IP for machine...
 INFO vmware_driver: Trying vmrun getGuestIPAddress...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "getGuestIPAddress
", "C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx"]


 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Error: The VMware Tools are not running in the virtual machine: C:/vagrant/.vagrant/machines/d
efault/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 4294967295
 INFO vmware_driver: vmrun getGuestIPAddress failed: VMRunError
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = FALSE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 65 2d ec 2e a0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - sharedfolder.maxnum = 0
DEBUG vmware_driver:   - softpoweroff = FALSE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - uuid.location = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
DEBUG vmware_driver:   - ide1:0.autodetect = TRUE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 32
DEBUG vmware_driver:   - ethernet0.generatedaddress = 00:0c:29:86:18:59
DEBUG vmware_driver:   - ethernet0.generatedaddressoffset = 0
DEBUG vmware_driver: Trying to get MAC address for ethernet0
DEBUG vmware_driver: No explicitly set MAC, looking or auto-generated one...
DEBUG vmware_driver:  -- MAC: 00:0c:29:86:18:59
 INFO vmware_driver: Reading DHCP lease for '
00:0c:29:86:18:59' on 'vmnet8'
 INFO vmware_driver: DHCP leases file: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Initialized DHCP helper: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Looking for IP for MAC: 00:0c:29:86:18:59
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
 INFO dhcp_lease_file:   - IP: 192.168.244.129
DEBUG winrmshell: initializing WinRMShell
 INFO interface: detail: WinRM address: 192.168.244.129:5985
 INFO interface: detail:     default: WinRM address: 192.168.244.129:5985
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
    default: WinRM address: 192.168.244.129:5985
 INFO interface: detail: WinRM username: Administrator
 INFO interface: detail:     default: WinRM username: Administrator
DEBUG vmware: VM state requested. Current state: running
    default: WinRM username: Administrator
 INFO interface: detail: WinRM execution_time_limit: PT2H
 INFO interface: detail:     default: WinRM execution_time_limit: PT2H
    default: WinRM execution_time_limit: PT2H
 INFO interface: detail: WinRM transport: plaintext
 INFO interface: detail:     default: WinRM transport: plaintext
    default: WinRM transport: plaintext
 INFO winrm: Checking whether WinRM is ready...
DEBUG provider: Searching for cap: winrm_info
DEBUG provider: Checking in: vmware_workstation
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO vmware_driver: Reading an accessible IP for machine...
 INFO vmware_driver: Trying vmrun getGuestIPAddress...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "getGuestIPAddress
", "C:/vagrant/.vagrant/machines/default/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx"]


 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Error: The VMware Tools are not running in the virtual machine: C:/vagrant/.vagrant/machines/d
efault/vmware_workstation/1eddc453-f1bd-4aa7-bdff-b790c3992a63/packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 4294967295
 INFO vmware_driver: vmrun getGuestIPAddress failed: VMRunError
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = FALSE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = e1000
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-iso.vmxf
DEBUG vmware_driver:   - floppy0.present = FALSE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.fitguestusingnativedisplayresolution = FALSE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-raw
DEBUG vmware_driver:   - ide1:0.filename = auto detect
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = FALSE
DEBUG vmware_driver:   - memsize = 1024
DEBUG vmware_driver:   - migrate.hostlog = .\packer-vmware-iso-e8b3122f.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numa.autosize.cookie = 10001
DEBUG vmware_driver:   - numa.autosize.vcpu.maxpervirtualnode = 1
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG subprocess: Selecting on IO
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5978
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 65 2d ec 2e a0
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - sharedfolder.maxnum = 0
DEBUG vmware_driver:   - softpoweroff = FALSE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - uuid.location = 56 4d b5 b5 2d ec 2e af-e9 df 5a 42 0f 86 18 59
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 8660380855336655423
DEBUG vmware_driver:   - vm.genidx = -7605912608754498240
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
DEBUG vmware_driver:   - ide1:0.autodetect = TRUE
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 32
DEBUG vmware_driver:   - ethernet0.generatedaddress = 00:0c:29:86:18:59
DEBUG vmware_driver:   - ethernet0.generatedaddressoffset = 0
DEBUG vmware_driver: Trying to get MAC address for ethernet0
DEBUG vmware_driver: No explicitly set MAC, looking or auto-generated one...
DEBUG vmware_driver:  -- MAC: 00:0c:29:86:18:59
 INFO vmware_driver: Reading DHCP lease for '
00:0c:29:86:18:59' on 'vmnet8'
 INFO vmware_driver: DHCP leases file: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Initialized DHCP helper: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Looking for IP for MAC: 00:0c:29:86:18:59
 INFO dhcp_lease_file:   - IP: 192.168.244.129
DEBUG winrmshell: initializing WinRMShell
DEBUG winrmshell: powershell executing:
$ProgressPreference='
SilentlyContinue';
hostname
if ($?) { exit 0 } else { if($LASTEXITCODE) { exit $LASTEXITCODE } else { exit 1 } }
 INFO winrmshell: Attempting to connect to WinRM...
 INFO winrmshell:   - Host: 192.168.244.129
 INFO winrmshell:   - Port: 5985
 INFO winrmshell:   - Username: Administrator
 INFO winrmshell:   - Transport: plaintext
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
 INFO retryable: Retryable exception raised: #<WinRM::WinRMHTTPTransportError: Unable to parse WinRM response: Missing e
nd tag for '
BR' (got "FONT")
Line: 7
Position: 129
Last 80 unconsumed characters:
 (503).>
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
DEBUG winrmshell: powershell executing:
$ProgressPreference='
SilentlyContinue';
hostname
if ($?) { exit 0 } else { if($LASTEXITCODE) { exit $LASTEXITCODE } else { exit 1 } }
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\1eddc453-f1bd-4aa7-bdff-b790c3992a63\packer-vmware-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running

mat...@mlfvs.info

unread,
Mar 4, 2016, 12:18:34 PM3/4/16
to Vagrant

Alvaro Miranda Aguilera

unread,
Mar 4, 2016, 9:25:37 PM3/4/16
to vagra...@googlegroups.com
Hello,

For WinRM to work, you need some changes on the VM, including some memory parameters and unrestricted capability.

Can you share your packer project (assuming you use packer) to create this box?

Check this one as a pakcer project that set a working winrm setup

Alvaro.


--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
 
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/3be0010a-e207-4b4a-8232-bca0a00847c9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

mat...@mlfvs.info

unread,
Mar 9, 2016, 2:50:04 PM3/9/16
to Vagrant
Solved at last! 

OK, I was using Packer to build on my corporate laptop - behind a proxy - and so I had $env:http_proxy and $env:https_proxy set to download the windows iso.
When I tried to vagrant up, ruby winrm or whatever bit of vagrant probably got talking to my proxy server and couldnt resolve the winrm address.

In short - removing $env:http_proxy and $env:https_proxy fixes the problem.

Thanks again Alvaro - Im sure I'll be in touch again soon anyway.

Best,

Matt
Reply all
Reply to author
Forward
0 new messages