Skip to content

Commit a4ebec6

Browse files
authored
Merge pull request #3771 from ManikaDhiman/md-uuf-update-syntax
UUF: Update script syntax in the Environment Checker article
2 parents b6286c3 + 6369a3a commit a4ebec6

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

azure-local/manage/use-environment-checker.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: alkohli
55
ms.author: alkohli
66
ms.topic: how-to
77
ms.service: azure-local
8-
ms.date: 12/27/2024
8+
ms.date: 07/31/2025
99
---
1010

1111
# Evaluate the deployment readiness of your environment for Azure Local
@@ -413,17 +413,15 @@ Network validator also checks storage connection, adapter driver readiness, and
413413
You provide the answer file JSON as the input for network validator cmdlet call. Or you can manually provide the individual parameters when running the validator cmdlet.
414414

415415
> [!NOTE]
416-
> There is currently a limitation where the network validator can only be executed after the portal wizard has continued to the last step, just before the actual deployment starts.
417-
418-
> [!NOTE]
419-
> You must run the network validator on the final hardware that you want to use for the Azure local instance deployment.
416+
> - There is currently a limitation where the network validator can only be executed after the portal wizard has continued to the last step, just before the actual deployment starts.
417+
>- You must run the network validator on the final hardware that you want to use for the Azure local instance deployment.
420418
421419
### Run the network validator
422420

423421
To run the network validator locally on the Azure Local node with the answer file, use the following commands:
424422

425423
```powershell
426-
$allServers = "<ARRAY OF SERVERS' IP>" # you need to use IP for the connection
424+
$allServers = @("<ServerIP1>", "<ServerIP2>") # Replace with actual IP addresses
427425
$userName = "<LOCALADMIN>"
428426
$secPassWord = ConvertTo-SecureString "<LOCALADMINPASSWORD>" -AsPlainText -Force
429427
$hostCred = New-Object System.Management.Automation.PSCredential($userName, $secPassWord)

0 commit comments

Comments
 (0)