Skip to content

Commit ab0ef38

Browse files
Update deploy-gpu-node-pool.md
Updated more powershell cmdlets to be consistent.
1 parent c43a31d commit ab0ef38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AKS-Hybrid/deploy-gpu-node-pool.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Dismount-VMHostAssignableDevice -LocationPath $lp1 -Force
9999
To confirm that the GPUs were correctly dismounted from the host, run the following command. You should put GPUs in an `Unknown` state:
100100

101101
```powershell
102-
Get-PnpDevice | select status, class, friendlyname, instanceid | findstr /i /c:"3d video"
102+
Get-PnpDevice | select status, class, friendlyname, instanceid | where {$_.friendlyname -eq "3D Video Controller"}
103103
```
104104

105105
```output
@@ -131,7 +131,7 @@ pnputil /scan-devices
131131
After you install the mitigation driver, the GPUs are listed in the **OK** state under **Nvidia A2_base - Dismounted**:
132132

133133
```powershell
134-
Get-PnpDevice | select status, class, friendlyname, instanceid | findstr /i /c:"nvidia"
134+
Get-PnpDevice | select status, class, friendlyname, instanceid | where {$_.friendlyname -match "Nvidia"}"
135135
```
136136

137137
```output

0 commit comments

Comments
 (0)