From aaa85c6100586f4e6951dc37bf0c2ed57a8101b7 Mon Sep 17 00:00:00 2001 From: mmoser18 <17732576+mmoser18@users.noreply.github.com> Date: Tue, 19 Feb 2019 21:50:00 +0100 Subject: [PATCH] Update part4.md Some commands need to be run as Administrator on Windows or else they will fail or produce empty output. --- get-started/part4.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/get-started/part4.md b/get-started/part4.md index fbbea8ac25..58c9a48cc7 100644 --- a/get-started/part4.md +++ b/get-started/part4.md @@ -126,6 +126,8 @@ so they can connect to each other. Now, create a couple of VMs using our node management tool, `docker-machine`: +> **Note**: you need to run the following as administrator or else you don't have the permission to create hyperv VMs! + ```shell docker-machine create -d hyperv --hyperv-virtual-switch "myswitch" myvm1 docker-machine create -d hyperv --hyperv-virtual-switch "myswitch" myvm2 @@ -143,6 +145,8 @@ You now have two VMs created, named `myvm1` and `myvm2`. Use this command to list the machines and get their IP addresses. +> **Note**: you need to run the following as administrator or else you don't get any resonable output (only "UNKNOWN"). + ```shell docker-machine ls ```