Skip to content

Commit f866195

Browse files
authored
Merge pull request #4904 from QuasarSE/patch-10
Update instance-metadata-service.md
2 parents a3047e3 + 0bf564b commit f866195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/virtual-machines/windows/instance-metadata-service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,13 +216,13 @@ curl -H Metadata:true "http://169.254.169.254/metadata/instance?api-version=2017
216216

217217
**Request**
218218

219-
Instance metadata can be retrieved in Windows via the PowerShell utility `curl`:
219+
Instance metadata can be retrieved in Windows via the `curl` program:
220220

221221
```bash
222222
curl -H @{'Metadata'='true'} http://169.254.169.254/metadata/instance?api-version=2017-08-01 | select -ExpandProperty Content
223223
```
224224
225-
Or through the `Invoke-RestMethod` cmdlet:
225+
Or through the `Invoke-RestMethod` PowerShell cmdlet:
226226
227227
```powershell
228228
Invoke-RestMethod -Headers @{"Metadata"="true"} -URI http://169.254.169.254/metadata/instance?api-version=2017-08-01 -Method get

0 commit comments

Comments
 (0)