Skip to content

Commit 75e75d2

Browse files
authored
Merge pull request #16177 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-stack-docs (branch main)
2 parents e1d287f + 504db9d commit 75e75d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Install the Azure Stack HCI, version 23H2 operating system locally on each serve
7373
On each host machine, navigate to **Control Panel > Add or Remove programs**, uninstall the NVIDIA host driver, then reboot the machine. After the machine reboots, confirm that the driver was successfully uninstalled. Open an elevated PowerShell terminal and run the following command:
7474

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

7979
You should see the GPU devices appear in an error state as shown in this example output:
@@ -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)