MicrosoftEdge / dev.microsoftedge.com-vms

Scripts used to generate the free VMs available at https://dev.microsoftedge.com
MIT License
81 stars 22 forks source link

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

Open dusek opened 6 years ago

dusek commented 6 years ago

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 commented 6 years ago

@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 commented 6 years ago

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

molant commented 6 years ago

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

ankostis commented 5 years ago

@molant No response yet?

weaslevdmd commented 5 years ago

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 commented 5 years ago

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

molant commented 5 years ago

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 notifications@github.com 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.

am11 commented 5 years ago

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

dragon788 commented 4 years ago

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 commented 4 years ago

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

saulonunesdev commented 4 years ago

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 commented 4 years ago

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 commented 4 years ago

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 commented 4 years ago

Just tried to send an email to vagrant@microsoft.com and it now bounces back as undeliverable