dev.microsoftedge.com-vms icon indicating copy to clipboard operation
dev.microsoftedge.com-vms copied to clipboard

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

Open dusek opened this issue 6 years ago • 14 comments

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 😄 .

dusek avatar Aug 16 '18 15:08 dusek

@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!

molant avatar Aug 16 '18 16:08 molant

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

paleozogt avatar Aug 24 '18 15:08 paleozogt

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

molant avatar Aug 24 '18 15:08 molant

@molant No response yet?

ankostis avatar May 07 '19 13:05 ankostis

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?

weaslevdmd avatar Jun 10 '19 18:06 weaslevdmd

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

kikitux avatar Aug 05 '19 15:08 kikitux

I'm on parental leave and don't have the time to look into this right now. Will try to take care once I'm back in late September.


From: Alvaro Miranda Aguilera [email protected] Sent: Monday, August 5, 2019 17:40 To: MicrosoftEdge/dev.microsoftedge.com-vms Cc: Antón Molleda; Mention Subject: Re: [MicrosoftEdge/dev.microsoftedge.com-vms] Microsoft/EdgeOnWindows10 outdated at https://app.vagrantup.com/Microsoft (#22)

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

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHubhttps://github.com/MicrosoftEdge/dev.microsoftedge.com-vms/issues/22?email_source=notifications&email_token=AAEUDASTTI6IW64OYF2MUYTQDBCVTA5CNFSM4FQAOVZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3SG2AI#issuecomment-518286593, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AAEUDASY5Y4FABOWLZNQ3VLQDBCVTANCNFSM4FQAOVZQ.

molant avatar Aug 05 '19 16:08 molant

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

am11 avatar Aug 16 '19 17:08 am11

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

dragon788 avatar Sep 26 '19 20:09 dragon788

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

phocean avatar Jan 05 '20 09:01 phocean

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 avatar Apr 10 '20 05:04 saulonunesdev

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 avatar Apr 16 '20 16:04 saulonunesdev

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

saulonunesdev avatar Apr 16 '20 16:04 saulonunesdev

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

timothysparg avatar Jul 01 '20 21:07 timothysparg