2

I am new to Vagrant with Windows using VirtualBox and I follow the example mentioned here.

All is good and I am able to vagrant up dev to the dev machine.

I see this message:

==> dev: Booting VM...
==> dev: Waiting for machine to boot. This may take a few minutes...
    dev: WinRM address: 127.0.0.1:5985
    dev: WinRM username: vagrant
    dev: WinRM execution_time_limit: PT2H
    dev: WinRM transport: plaintext
==> dev: Machine booted and ready!
==> dev: Checking for guest additions in VM...
==> dev: Setting hostname...
==> dev: Configuring and enabling network interfaces...
==> dev: Mounting shared folders...
    dev: /vagrant => C:/vagrant_getting_started

C:\vagrant_getting_started>

So how am I going to start using my machine? For I can't see any new windows being loaded with the machine?

I can't use vagrant ssh as this is not a Linux but a Windows box.

1 Answer 1

1

After a bit of googling, I just realized I need this command:

vagrant rdp

The above requires some settings to be enabled in the box ferventcoder/win2008r2-x64-nocm, which includes:

  • WinRM
  • Remote Desktop

I am posting that article here for everyone benefits in the future.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .