Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.

Commit 6db6437

Browse files
committed
Add double quotes for Windows commands
1 parent 6a246eb commit 6db6437

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/install/windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ Installing Open Distro for Elasticsearch as a Windows service lets it run in the
8383
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:
8484

8585
```
86-
curl -XGET https://localhost:9200 -u admin:admin --insecure
87-
curl -XGET https://localhost:9200/_cat/plugins?v -u admin:admin --insecure
86+
curl -XGET https://localhost:9200 -u "admin:admin" --insecure
87+
curl -XGET https://localhost:9200/_cat/plugins?v -u "admin:admin" --insecure
8888
```
8989

9090
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/).

0 commit comments

Comments
 (0)