Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Microsoft/EdgeOnWindows10 outdated at https://app.vagrantup.com/Microsoft #22

Open
dusek opened this issue Aug 16, 2018 · 14 comments
Open

Comments

@dusek
Copy link

dusek commented Aug 16, 2018

The box Microsoft/EdgeOnWindows10 available from Vagrant Cloud is outdated - it has been released more than 2 years ago.

In comparison, the Vagrant box available directly on the Microsoft Edge VMs site was built in April 2018, with VirtualBox Guest Additions version 5.2.8 (which is quite recent considering the current version is 5.2.18), and contains the latest currently available Windows 10 version — Version 1803.

Installing (and updating) through simply specifying config.vm.box = 'Microsoft/EdgeOnWindows10' in one's Vagrantfile is just so much more convenient than downloading from Microsoft's page manually, unpacking, and adding to vagrant as a box with proper CLI syntax.

Also the Microsoft's Vagrant Cloud page itself says: "Please come here for the latest, up-to-date Windows Boxes." This issue is a plea for that to be true 😄 .

@molant
Copy link
Contributor

molant commented Aug 16, 2018

@dusek I have no idea who has access to the Microsoft's Vagrant page. I'll try to reach out see if there's someone responsible for this. Thanks!

@paleozogt
Copy link

+1 Please update the vagrant cloud version. It's unusable due to issues like this.

@molant
Copy link
Contributor

molant commented Aug 24, 2018

I've pinged the email in that page again. Hopefully this time I'll get an answer. Thanks!

@ankostis
Copy link

ankostis commented May 7, 2019

@molant No response yet?

@weaslevdmd
Copy link

This continues to be an issue. I would also love to be able to use options in the Vagrant file to obtain the latest versions... but this simply does not work.

Any chance we can reach out to Microsoft for them to cross maintain these images?

@kikitux
Copy link

kikitux commented Aug 5, 2019

@molant you can reach us at support @ hashicorp.com if need to get access to said org

@molant
Copy link
Contributor

molant commented Aug 5, 2019 via email

@am11
Copy link

am11 commented Aug 16, 2019

Would be nicer if we now get 2019 May update (1903) directly, instead of 2018 one. 😊

@dragon788
Copy link

There is a PR to get 1809, which should smooth the way for 1903. https://github.com/MicrosoftEdge/dev.microsoftedge.com-vms/pull/26/files

@phocean
Copy link

phocean commented Jan 5, 2020

Still nothing has changed... This is very surprising...

@saulonunesdev
Copy link

This Box EdgeOnWindows10 is returning 404

$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'Microsoft/EdgeOnWindows10' could not be found. Attempting to find and install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
==> default: Loading metadata for box 'Microsoft/EdgeOnWindows10'
    default: URL: https://vagrantcloud.com/Microsoft/EdgeOnWindows10
==> default: Adding box 'Microsoft/EdgeOnWindows10' (v1.0) for provider: virtualbox
    default: Downloading: https://vagrantcloud.com/Microsoft/boxes/EdgeOnWindows10/versions/1.0/providers/virtualbox.box
    default: Download redirected to host: az792536.vo.msecnd.net
    default:
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

The requested URL returned error: 404

@saulonunesdev
Copy link

So, i've download the box manually and from that created a new one
Win10

Built on Top of "Microsoft/EdgeOnWindows10"
Windows Version 1809 (OS Build 17763.1158)
chocolatey 0.10.15
virtualbox-guest-additions-guest.install 6.1.6
Changed the User and Password to "vagrant"
Changed the Name of Windows Machine to WIN10
PC NAME = WIN10
LOGIN = WIN10\vagrant
Password = vagrant

@saulonunesdev
Copy link

Vagrantfile example

Vagrant.configure("2") do |config|
  config.vm.box = "saulonunes/win10"
  config.vm.box_version = "1.0"
  
  config.vm.guest = :windows
  config.vm.communicator = :winrm      
  config.winrm.username = "vagrant"
  config.winrm.password = "vagrant"
  config.vm.boot_timeout = 6000
  config.vm.graceful_halt_timeout = 6000
  config.winrm.retry_limit = 30
  config.winrm.retry_delay = 10  

  config.vm.network "private_network", ip: "192.168.56.2"
  config.vm.network "forwarded_port", host: 33389, guest: 3389, id: "rdp", auto_correct: true

  config.ssh.password = "vagrant"
  config.ssh.username = "vagrant" 

  config.vm.synced_folder '.', '/vagrant', disabled: true
  config.vm.synced_folder "app/", "/app"
  
  #https://www.virtualbox.org/manual/ch08.html
  config.vm.provider "virtualbox" do |v|
	v.name = "WIN10"
	v.gui = false  
    v.memory = 8192
	v.cpus = 2
	#https://www.virtualbox.org/manual/ch03.html#settings-display
	v.customize ["modifyvm", :id, "--vram", "256"]
	v.customize ["modifyvm", :id, "--graphicscontroller", "vboxsvga"]
	v.customize ["modifyvm", :id, "--accelerate3d", "on"]
	v.customize ["modifyvm", :id, "--accelerate2dvideo", "on"]
	#https://www.virtualbox.org/manual/ch06.html
	v.default_nic_type = "82540EM"
  end
  config.vm.provision "shell", privileged: "true", powershell_elevated_interactive: "true", path: "provision.ps1"
end

@timothysparg
Copy link

Just tried to send an email to [email protected] and it now bounces back as undeliverable

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests