Advertisement
Guest User

Untitled

a guest
Mar 19th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. vagrant up
  2. Bringing machine 'default' up with 'virtualbox' provider...
  3. ==> default: Importing base box 'WindowsDocker'...
  4. ==> default: Matching MAC address for NAT networking...
  5. ==> default: Setting the name of the VM: temp_default_1489982222856_48671
  6. ==> default: Clearing any previously set network interfaces...
  7. ==> default: Preparing network interfaces based on configuration...
  8. default: Adapter 1: nat
  9. ==> default: Forwarding ports...
  10. default: 5985 (guest) => 55985 (host) (adapter 1)
  11. default: 5986 (guest) => 55986 (host) (adapter 1)
  12. default: 22 (guest) => 2222 (host) (adapter 1)
  13. ==> default: Booting VM...
  14. ==> default: Waiting for machine to boot. This may take a few minutes...
  15. default: WinRM address: 127.0.0.1:55985
  16. default: WinRM username: vagrant
  17. default: WinRM execution_time_limit: PT2H
  18. default: WinRM transport: negotiate
  19. default: Warning: Authentication failure. Retrying...
  20. default: Warning: Authentication failure. Retrying...
  21. default: Warning: Authentication failure. Retrying...
  22.  
  23. $securePassword = ConvertTo-SecureString 'vagrant' -asplaintext -force
  24. $cred = New-Object System.Management.Automation.PSCredential ('vagrant', $securePassword)
  25. enter-pssession 127.0.0.1 -port 55985 -Auth CredSSP -credential $cred
  26. [127.0.0.1]: PS C:UsersvagrantDocuments> exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement