Skip to content

Instantly share code, notes, and snippets.

@philwinder
Last active July 17, 2018 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philwinder/21c51635a2b7ff1eb06b32f513a9d45c to your computer and use it in GitHub Desktop.
Save philwinder/21c51635a2b7ff1eb06b32f513a9d45c to your computer and use it in GitHub Desktop.
Packer does not wait for build to finish on windows 10 build
{
"builders": [
{
"type": "amazon-ebs",
"iam_instance_profile": "{{user `s3_readonly_instance_role`}}",
"region": "{{ user `aws_region` }}",
"profile": "{{ user `aws_profile` }}",
"instance_type": "g3.4xlarge",
"source_ami": "{{ user `windows_base_ami` }}",
"ami_name": "vws-win10-{{timestamp}}-{{user `build_id`}}",
"user_data_file": "./bootstrap_win.txt",
"communicator": "winrm",
"winrm_port": "5985",
"winrm_username": "admin",
"winrm_password": "password",
"vpc_id": "{{user `build_vpc_id`}}",
"subnet_id": "{{user `build_subnet_id`}}",
"launch_block_device_mappings": [
{
"device_name": "/dev/sda1",
"volume_size": 200,
"volume_type": "gp2",
"delete_on_termination": true
}
]
}
],
"provisioners": [
{
"type": "powershell",
"inline": [
"Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))"
]
},
{
"type": "powershell",
"inline": [
"choco install -y 7zip.install awscli"
]
},
{
"type": "windows-shell",
"inline": [
"aws s3 cp {{ user `leostream_agent_url` }} C:\\",
"c:\\LeostreamAgentSetup6-3-5-0.exe /SILENT /SUPPRESSMSGBOXES /LOG='leostream-install.log' /CBADDRESS=leostream-broker.ssw.local"
]
}
],
"post-processors": [
{
"type": "manifest",
"output": "{{user `manifest_out`}}",
"strip_path": true
}
]
}
2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 Using internal plugin for oracle-classic
2018/07/17 11:15:49 Using internal plugin for scaleway
2018/07/17 11:15:49 Using internal plugin for virtualbox-ovf
2018/07/17 11:15:49 Using internal plugin for digitalocean
2018/07/17 11:15:49 Using internal plugin for vmware-vmx
2018/07/17 11:15:49 Using internal plugin for file
2018/07/17 11:15:49 Using internal plugin for hyperv-vmcx
2018/07/17 11:15:49 Using internal plugin for lxc
2018/07/17 11:15:49 Using internal plugin for oneandone
2018/07/17 11:15:49 Using internal plugin for oracle-oci
2018/07/17 11:15:49 Using internal plugin for parallels-iso
2018/07/17 11:15:49 Using internal plugin for virtualbox-iso
2018/07/17 11:15:49 Using internal plugin for amazon-instance
2018/07/17 11:15:49 Using internal plugin for vmware-iso
2018/07/17 11:15:49 Using internal plugin for azure-arm
2018/07/17 11:15:49 Using internal plugin for lxd
2018/07/17 11:15:49 Using internal plugin for ncloud
2018/07/17 11:15:49 Using internal plugin for parallels-pvm
2018/07/17 11:15:49 Using internal plugin for qemu
2018/07/17 11:15:49 Using internal plugin for triton
2018/07/17 11:15:49 Using internal plugin for docker
2018/07/17 11:15:49 Using internal plugin for amazon-ebssurrogate
2018/07/17 11:15:49 Using internal plugin for amazon-chroot
2018/07/17 11:15:49 Using internal plugin for amazon-ebsvolume
2018/07/17 11:15:49 Using internal plugin for googlecompute
2018/07/17 11:15:49 Using internal plugin for hyperv-iso
2018/07/17 11:15:49 Using internal plugin for profitbricks
2018/07/17 11:15:49 Using internal plugin for amazon-ebs
2018/07/17 11:15:49 Using internal plugin for cloudstack
2018/07/17 11:15:49 Using internal plugin for null
2018/07/17 11:15:49 Using internal plugin for openstack
2018/07/17 11:15:49 Using internal plugin for alicloud-ecs
2018/07/17 11:15:49 Using internal plugin for shell-local
2018/07/17 11:15:49 Using internal plugin for puppet-server
2018/07/17 11:15:49 Using internal plugin for shell
2018/07/17 11:15:49 Using internal plugin for converge
2018/07/17 11:15:49 Using internal plugin for file
2018/07/17 11:15:49 Using internal plugin for ansible
2018/07/17 11:15:49 Using internal plugin for ansible-local
2018/07/17 11:15:49 Using internal plugin for windows-restart
2018/07/17 11:15:49 Using internal plugin for powershell
2018/07/17 11:15:49 Using internal plugin for puppet-masterless
2018/07/17 11:15:49 Using internal plugin for salt-masterless
2018/07/17 11:15:49 Using internal plugin for windows-shell
2018/07/17 11:15:49 Using internal plugin for chef-client
2018/07/17 11:15:49 Using internal plugin for chef-solo
2018/07/17 11:15:49 Using internal plugin for shell-local
2018/07/17 11:15:49 Using internal plugin for amazon-import
2018/07/17 11:15:49 Using internal plugin for manifest
2018/07/17 11:15:49 Using internal plugin for docker-tag
2018/07/17 11:15:49 Using internal plugin for googlecompute-export
2018/07/17 11:15:49 Using internal plugin for vsphere
2018/07/17 11:15:49 Using internal plugin for alicloud-import
2018/07/17 11:15:49 Using internal plugin for compress
2018/07/17 11:15:49 Using internal plugin for checksum
2018/07/17 11:15:49 Using internal plugin for docker-import
2018/07/17 11:15:49 Using internal plugin for docker-save
2018/07/17 11:15:49 Using internal plugin for artifice
2018/07/17 11:15:49 Using internal plugin for atlas
2018/07/17 11:15:49 Using internal plugin for vagrant-cloud
2018/07/17 11:15:49 Using internal plugin for vsphere-template
2018/07/17 11:15:49 Using internal plugin for docker-push
2018/07/17 11:15:49 Using internal plugin for vagrant
2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[virtualbox-iso:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-iso docker:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-docker profitbricks:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-profitbricks vmware-vmx:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-vmx oracle-oci:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oracle-oci oneandone:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oneandone parallels-iso:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-iso parallels-pvm:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-pvm amazon-ebssurrogate:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebssurrogate virtualbox-ovf:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-ovf file:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-file scaleway:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-scaleway lxd:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-lxd ncloud:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-ncloud amazon-instance:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-instance vmware-iso:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-iso null:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-null oracle-classic:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oracle-classic hyperv-vmcx:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperv-vmcx azure-arm:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-azure-arm amazon-ebs:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebs alicloud-ecs:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-alicloud-ecs triton:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-triton hyperv-iso:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperv-iso qemu:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-qemu amazon-chroot:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-chroot amazon-ebsvolume:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebsvolume googlecompute:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-googlecompute cloudstack:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-cloudstack openstack:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-openstack digitalocean:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-digitalocean lxc:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-lxc] PostProcessors:map[amazon-import:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-amazon-import manifest:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-manifest docker-tag:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-tag compress:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-compress docker-save:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-save vagrant:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant vsphere:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere checksum:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-checksum artifice:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-artifice vagrant-cloud:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant-cloud shell-local:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-shell-local googlecompute-export:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-googlecompute-export alicloud-import:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-alicloud-import docker-import:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-import vsphere-template:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere-template docker-push:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-push atlas:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-atlas] Provisioners:map[puppet-server:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-server powershell:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-powershell chef-client:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-client shell:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell file:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-file ansible:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible ansible-local:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible-local shell-local:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell-local puppet-masterless:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-masterless salt-masterless:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-salt-masterless windows-shell:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-shell chef-solo:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-solo converge:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-converge windows-restart:/usr/local/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-restart]}
2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 Loading builder: amazon-ebs
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-builder-amazon-ebs"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-builder-amazon-ebs"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin708808486
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: powershell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-powershell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-powershell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin775419785
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: powershell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-powershell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-powershell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin733506566
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: powershell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-powershell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-powershell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin446883834
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: windows-shell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-windows-shell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-windows-shell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin061259872
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: windows-shell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-windows-shell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-windows-shell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin530265082
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: windows-shell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-windows-shell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-windows-shell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin161664875
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: file
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-file"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-file"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin733120461
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: windows-shell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-windows-shell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-windows-shell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin579324284
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: file
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-file"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-file"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin309590352
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: powershell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-powershell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-powershell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin650930067
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: windows-shell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-windows-shell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-windows-shell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin169320323
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: windows-restart
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-windows-restart"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-windows-restart"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin674775271
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: windows-shell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-windows-shell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-windows-shell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin206074288
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: powershell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-powershell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-powershell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin403473679
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading provisioner: powershell
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-provisioner-powershell"}
2018/07/17 11:15:49 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [INFO] Packer version: 1.2.4
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Built with Go Version: go1.10.2
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 args: []string{"packer-provisioner-powershell"}
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin minimum port: 10000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin maximum port: 25000
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin392087839
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Waiting for connection...
2018/07/17 11:15:49 packer: 2018/07/17 11:15:49 Serving a plugin connection...
2018/07/17 11:15:49 Loading post-processor: manifest
2018/07/17 11:15:49 Plugin could not be found. Checking same directory as executable.
2018/07/17 11:15:49 Current exe path: /usr/local/bin/packer
2018/07/17 11:15:49 Creating plugin client for path: /usr/local/bin/packer
2018/07/17 11:15:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-post-processor-manifest"}
2018/07/17 11:15:50 Waiting for RPC address for: /usr/local/bin/packer
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 [INFO] Packer version: 1.2.4
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Packer Target OS/Arch: darwin amd64
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Built with Go Version: go1.10.2
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Attempting to open config file: /Users/phil-mac/.packerconfig
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 [WARN] Config file doesn't exist: /Users/phil-mac/.packerconfig
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Setting cache directory: /Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/packer_cache
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Detected home directory from env var: /Users/phil-mac
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 args: []string{"packer-post-processor-manifest"}
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Plugin minimum port: 10000
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Plugin maximum port: 25000
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Plugin address: unix /var/folders/pw/wy4vnj7n48g5lmq6m94xwl880000gn/T/packer-plugin589093233
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Waiting for connection...
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Serving a plugin connection...
2018/07/17 11:15:50 ui: amazon-ebs output will be in this color.
2018/07/17 11:15:50 ui:
2018/07/17 11:15:50 Build debug mode: false
2018/07/17 11:15:50 Force build: false
2018/07/17 11:15:50 On error: cleanup
2018/07/17 11:15:50 Preparing build: amazon-ebs
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Config: {PackerConfig:{PackerBuildName:amazon-ebs PackerBuilderType:amazon-ebs PackerDebug:false PackerForce:false PackerOnError:cleanup PackerUserVars:map[build_id:ec8aca17 manifest_out:metadata/dublin/manifest.json packer_log_path:metadata/dublin/packer.log deployment:dublin s3_flow_msi_url:s3://ssw-admin-sdu/flow/PetroSigns_Flow-x64-2017.1.0.34998-ms-7069-20180302-1820.msi windows_base_ami:ami-c33b3b29 leostream_agent_url:s3://ssw-admin-sdu/leostream/vws/LeostreamAgentSetup6-3-5-0.exe hp_rgs_sender_url:s3://ssw-admin-sdu/hp-rgs/RGS_Windows_32_Sender_and_Receiver_v7.4_L01906-001.zip aws_profile:ssw-datalake build_vpc_id:vpc-55e47d33 s3_readonly_instance_role:PackerBuildInstanceRole s3_flow_addons_url:s3://ssw-admin-sdu/flow/PetroSigns-Flow-Addons-2017.1.0.34998.zip build_subnet_id:subnet-0d1cbb6b aws_region:eu-west-1]} AccessConfig:{AccessKey: CustomEndpointEc2: MFACode: ProfileName:ssw-datalake RawRegion:eu-west-1 SecretKey: SkipValidation:false SkipMetadataApiCheck:false Token: session:<nil>} AMIConfig:{AMIName:vws-win10-1531822549-ec8aca17 AMIDescription: AMIVirtType: AMIUsers:[] AMIGroups:[] AMIProductCodes:[] AMIRegions:[] AMISkipRegionValidation:false AMITags:map[] AMIENASupport:false AMISriovNetSupport:false AMIForceDeregister:false AMIForceDeleteSnapshot:false AMIEncryptBootVolume:false AMIKmsKeyId: AMIRegionKMSKeyIDs:map[] SnapshotTags:map[] SnapshotUsers:[] SnapshotGroups:[]} BlockDevices:{AMIBlockDevices:{AMIMappings:[]} LaunchBlockDevices:{LaunchMappings:[{DeleteOnTermination:true DeviceName:/dev/sda1 Encrypted:false IOPS:0 NoDevice:false SnapshotId: VirtualName: VolumeType:gp2 VolumeSize:200 KmsKeyId:}]}} RunConfig:{AssociatePublicIpAddress:false AvailabilityZone: DisableStopInstance:false EbsOptimized:false EnableT2Unlimited:false IamInstanceProfile:PackerBuildInstanceRole InstanceInitiatedShutdownBehavior:stop InstanceType:g3.4xlarge RunTags:map[] SecurityGroupId: SecurityGroupIds:[] SourceAmi:ami-c33b3b29 SourceAmiFilter:{Filters:map[] Owners:[] MostRecent:false} SpotPrice: SpotPriceAutoProduct: SubnetId:subnet-0d1cbb6b TemporaryKeyPairName:packer_5b4dc1d6-5a91-07eb-190e-f169e6574877 TemporarySGSourceCidr:0.0.0.0/0 UserData: UserDataFile:./bootstrap_win.txt VpcId:vpc-55e47d33 WindowsPasswordTimeout:20m0s Comm:{Type:winrm SSHHost: SSHPort:0 SSHUsername: SSHPassword: SSHPrivateKey: SSHPty:false SSHTimeout:0s SSHAgentAuth:false SSHDisableAgentForwarding:false SSHHandshakeAttempts:0 SSHBastionHost: SSHBastionPort:0 SSHBastionAgentAuth:false SSHBastionUsername: SSHBastionPassword: SSHBastionPrivateKey: SSHFileTransferMethod: SSHProxyHost: SSHProxyPort:0 SSHProxyUsername: SSHProxyPassword: SSHKeepAliveInterval:0s SSHReadWriteTimeout:0s WinRMUser:admin WinRMPassword:password WinRMHost: WinRMPort:5985 WinRMTimeout:30m0s WinRMUseSSL:false WinRMInsecure:false WinRMUseNTLM:false WinRMTransportDecorator:<nil>} SSHKeyPairName: SSHInterface:} VolumeRunTags:map[] ctx:{Data:<nil> Funcs:map[clean_ami_name:0x18496f0] UserVariables:map[build_id:ec8aca17 manifest_out:metadata/dublin/manifest.json build_vpc_id:vpc-55e47d33 aws_region:eu-west-1 aws_profile:ssw-datalake leostream_agent_url:s3://ssw-admin-sdu/leostream/vws/LeostreamAgentSetup6-3-5-0.exe build_subnet_id:subnet-0d1cbb6b s3_flow_addons_url:s3://ssw-admin-sdu/flow/PetroSigns-Flow-Addons-2017.1.0.34998.zip packer_log_path:metadata/dublin/packer.log windows_base_ami:ami-c33b3b29 hp_rgs_sender_url:s3://ssw-admin-sdu/hp-rgs/RGS_Windows_32_Sender_and_Receiver_v7.4_L01906-001.zip s3_readonly_instance_role:PackerBuildInstanceRole deployment:dublin s3_flow_msi_url:s3://ssw-admin-sdu/flow/PetroSigns_Flow-x64-2017.1.0.34998-ms-7069-20180302-1820.msi] EnableEnv:false BuildName:amazon-ebs BuildType:amazon-ebs TemplatePath:/Users/phil-mac/source/ContainerSolutions/ssw-dev/packer/leostream/vws_win10/build.json}}
2018/07/17 11:15:50 Waiting on builds to complete...
2018/07/17 11:15:50 Starting build run: amazon-ebs
2018/07/17 11:15:50 Running builder: amazon-ebs
2018/07/17 11:15:50 [INFO] (telemetry) Starting builder amazon-ebs
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 Found region eu-west-1
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 [INFO] AWS Auth provider used: "SharedConfigCredentials: /Users/phil-mac/.aws/credentials"
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 [INFO] Finding AZ and VpcId for the given subnet 'subnet-0d1cbb6b'
2018/07/17 11:15:50 packer: 2018/07/17 11:15:50 [INFO] AvailabilityZone found: 'eu-west-1a'
2018/07/17 11:15:50 ui: ==> amazon-ebs: Prevalidating AMI Name: vws-win10-1531822549-ec8aca17
2018/07/17 11:15:51 packer: 2018/07/17 11:15:51 Using AMI Filters {
2018/07/17 11:15:51 packer: ImageIds: ["ami-c33b3b29"]
2018/07/17 11:15:51 packer: }
2018/07/17 11:15:51 ui:  amazon-ebs: Found Image ID: ami-c33b3b29
2018/07/17 11:15:51 ui: ==> amazon-ebs: Creating temporary keypair: packer_5b4dc1d6-5a91-07eb-190e-f169e6574877
2018/07/17 11:15:51 ui: ==> amazon-ebs: Creating temporary security group for this instance: packer_5b4dc1d7-77ee-7336-8ca2-c7875599c2ea
2018/07/17 11:15:52 ui: ==> amazon-ebs: Authorizing access to port 5985 from 0.0.0.0/0 in the temporary security group...
2018/07/17 11:15:52 packer: 2018/07/17 11:15:52 [DEBUG] Waiting for temporary security group: sg-71ef4b0d
2018/07/17 11:15:52 packer: 2018/07/17 11:15:52 [DEBUG] Found security group sg-71ef4b0d
2018/07/17 11:15:52 ui: ==> amazon-ebs: Launching a source AWS instance...
2018/07/17 11:15:52 packer: 2018/07/17 11:15:52 [DEBUG] base64 encoding user data...
2018/07/17 11:15:52 ui: ==> amazon-ebs: Adding tags to source instance
2018/07/17 11:15:52 ui:  amazon-ebs: Adding tag: "Name": "Packer Builder"
2018/07/17 11:15:53 ui:  amazon-ebs: Instance ID: i-0dc2eae430c296267
2018/07/17 11:15:53 ui: ==> amazon-ebs: Waiting for instance (i-0dc2eae430c296267) to become ready...
2018/07/17 11:16:09 ui: ==> amazon-ebs: Skipping waiting for password since WinRM password set...
2018/07/17 11:16:09 packer: 2018/07/17 11:16:09 Waiting for WinRM, up to timeout: 30m0s
2018/07/17 11:16:09 ui: ==> amazon-ebs: Waiting for WinRM to become available...
2018/07/17 11:16:14 packer: 2018/07/17 11:16:14 [INFO] Attempting WinRM connection...
2018/07/17 11:16:14 packer: 2018/07/17 11:16:14 [DEBUG] connecting to remote shell using WinRM
2018/07/17 11:16:44 packer: 2018/07/17 11:16:44 [ERROR] connection error: unknown error Post http://34.245.146.33:5985/wsman: dial tcp 34.245.146.33:5985: i/o timeout
2018/07/17 11:16:44 packer: 2018/07/17 11:16:44 [ERROR] WinRM connection err: unknown error Post http://34.245.146.33:5985/wsman: dial tcp 34.245.146.33:5985: i/o timeout
2018/07/17 11:16:49 packer: 2018/07/17 11:16:49 [INFO] Attempting WinRM connection...
2018/07/17 11:16:49 packer: 2018/07/17 11:16:49 [DEBUG] connecting to remote shell using WinRM
2018/07/17 11:17:19 packer: 2018/07/17 11:17:19 [ERROR] connection error: unknown error Post http://34.245.146.33:5985/wsman: dial tcp 34.245.146.33:5985: i/o timeout
2018/07/17 11:17:19 packer: 2018/07/17 11:17:19 [ERROR] WinRM connection err: unknown error Post http://34.245.146.33:5985/wsman: dial tcp 34.245.146.33:5985: i/o timeout
2018/07/17 11:17:24 packer: 2018/07/17 11:17:24 [INFO] Attempting WinRM connection...
2018/07/17 11:17:24 packer: 2018/07/17 11:17:24 [DEBUG] connecting to remote shell using WinRM
2018/07/17 11:17:29 packer: 2018/07/17 11:17:29 [ERROR] connection error: unknown error Post http://34.245.146.33:5985/wsman: dial tcp 34.245.146.33:5985: connect: connection refused
2018/07/17 11:17:29 packer: 2018/07/17 11:17:29 [ERROR] WinRM connection err: unknown error Post http://34.245.146.33:5985/wsman: dial tcp 34.245.146.33:5985: connect: connection refused
2018/07/17 11:17:34 packer: 2018/07/17 11:17:34 [INFO] Attempting WinRM connection...
2018/07/17 11:17:34 packer: 2018/07/17 11:17:34 [DEBUG] connecting to remote shell using WinRM
2018/07/17 11:17:34 packer: 2018/07/17 11:17:34 [ERROR] connection error: unknown error Post http://34.245.146.33:5985/wsman: dial tcp 34.245.146.33:5985: connect: connection refused
2018/07/17 11:17:34 packer: 2018/07/17 11:17:34 [ERROR] WinRM connection err: unknown error Post http://34.245.146.33:5985/wsman: dial tcp 34.245.146.33:5985: connect: connection refused
2018/07/17 11:17:39 packer: 2018/07/17 11:17:39 [INFO] Attempting WinRM connection...
2018/07/17 11:17:39 packer: 2018/07/17 11:17:39 [DEBUG] connecting to remote shell using WinRM
2018/07/17 11:17:48 packer: 2018/07/17 11:17:48 Checking that WinRM is connected with: 'powershell.exe -EncodedCommand aQBmACAAKABUAGUAcwB0AC0AUABhAHQAaAAgAHYAYQByAGkAYQBiAGwAZQA6AGcAbABvAGIAYQBsADoAUAByAG8AZwByAGUAcwBzAFAAcgBlAGYAZQByAGUAbgBjAGUAKQB7ACQAUAByAG8AZwByAGUAcwBzAFAAcgBlAGYAZQByAGUAbgBjAGUAPQAnAFMAaQBsAGUAbgB0AGwAeQBDAG8AbgB0AGkAbgB1AGUAJwB9ADsAIABlAGMAaABvACAAIgBXAGkAbgBSAE0AIABjAG8AbgBuAGUAYwB0AGUAZAAuACIA'
2018/07/17 11:17:48 packer: 2018/07/17 11:17:48 [INFO] starting remote command: powershell.exe -EncodedCommand aQBmACAAKABUAGUAcwB0AC0AUABhAHQAaAAgAHYAYQByAGkAYQBiAGwAZQA6AGcAbABvAGIAYQBsADoAUAByAG8AZwByAGUAcwBzAFAAcgBlAGYAZQByAGUAbgBjAGUAKQB7ACQAUAByAG8AZwByAGUAcwBzAFAAcgBlAGYAZQByAGUAbgBjAGUAPQAnAFMAaQBsAGUAbgB0AGwAeQBDAG8AbgB0AGkAbgB1AGUAJwB9ADsAIABlAGMAaABvACAAIgBXAGkAbgBSAE0AIABjAG8AbgBuAGUAYwB0AGUAZAAuACIA
2018/07/17 11:17:51 ui:  amazon-ebs: #< CLIXML
2018/07/17 11:17:51 packer: 2018/07/17 11:17:51 [INFO] command 'powershell.exe -EncodedCommand aQBmACAAKABUAGUAcwB0AC0AUABhAHQAaAAgAHYAYQByAGkAYQBiAGwAZQA6AGcAbABvAGIAYQBsADoAUAByAG8AZwByAGUAcwBzAFAAcgBlAGYAZQByAGUAbgBjAGUAKQB7ACQAUAByAG8AZwByAGUAcwBzAFAAcgBlAGYAZQByAGUAbgBjAGUAPQAnAFMAaQBsAGUAbgB0AGwAeQBDAG8AbgB0AGkAbgB1AGUAJwB9ADsAIABlAGMAaABvACAAIgBXAGkAbgBSAE0AIABjAG8AbgBuAGUAYwB0AGUAZAAuACIA' exited with code: 0
2018/07/17 11:17:51 ui:  amazon-ebs: WinRM connected.
2018/07/17 11:17:51 ui:  amazon-ebs: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj><Obj S="progress" RefId="1"><TNRef RefId="0" /><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>
2018/07/17 11:17:51 ui: ==> amazon-ebs: Connected to WinRM!
2018/07/17 11:17:51 packer: 2018/07/17 11:17:51 Connected to machine
2018/07/17 11:17:51 packer: 2018/07/17 11:17:51 Running the provision hook
2018/07/17 11:17:51 [INFO] (telemetry) Starting provisioner powershell
2018/07/17 11:17:51 ui: ==> amazon-ebs: Provisioning with Powershell...
2018/07/17 11:17:51 ui: ==> amazon-ebs: Provisioning with powershell script: scripts/install_chocolatey.ps1
2018/07/17 11:17:51 packer: 2018/07/17 11:17:51 Opening scripts/install_chocolatey.ps1 for reading
2018/07/17 11:17:51 packer: 2018/07/17 11:17:51 Uploading env vars to c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-feaa-d865-0df3-ec611311928b.ps1
2018/07/17 11:17:51 packer: 2018/07/17 11:17:51 [INFO] 76 bytes written for 'uploadData'
2018/07/17 11:17:51 [INFO] 76 bytes written for 'uploadData'
2018/07/17 11:17:52 packer: 2018/07/17 11:17:52 Uploading file to 'c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-feaa-d865-0df3-ec611311928b.ps1'
2018/07/17 11:17:53 packer: #< CLIXML
2018/07/17 11:17:54 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>#< CLIXML
2018/07/17 11:17:54 [INFO] 966 bytes written for 'uploadData'
2018/07/17 11:17:54 packer: 2018/07/17 11:17:54 [INFO] 966 bytes written for 'uploadData'
2018/07/17 11:17:54 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>2018/07/17 11:17:54 Uploading file to 'c:/Windows/Temp/script-5b4dc1d6-a3c9-1424-8044-4ff037a0fccb.ps1'
2018/07/17 11:17:55 packer: #< CLIXML
2018/07/17 11:17:56 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>#< CLIXML
2018/07/17 11:17:56 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>2018/07/17 11:17:56 [INFO] starting remote command: powershell -executionpolicy bypass "& { if (Test-Path variable:global:ProgressPreference){$ProgressPreference='SilentlyContinue'};. c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-feaa-d865-0df3-ec611311928b.ps1; &'c:/Windows/Temp/script-5b4dc1d6-a3c9-1424-8044-4ff037a0fccb.ps1';exit $LastExitCode }"
2018/07/17 11:17:57 ui:  amazon-ebs: Starting: install_chocolatey.ps1
2018/07/17 11:17:57 ui:  amazon-ebs: Installing Chocolatey
2018/07/17 11:17:59 ui:  amazon-ebs: Downloading specific version of Chocolatey: 0.10.11
2018/07/17 11:17:59 ui:  amazon-ebs: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.11.
2018/07/17 11:18:00 ui:  amazon-ebs: Using built-in compression to unzip
2018/07/17 11:18:00 ui:  amazon-ebs: Extracting C:\Users\admin\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\admin\AppData\Local\Temp\chocolatey\chocInstall...
2018/07/17 11:18:02 ui:  amazon-ebs: Installing chocolatey on this machine
2018/07/17 11:18:02 ui:  amazon-ebs: Creating ChocolateyInstall as an environment variable (targeting 'Machine')
2018/07/17 11:18:02 ui:  amazon-ebs: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey'
2018/07/17 11:18:02 ui:  amazon-ebs: WARNING: It's very likely you will need to close and reopen your shell
2018/07/17 11:18:02 ui:  amazon-ebs: before you can use choco.
2018/07/17 11:18:06 ui:  amazon-ebs: Restricting write permissions to Administrators
2018/07/17 11:18:06 ui:  amazon-ebs: We are setting up the Chocolatey package repository.
2018/07/17 11:18:06 ui:  amazon-ebs: The packages themselves go to 'C:\ProgramData\chocolatey\lib'
2018/07/17 11:18:06 ui:  amazon-ebs: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName).
2018/07/17 11:18:06 ui:  amazon-ebs: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin'
2018/07/17 11:18:06 ui:  amazon-ebs: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'.
2018/07/17 11:18:06 ui:  amazon-ebs:
2018/07/17 11:18:06 ui:  amazon-ebs: Creating Chocolatey folders if they do not already exist.
2018/07/17 11:18:06 ui:  amazon-ebs:
2018/07/17 11:18:06 ui:  amazon-ebs: WARNING: You can safely ignore errors related to missing log files when
2018/07/17 11:18:06 ui:  amazon-ebs: upgrading from a version of Chocolatey less than 0.9.9.
2018/07/17 11:18:06 ui:  amazon-ebs: 'Batch file could not be found' is also safe to ignore.
2018/07/17 11:18:06 ui:  amazon-ebs: 'The system cannot find the file specified' - also safe.
2018/07/17 11:18:06 ui:  amazon-ebs: chocolatey.nupkg file not installed in lib.
2018/07/17 11:18:06 ui:  amazon-ebs: Attempting to locate it from bootstrapper.
2018/07/17 11:18:06 ui:  amazon-ebs: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding...
2018/07/17 11:18:06 ui:  amazon-ebs: WARNING: Not setting tab completion: Profile file does not exist at
2018/07/17 11:18:06 ui:  amazon-ebs: 'C:\Users\admin\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'.
2018/07/17 11:18:07 packer: 2018/07/17 11:18:07 [INFO] command 'powershell -executionpolicy bypass "& { if (Test-Path variable:global:ProgressPreference){$ProgressPreference='SilentlyContinue'};. c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-feaa-d865-0df3-ec611311928b.ps1; &'c:/Windows/Temp/script-5b4dc1d6-a3c9-1424-8044-4ff037a0fccb.ps1';exit $LastExitCode }"' exited with code: 0
2018/07/17 11:18:07 packer: 2018/07/17 11:18:07 [INFO] RPC endpoint: Communicator ended with: 0
2018/07/17 11:18:07 [INFO] 2051 bytes written for 'stdout'
2018/07/17 11:18:07 [INFO] 0 bytes written for 'stderr'
2018/07/17 11:18:07 [INFO] RPC client: Communicator ended with: 0
2018/07/17 11:18:07 [INFO] RPC endpoint: Communicator ended with: 0
2018/07/17 11:18:07 ui:  amazon-ebs: Chocolatey (choco.exe) is now ready.
2018/07/17 11:18:07 packer: 2018/07/17 11:18:07 [INFO] 2051 bytes written for 'stdout'
2018/07/17 11:18:07 packer: 2018/07/17 11:18:07 [INFO] 0 bytes written for 'stderr'
2018/07/17 11:18:07 packer: 2018/07/17 11:18:07 [INFO] RPC client: Communicator ended with: 0
2018/07/17 11:18:07 ui:  amazon-ebs: You can call choco from anywhere, command line or powershell by typing choco.
2018/07/17 11:18:07 ui:  amazon-ebs: Run choco /? for a list of functions.
2018/07/17 11:18:07 ui:  amazon-ebs: You may need to shut down and restart powershell and/or consoles
2018/07/17 11:18:07 ui:  amazon-ebs: first prior to using choco.
2018/07/17 11:18:07 ui:  amazon-ebs: Ensuring chocolatey commands are on the path
2018/07/17 11:18:07 ui:  amazon-ebs: Ensuring chocolatey.nupkg is in the lib folder
2018/07/17 11:18:07 ui:  amazon-ebs: Finished: install_chocolatey.ps1
2018/07/17 11:18:07 [INFO] (telemetry) ending powershell
2018/07/17 11:18:07 [INFO] (telemetry) Starting provisioner powershell
2018/07/17 11:18:07 ui: ==> amazon-ebs: Provisioning with Powershell...
2018/07/17 11:18:07 ui: ==> amazon-ebs: Provisioning with powershell script: scripts/install_build_dependencies.ps1
2018/07/17 11:18:07 packer: 2018/07/17 11:18:07 Opening scripts/install_build_dependencies.ps1 for reading
2018/07/17 11:18:07 packer: 2018/07/17 11:18:07 Uploading env vars to c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-ad34-ae6d-7dbc-610b85b9937c.ps1
2018/07/17 11:18:07 packer: 2018/07/17 11:18:07 [INFO] 76 bytes written for 'uploadData'
2018/07/17 11:18:07 [INFO] 76 bytes written for 'uploadData'
2018/07/17 11:18:07 packer: 2018/07/17 11:18:07 Uploading file to 'c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-ad34-ae6d-7dbc-610b85b9937c.ps1'
2018/07/17 11:18:08 packer: #< CLIXML
2018/07/17 11:18:09 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>#< CLIXML
2018/07/17 11:18:09 packer: 2018/07/17 11:18:09 [INFO] 1306 bytes written for 'uploadData'
2018/07/17 11:18:09 [INFO] 1306 bytes written for 'uploadData'
2018/07/17 11:18:09 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>2018/07/17 11:18:09 Uploading file to 'c:/Windows/Temp/script-5b4dc1d6-d379-2bcf-3126-2fdcde9a41c8.ps1'
2018/07/17 11:18:10 packer: #< CLIXML
2018/07/17 11:18:11 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>#< CLIXML
2018/07/17 11:18:11 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>2018/07/17 11:18:11 [INFO] starting remote command: powershell -executionpolicy bypass "& { if (Test-Path variable:global:ProgressPreference){$ProgressPreference='SilentlyContinue'};. c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-ad34-ae6d-7dbc-610b85b9937c.ps1; &'c:/Windows/Temp/script-5b4dc1d6-d379-2bcf-3126-2fdcde9a41c8.ps1';exit $LastExitCode }"
2018/07/17 11:18:12 ui:  amazon-ebs: Starting: install_build_dependencies.ps1
2018/07/17 11:18:12 ui:  amazon-ebs: Installing awscli 7zip.install
2018/07/17 11:18:13 ui:  amazon-ebs: Chocolatey v0.10.11
2018/07/17 11:18:13 ui:  amazon-ebs: Installing the following packages:
2018/07/17 11:18:13 ui:  amazon-ebs: awscli;7zip.install
2018/07/17 11:18:13 ui:  amazon-ebs: By installing you accept licenses for the packages.
2018/07/17 11:18:16 ui:  amazon-ebs: Progress: Downloading awscli 1.15.59... 100%
2018/07/17 11:18:16 ui:  amazon-ebs:
2018/07/17 11:18:16 ui:  amazon-ebs: awscli v1.15.59 [Approved]
2018/07/17 11:18:16 ui:  amazon-ebs: awscli package files install completed. Performing other installation steps.
2018/07/17 11:18:17 ui:  amazon-ebs: Downloading awscli 64 bit
2018/07/17 11:18:17 ui:  amazon-ebs: from 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi'
2018/07/17 11:18:20 ui:  amazon-ebs: Progress: 100% - Completed download of C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59\AWSCLI64-1.15.59.msi (10.47 MB).
2018/07/17 11:18:20 ui:  amazon-ebs: Download of AWSCLI64-1.15.59.msi (10.47 MB) completed.
2018/07/17 11:18:24 ui:  amazon-ebs: Hashes match.
2018/07/17 11:18:24 ui:  amazon-ebs: Installing awscli...
2018/07/17 11:18:26 [INFO] 5158 bytes written for 'stdout'
2018/07/17 11:18:26 [INFO] 0 bytes written for 'stderr'
2018/07/17 11:18:26 packer: 2018/07/17 11:18:26 [INFO] command 'powershell -executionpolicy bypass "& { if (Test-Path variable:global:ProgressPreference){$ProgressPreference='SilentlyContinue'};. c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-ad34-ae6d-7dbc-610b85b9937c.ps1; &'c:/Windows/Temp/script-5b4dc1d6-d379-2bcf-3126-2fdcde9a41c8.ps1';exit $LastExitCode }"' exited with code: 0
2018/07/17 11:18:26 packer: 2018/07/17 11:18:26 [INFO] RPC endpoint: Communicator ended with: 0
2018/07/17 11:18:26 [INFO] RPC client: Communicator ended with: 0
2018/07/17 11:18:26 [INFO] RPC endpoint: Communicator ended with: 0
2018/07/17 11:18:26 packer: 2018/07/17 11:18:26 [INFO] 5158 bytes written for 'stdout'
2018/07/17 11:18:26 packer: 2018/07/17 11:18:26 [INFO] 0 bytes written for 'stderr'
2018/07/17 11:18:26 packer: 2018/07/17 11:18:26 [INFO] RPC client: Communicator ended with: 0
2018/07/17 11:18:26 [INFO] (telemetry) ending powershell
2018/07/17 11:18:26 [INFO] (telemetry) Starting provisioner powershell
2018/07/17 11:18:26 ui: ==> amazon-ebs: Provisioning with Powershell...
2018/07/17 11:18:26 ui: ==> amazon-ebs: Provisioning with powershell script: scripts/run_from_s3.ps1
2018/07/17 11:18:26 packer: 2018/07/17 11:18:26 Opening scripts/run_from_s3.ps1 for reading
2018/07/17 11:18:26 packer: 2018/07/17 11:18:26 Uploading env vars to c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-1d0f-53ab-14e1-0d9528e4bc78.ps1
2018/07/17 11:18:26 packer: 2018/07/17 11:18:26 [INFO] 152 bytes written for 'uploadData'
2018/07/17 11:18:26 [INFO] 152 bytes written for 'uploadData'
2018/07/17 11:18:27 packer: 2018/07/17 11:18:27 Uploading file to 'c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-1d0f-53ab-14e1-0d9528e4bc78.ps1'
2018/07/17 11:18:28 packer: #< CLIXML
2018/07/17 11:18:28 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>#< CLIXML
2018/07/17 11:18:28 packer: 2018/07/17 11:18:28 [INFO] 1427 bytes written for 'uploadData'
2018/07/17 11:18:28 [INFO] 1427 bytes written for 'uploadData'
2018/07/17 11:18:29 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>2018/07/17 11:18:29 Uploading file to 'c:/Windows/Temp/script-5b4dc1d6-80d6-7f54-ecce-79bef0bab80b.ps1'
2018/07/17 11:18:30 packer: #< CLIXML
2018/07/17 11:18:31 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>#< CLIXML
2018/07/17 11:18:31 packer: <Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"><Obj S="progress" RefId="0"><TN RefId="0"><T>System.Management.Automation.PSCustomObject</T><T>System.Object</T></TN><MS><I64 N="SourceId">1</I64><PR N="Record"><AV>Preparing modules for first use.</AV><AI>0</AI><Nil /><PI>-1</PI><PC>-1</PC><T>Completed</T><SR>-1</SR><SD> </SD></PR></MS></Obj></Objs>2018/07/17 11:18:31 [INFO] starting remote command: powershell -executionpolicy bypass "& { if (Test-Path variable:global:ProgressPreference){$ProgressPreference='SilentlyContinue'};. c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-1d0f-53ab-14e1-0d9528e4bc78.ps1; &'c:/Windows/Temp/script-5b4dc1d6-80d6-7f54-ecce-79bef0bab80b.ps1';exit $LastExitCode }"
2018/07/17 11:18:32 ui:  amazon-ebs: Starting: run_from_s3.ps1
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:06,089 5968 [DEBUG] - XmlConfiguration is now operational
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:06,137 5968 [INFO ] - ============================================================
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:06,183 5968 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\config".
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:07,120 5968 [DEBUG] - Attempting to replace "C:\ProgramData\chocolatey\config\chocolatey.config"
2018/07/17 11:18:32 ui:  amazon-ebs: with "C:\ProgramData\chocolatey\config\chocolatey.config.5968.update".
2018/07/17 11:18:32 ui:  amazon-ebs: Backup placed at "C:\ProgramData\chocolatey\config\chocolatey.config.backup".
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:07,136 5968 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\config\chocolatey.config.5968.update"
2018/07/17 11:18:32 ui:  amazon-ebs: to "C:\ProgramData\chocolatey\config\chocolatey.config".
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:07,183 5968 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\config\chocolatey.config.5968.update".
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:07,198 5968 [INFO ] - 0.10.11
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:07,198 5968 [DEBUG] - Exiting with 0
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,245 2336 [DEBUG] - XmlConfiguration is now operational
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,292 2336 [INFO ] - ============================================================
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,808 2336 [INFO ] - Chocolatey v0.10.11
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,823 2336 [DEBUG] - Chocolatey is running on Windows v 10.0.17134.0
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,823 2336 [DEBUG] - Attempting to delete file "C:/ProgramData/chocolatey/choco.exe.old".
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,823 2336 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\choco.exe.old".
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,839 2336 [DEBUG] - Command line: "C:\ProgramData\chocolatey\choco.exe" install -y --ignorepackageexitcodes awscli 7zip.install
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,839 2336 [DEBUG] - Received arguments: install -y --ignorepackageexitcodes awscli 7zip.install
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,886 2336 [DEBUG] - RemovePendingPackagesTask is now ready and waiting for PreRunMessage.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,886 2336 [DEBUG] - Sending message 'PreRunMessage' out if there are subscribers...
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,901 2336 [DEBUG] - [Pending] Removing all pending packages that should not be considered installed...
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,948 2336 [DEBUG] - The source 'https://chocolatey.org/api/v2/' evaluated to a 'normal' source type
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,948 2336 [DEBUG] -
2018/07/17 11:18:32 ui:  amazon-ebs: NOTE: Hiding sensitive configuration data! Please double and triple
2018/07/17 11:18:32 ui:  amazon-ebs: check to be sure no sensitive data is shown, especially if copying
2018/07/17 11:18:32 ui:  amazon-ebs: output to a gist for review.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,948 2336 [DEBUG] - Configuration: CommandName='install'|
2018/07/17 11:18:32 ui:  amazon-ebs: CacheLocation='C:\Users\admin\AppData\Local\Temp\chocolatey'|
2018/07/17 11:18:32 ui:  amazon-ebs: ContainsLegacyPackageInstalls='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: CommandExecutionTimeoutSeconds='2700'|WebRequestTimeoutSeconds='30'|
2018/07/17 11:18:32 ui:  amazon-ebs: Sources='https://chocolatey.org/api/v2/'|SourceType='normal'|
2018/07/17 11:18:32 ui:  amazon-ebs: Debug='False'|Verbose='False'|Trace='False'|Force='False'|Noop='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: HelpRequested='False'|UnsuccessfulParsing='False'|RegularOutput='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: QuietOutput='False'|PromptForConfirmation='False'|AcceptLicense='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: AllowUnofficialBuild='False'|Input='awscli 7zip.install'|
2018/07/17 11:18:32 ui:  amazon-ebs: AllVersions='False'|SkipPackageInstallProvider='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: PackageNames='awscli;7zip.install'|Prerelease='False'|ForceX86='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: OverrideArguments='False'|NotSilent='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ApplyPackageParametersToDependencies='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ApplyInstallArgumentsToDependencies='False'|IgnoreDependencies='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: AllowMultipleVersions='False'|AllowDowngrade='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ForceDependencies='False'|Information.PlatformType='Windows'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.PlatformVersion='10.0.17134.0'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.PlatformName='Windows 10'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.ChocolateyVersion='0.10.11.0'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.ChocolateyProductVersion='0.10.11'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.FullName='choco, Version=0.10.11.0, Culture=neutral, PublicKeyToken=79d02ea9cad655eb'|
2018/07/17 11:18:32 ui:  amazon-ebs:
2018/07/17 11:18:32 ui:  amazon-ebs: Information.Is64BitOperatingSystem='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.Is64BitProcess='True'|Information.IsInteractive='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.UserName='admin'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.UserDomainName='VWS-7RIF3SGV5QC'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.IsUserAdministrator='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.IsUserSystemAccount='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.IsUserRemoteDesktop='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.IsUserRemote='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.IsProcessElevated='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: Information.IsLicensedVersion='False'|Information.LicenseType='Foss'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.AutoUninstaller='True'|Features.ChecksumFiles='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.AllowEmptyChecksums='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.AllowEmptyChecksumsSecure='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.FailOnAutoUninstaller='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.FailOnStandardError='False'|Features.UsePowerShellHost='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.LogEnvironmentValues='False'|Features.LogWithoutColor='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.VirusCheck='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.FailOnInvalidOrMissingLicense='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.IgnoreInvalidOptionsSwitches='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.UsePackageExitCodes='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.UseFipsCompliantChecksums='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.ShowNonElevatedWarnings='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.ShowDownloadProgress='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.StopOnFirstPackageFailure='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.UseRememberedArgumentsForUpgrades='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.IgnoreUnfoundPackagesOnUpgradeOutdated='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.RemovePackageInformationOnUninstall='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Features.ScriptsCheckLastExitCode='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ListCommand.LocalOnly='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ListCommand.IdOnly='False'|ListCommand.IncludeRegistryPrograms='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ListCommand.PageSize='25'|ListCommand.Exact='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ListCommand.ByIdOnly='False'|ListCommand.ByTagOnly='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ListCommand.IdStartsWith='False'|ListCommand.OrderByPopularity='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ListCommand.ApprovedOnly='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ListCommand.DownloadCacheAvailable='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ListCommand.NotBroken='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: ListCommand.IncludeVersionOverrides='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: UpgradeCommand.FailOnUnfound='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: UpgradeCommand.FailOnNotInstalled='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: UpgradeCommand.NotifyOnlyAvailableUpgrades='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: UpgradeCommand.ExcludePrerelease='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: NewCommand.AutomaticPackage='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: NewCommand.UseOriginalTemplate='False'|SourceCommand.Command='unknown'|
2018/07/17 11:18:32 ui:  amazon-ebs: SourceCommand.Priority='0'|SourceCommand.BypassProxy='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: SourceCommand.AllowSelfService='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: SourceCommand.VisibleToAdminsOnly='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: FeatureCommand.Command='unknown'|ConfigCommand.Command='unknown'|
2018/07/17 11:18:32 ui:  amazon-ebs: PinCommand.Command='unknown'|OutdatedCommand.IgnorePinned='False'|
2018/07/17 11:18:32 ui:  amazon-ebs: Proxy.BypassOnLocal='True'|
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,948 2336 [DEBUG] - _ Chocolatey:ChocolateyInstallCommand - Normal Run Mode _
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,964 2336 [INFO ] - Installing the following packages:
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,964 2336 [INFO ] - awscli;7zip.install
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:12,964 2336 [INFO ] - By installing you accept licenses for the packages.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,745 2336 [INFO ] - [NuGet] Installing 'awscli 1.15.59'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,745 2336 [DEBUG] - [NuGet] Added file 'chocolateyinstall.ps1' to folder 'awscli\tools'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,745 2336 [DEBUG] - [NuGet] Added file 'chocolateyuninstall.ps1' to folder 'awscli\tools'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,792 2336 [DEBUG] - [NuGet] Added file 'awscli.nuspec' to folder 'awscli'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,792 2336 [DEBUG] - [NuGet] Added file 'awscli.nupkg' to folder 'awscli'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,792 2336 [INFO ] - [NuGet] Successfully installed 'awscli 1.15.59'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,792 2336 [INFO ] -
2018/07/17 11:18:32 ui:  amazon-ebs: awscli v1.15.59 [Approved]
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,808 2336 [INFO ] - awscli package files install completed. Performing other installation steps.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,839 2336 [DEBUG] - Setting installer args for awscli
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,839 2336 [DEBUG] - Setting package parameters for awscli
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,839 2336 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\awscli\tools\chocolateyinstall.ps1':
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,854 2336 [DEBUG] - $ErrorActionPreference = 'Stop';
2018/07/17 11:18:32 ui:  amazon-ebs:
2018/07/17 11:18:32 ui:  amazon-ebs: $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
2018/07/17 11:18:32 ui:  amazon-ebs: $url = 'https://s3.amazonaws.com/aws-cli/AWSCLI32-1.15.59.msi'
2018/07/17 11:18:32 ui:  amazon-ebs: $checksum = 'c4393161d67659cb563c16ed467398518d07417b30a02feee3c078a6a8b43074'
2018/07/17 11:18:32 ui:  amazon-ebs: $url64 = 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi'
2018/07/17 11:18:32 ui:  amazon-ebs: $checksum64 = 'b8e38ab256f4632a84cdc82a4b67d2fc38b87a8810c490d4309dea0019e7db70'
2018/07/17 11:18:32 ui:  amazon-ebs:
2018/07/17 11:18:32 ui:  amazon-ebs: $packageArgs = @{
2018/07/17 11:18:32 ui:  amazon-ebs: packageName = $env:ChocolateyPackageName
2018/07/17 11:18:32 ui:  amazon-ebs: unzipLocation = $toolsDir
2018/07/17 11:18:32 ui:  amazon-ebs: fileType = 'MSI'
2018/07/17 11:18:32 ui:  amazon-ebs: url = $url
2018/07/17 11:18:32 ui:  amazon-ebs: url64bit = $url64
2018/07/17 11:18:32 ui:  amazon-ebs: softwareName = 'AWS Command Line Interface*'
2018/07/17 11:18:32 ui:  amazon-ebs: checksum = $checksum
2018/07/17 11:18:32 ui:  amazon-ebs: checksumType = 'sha256'
2018/07/17 11:18:32 ui:  amazon-ebs: checksum64 = $checksum64
2018/07/17 11:18:32 ui:  amazon-ebs: checksumType64= 'sha256'
2018/07/17 11:18:32 ui:  amazon-ebs: silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
2018/07/17 11:18:32 ui:  amazon-ebs: validExitCodes= @(0, 3010, 1641)
2018/07/17 11:18:32 ui:  amazon-ebs: }
2018/07/17 11:18:32 ui:  amazon-ebs:
2018/07/17 11:18:32 ui:  amazon-ebs: Install-ChocolateyPackage @packageArgs
2018/07/17 11:18:32 ui:  amazon-ebs:
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,933 2336 [DEBUG] - Calling built-in PowerShell host with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = ''; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\awscli\tools\chocolateyinstall.ps1' -installArguments '' -packageParameters ''']
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:15,933 2336 [DEBUG] - Redirecting System.Management.Automation.resources, Version=3.0.0.0, Culture=en-US, PublicKeyToken=31bf3856ad364e35, requested by ''
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,276 2336 [DEBUG] - Host version is 5.1.17134.1, PowerShell Version is '5.1.17134.1' and CLR Version is '4.0.30319.42000'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,448 2336 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'.
2018/07/17 11:18:32 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting alias 'refreshenv'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,464 2336 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Exporting alias 'refreshenv'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Format-FileSize'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariable'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariableNames'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,479 2336 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Get-WebFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPath'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Install-Vsix'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Set-EnvironmentVariable'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Test-ProcessAdminRights'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Update-SessionEnvironment'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing alias 'refreshenv'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,495 2336 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,526 2336 [DEBUG] - Running 'ChocolateyScriptRunner' for awscli v1.15.59 with packageScript 'C:\ProgramData\chocolatey\lib\awscli\tools\chocolateyinstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\awscli', installArguments: '', packageParameters: '',
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,542 2336 [DEBUG] - Running 'C:\ProgramData\chocolatey\lib\awscli\tools\chocolateyinstall.ps1'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,589 2336 [DEBUG] - Running Install-ChocolateyPackage -url 'https://s3.amazonaws.com/aws-cli/AWSCLI32-1.15.59.msi' -silentArgs '/qn /norestart /l*v "C:\Users\admin\AppData\Local\Temp\chocolatey\awscli.1.15.59.MsiInstall.log"' -url64bit 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi' -checksum 'c4393161d67659cb563c16ed467398518d07417b30a02feee3c078a6a8b43074' -checksum64 'b8e38ab256f4632a84cdc82a4b67d2fc38b87a8810c490d4309dea0019e7db70' -checksumType 'sha256' -packageName 'awscli' -fileType 'MSI' -validExitCodes '0 3010 1641' -checksumType64 'sha256'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,636 2336 [DEBUG] - Running Get-ChocolateyWebFile -packageName 'awscli' -fileFullPath 'C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59\awscliInstall.MSI' -url 'https://s3.amazonaws.com/aws-cli/AWSCLI32-1.15.59.msi' -url64bit 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi' -checksum 'c4393161d67659cb563c16ed467398518d07417b30a02feee3c078a6a8b43074' -checksumType 'sha256' -checksum64 'b8e38ab256f4632a84cdc82a4b67d2fc38b87a8810c490d4309dea0019e7db70' -checksumType64 'sha256' -options 'System.Collections.Hashtable' -getOriginalFileName 'True'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,651 2336 [DEBUG] - Running Get-ProcessorBits -compare '64'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,651 2336 [DEBUG] - CPU is 64 bit
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,651 2336 [DEBUG] - Setting url to 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi' and bitPackage to 64
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:16,683 2336 [DEBUG] - Running Get-WebFileName -url 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi' -defaultName 'awscliInstall.MSI'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,042 2336 [DEBUG] - Using response url to determine file name. 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,042 2336 [DEBUG] - File name determined from url is 'AWSCLI64-1.15.59.msi'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,058 2336 [DEBUG] - Running Get-WebHeaders -url 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi' -ErrorAction 'Stop'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,058 2336 [DEBUG] - Setting the UserAgent to 'chocolatey command line'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,058 2336 [DEBUG] - Request Headers:
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,058 2336 [DEBUG] - 'Accept':'*/*'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,058 2336 [DEBUG] - 'User-Agent':'chocolatey command line'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,354 2336 [DEBUG] - Response Headers:
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,354 2336 [DEBUG] - 'x-amz-id-2':'5z1NX7JSv1WrVM3N2mA8fRKA0yxouoGXnaCAqQ8byovmMLvDeRFTbC1LYZB1bEtV2xvLcR/3yMM='
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,354 2336 [DEBUG] - 'x-amz-request-id':'56BC8CCDAFA467F9'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,354 2336 [DEBUG] - 'Accept-Ranges':'bytes'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,354 2336 [DEBUG] - 'Content-Length':'10981888'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,370 2336 [DEBUG] - 'Content-Type':'binary/octet-stream'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,370 2336 [DEBUG] - 'Date':'Tue, 17 Jul 2018 10:18:18 GMT'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,370 2336 [DEBUG] - 'ETag':'"13eac96870b85501a8b4851ace6c8c10-2"'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,370 2336 [DEBUG] - 'Last-Modified':'Fri, 13 Jul 2018 23:03:57 GMT'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,370 2336 [DEBUG] - 'Server':'AmazonS3'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,370 2336 [INFO ] - Downloading awscli 64 bit
2018/07/17 11:18:33 ui:  amazon-ebs: from 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,386 2336 [DEBUG] - Running Get-WebFile -url 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi' -fileName 'C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59\AWSCLI64-1.15.59.msi' -options 'System.Collections.Hashtable'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,386 2336 [DEBUG] - Setting request timeout to 30000
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,386 2336 [DEBUG] - Setting read/write timeout to 2700000
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,386 2336 [DEBUG] - Setting the UserAgent to 'chocolatey command line'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:17,995 2336 [DEBUG] - Downloading https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi to C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59\AWSCLI64-1.15.59.msi
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:20,448 2336 [INFO ] -
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:20,448 2336 [INFO ] - Download of AWSCLI64-1.15.59.msi (10.47 MB) completed.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,479 2336 [DEBUG] - No runtime virus checking built into FOSS Chocolatey. Check out Pro/Business - https://chocolatey.org/compare
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,479 2336 [DEBUG] - Verifying package provided checksum of 'b8e38ab256f4632a84cdc82a4b67d2fc38b87a8810c490d4309dea0019e7db70' for 'C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59\AWSCLI64-1.15.59.msi'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,479 2336 [DEBUG] - Running Get-ChecksumValid -file 'C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59\AWSCLI64-1.15.59.msi' -checksum 'b8e38ab256f4632a84cdc82a4b67d2fc38b87a8810c490d4309dea0019e7db70' -checksumType 'sha256' -originalUrl 'https://s3.amazonaws.com/aws-cli/AWSCLI64-1.15.59.msi'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,495 2336 [DEBUG] - checksum.exe found at 'C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,495 2336 [DEBUG] - Executing command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="b8e38ab256f4632a84cdc82a4b67d2fc38b87a8810c490d4309dea0019e7db70" -t="sha256" -f="C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59\AWSCLI64-1.15.59.msi"]
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,745 2336 [DEBUG] - Command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="b8e38ab256f4632a84cdc82a4b67d2fc38b87a8810c490d4309dea0019e7db70" -t="sha256" -f="C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59\AWSCLI64-1.15.59.msi"] exited with '0'.
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,776 2336 [DEBUG] - Running Install-ChocolateyInstallPackage -packageName 'awscli' -fileType 'MSI' -silentArgs '/qn /norestart /l*v "C:\Users\admin\AppData\Local\Temp\chocolatey\awscli.1.15.59.MsiInstall.log"' -file 'C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59\AWSCLI64-1.15.59.msi' -validExitCodes '0 3010 1641' -useOnlyPackageSilentArguments 'False'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,776 2336 [DEBUG] - Running Get-ProcessorBits -compare '32'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,776 2336 [INFO ] - Installing awscli...
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,807 2336 [DEBUG] - Ensuring 'C:\Users\admin\AppData\Local\Temp\chocolatey' exists
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,839 2336 [DEBUG] - Running Start-ChocolateyProcessAsAdmin -validExitCodes '0 3010 1641' -workingDirectory 'C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59' -statements '/i "C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59\AWSCLI64-1.15.59.msi" /qn /norestart /l*v "C:\Users\admin\AppData\Local\Temp\chocolatey\awscli.1.15.59.MsiInstall.log" ' -exeToRun 'C:\Windows\System32\msiexec.exe'
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,854 2336 [DEBUG] - Test-ProcessAdminRights: returning True
2018/07/17 11:18:33 ui:  amazon-ebs: 2018-07-17 11:18:23,854 2336 [DEBUG] - Elevating permissions and running ["C:\Windows\System32\msiexec.exe" /i "C:\Users\admin\AppData\Local\Temp\chocolatey\awscli\1.15.59\AWSCLI64-1.15.59.msi" /qn /norestart /l*v "C:\Users\admin\AppData\Local\Temp\chocolatey\awscli.1.15.59.MsiInstall.log" ]. This may take a while, depending on the statements.
2018/07/17 11:18:35 packer: 2018/07/17 11:18:35 [INFO] command 'powershell -executionpolicy bypass "& { if (Test-Path variable:global:ProgressPreference){$ProgressPreference='SilentlyContinue'};. c:/Windows/Temp/packer-ps-env-vars-5b4dc1d6-1d0f-53ab-14e1-0d9528e4bc78.ps1; &'c:/Windows/Temp/script-5b4dc1d6-80d6-7f54-ecce-79bef0bab80b.ps1';exit $LastExitCode }"' exited with code: 1
2018/07/17 11:18:35 packer: 2018/07/17 11:18:35 [INFO] RPC endpoint: Communicator ended with: 1
2018/07/17 11:18:35 [INFO] 31565 bytes written for 'stdout'
2018/07/17 11:18:35 [INFO] 504 bytes written for 'stderr'
2018/07/17 11:18:35 [INFO] RPC client: Communicator ended with: 1
2018/07/17 11:18:35 [INFO] RPC endpoint: Communicator ended with: 1
2018/07/17 11:18:35 packer: 2018/07/17 11:18:35 [INFO] 31565 bytes written for 'stdout'
2018/07/17 11:18:35 packer: 2018/07/17 11:18:35 [INFO] 504 bytes written for 'stderr'
2018/07/17 11:18:35 ui:  amazon-ebs: aws : The term 'aws' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
2018/07/17 11:18:35 packer: 2018/07/17 11:18:35 [INFO] RPC client: Communicator ended with: 1
2018/07/17 11:18:35 ui:  amazon-ebs: spelling of the name, or if a path was included, verify that the path is correct and try again.
2018/07/17 11:18:35 ui:  amazon-ebs: At C:\Windows\Temp\script-5b4dc1d6-80d6-7f54-ecce-79bef0bab80b.ps1:29 char:5
2018/07/17 11:18:35 ui:  amazon-ebs: + aws s3 cp $uri $downloadLocation
2018/07/17 11:18:35 ui:  amazon-ebs: + ~~~
2018/07/17 11:18:35 ui:  amazon-ebs: + CategoryInfo : ObjectNotFound: (aws:String) [], ParentContainsErrorRecordException
2018/07/17 11:18:35 ui:  amazon-ebs: + FullyQualifiedErrorId : CommandNotFoundException
2018/07/17 11:18:35 ui:  amazon-ebs:
2018/07/17 11:18:35 [INFO] (telemetry) ending powershell
2018/07/17 11:18:35 ui: ==> amazon-ebs: Terminating the source AWS instance...
2018/07/17 11:18:35 packer: 2018/07/17 11:18:35 Waiting for state to become: terminated
2018/07/17 11:18:35 packer: 2018/07/17 11:18:35 Using 2s as polling delay (change with AWS_POLL_DELAY_SECONDS)
2018/07/17 11:18:35 packer: 2018/07/17 11:18:35 Allowing 300s to complete (change with AWS_TIMEOUT_SECONDS)
2018/07/17 11:19:40 ui: ==> amazon-ebs: Cleaning up any extra volumes...
2018/07/17 11:19:40 ui: ==> amazon-ebs: No volumes to clean up, skipping
2018/07/17 11:19:40 ui: ==> amazon-ebs: Deleting temporary security group...
2018/07/17 11:19:40 ui: ==> amazon-ebs: Deleting temporary keypair...
2018/07/17 11:19:40 [INFO] (telemetry) ending amazon-ebs
2018/07/17 11:19:40 ui error: Build 'amazon-ebs' errored: Script exited with non-zero exit status: 1. Allowed exit codes are: [0]
2018/07/17 11:19:40 Builds completed. Waiting on interrupt barrier...
2018/07/17 11:19:40 machine readable: error-count []string{"1"}
2018/07/17 11:19:40 ui error:
==> Some builds didn't complete successfully and had errors:
2018/07/17 11:19:40 machine readable: amazon-ebs,error []string{"Script exited with non-zero exit status: 1. Allowed exit codes are: [0]"}
2018/07/17 11:19:40 ui error: --> amazon-ebs: Script exited with non-zero exit status: 1. Allowed exit codes are: [0]
2018/07/17 11:19:40 ui:
==> Builds finished but no artifacts were created.
2018/07/17 11:19:40 [INFO] (telemetry) Finalizing.
2018/07/17 11:19:41 waiting for all plugin processes to complete...
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
2018/07/17 11:19:41 /usr/local/bin/packer: plugin process exited
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment