You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check that winrm is configured properly in the VM, if default username is used (vagrant/vagrant) then ensure that winrm accepts unencrypted connection and Basic auth.
102
100
103
-
Enable basic auth (in VM)
101
+
Enable basic auth and unencrypted connection (in VM).
104
102
```
103
+
In elevated cmd
105
104
winrm set winrm/config/service/auth @{Basic="true"}
105
+
winrm set winrm/config/service @{AllowUnencrypted="true"}
106
106
```
107
107
108
-
Allow unencrypted connection (in VM)
108
+
### Unencrypted traffic is currently disabled in the client configuration
109
+
110
+
Run following command on your machine as well:
109
111
```
112
+
In elevated cmd
110
113
winrm set winrm/config/service @{AllowUnencrypted="true"}
111
114
```
112
115
113
-
114
116
## Contributing
115
117
116
118
1. Fork it ( https://github.com/jarig/vagrant-vmm/fork )
0 commit comments