From 6db6437652d795111c3be70bae716375be6a431b Mon Sep 17 00:00:00 2001 From: aetter Date: Wed, 17 Feb 2021 18:40:39 -0800 Subject: [PATCH] Add double quotes for Windows commands --- docs/install/windows.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install/windows.md b/docs/install/windows.md index d2d555ac..f0b0f4f1 100644 --- a/docs/install/windows.md +++ b/docs/install/windows.md @@ -83,8 +83,8 @@ Installing Open Distro for Elasticsearch as a Windows service lets it run in the After you start Open Distro for Elasticsearch, open a new command prompt window. Then send requests to the server to verify that it is up and running: ``` -curl -XGET https://localhost:9200 -u admin:admin --insecure -curl -XGET https://localhost:9200/_cat/plugins?v -u admin:admin --insecure +curl -XGET https://localhost:9200 -u "admin:admin" --insecure +curl -XGET https://localhost:9200/_cat/plugins?v -u "admin:admin" --insecure ``` You must have [curl](https://curl.haxx.se/windows/) installed for these commands to work. Alternatives include [Invoke-RestMethod](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/invoke-restmethod?view=powershell-6) (only PowerShell 6 and later support the `-SkipCertificateCheck` flag) and [Postman](https://www.getpostman.com/downloads/).