Discussion:
[vagrant-up] Vagrant and Windows
Pietto Vasco
2018-11-17 13:49:24 UTC
Permalink
I have noticed since using vagrant that spinning up a windows machines, is
becoming quite difficult.

I seem to be having trouble with winrm timing out

What technique do you guy use when spinning up windows machines
--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+***@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/e75d1f33-c023-4909-b898-4b60bf249442%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Alvaro Miranda Aguilera
2018-11-17 15:49:22 UTC
Permalink
if you build your own box then you will have a repeatable process.

the way Windows work, and the way some boxes are built, they run into
issues when expiration of eval key gets into play, or you turn on a VM and
there are zillions of Windows updates patches.

my suggestion will be build your own box and keep it up to date, and you
wont run into issues.

alvaro
Post by Pietto Vasco
I have noticed since using vagrant that spinning up a windows machines, is
becoming quite difficult.
I seem to be having trouble with winrm timing out
What technique do you guy use when spinning up windows machines
--
This mailing list is governed under the HashiCorp Community Guidelines -
https://www.hashicorp.com/community-guidelines.html. Behavior in
violation of those guidelines may result in your removal from this mailing
list.
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an
To view this discussion on the web visit
https://groups.google.com/d/msgid/vagrant-up/e75d1f33-c023-4909-b898-4b60bf249442%40googlegroups.com
<https://groups.google.com/d/msgid/vagrant-up/e75d1f33-c023-4909-b898-4b60bf249442%40googlegroups.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
--
Alvaro
--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+***@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CAHqq0ex%3DNfAoe%2B3hX9ZcXJL_h%3DfXd12H9wy3YNqNb9-HG1vYjQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
Ozan Cansel
2018-11-17 16:18:48 UTC
Permalink
Winrm timeout can be specified inin VagrantFile. I followed this
<http://huestones.co.uk/node/305> tutorial and everything worked perfectly.
You can benefit from the tutorial.

If you need shorter way, how to specifiy booting and halting timeouts is
specified at below.

config.vm.boot_timeout = 600
config.vm.graceful_halt_timeout = 600
Post by Pietto Vasco
I have noticed since using vagrant that spinning up a windows machines, is
becoming quite difficult.
I seem to be having trouble with winrm timing out
What technique do you guy use when spinning up windows machines
--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+***@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/1b7fdfc9-dd8f-45fd-86ac-1df5f5b143c5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Loading...