Skip to content

Commit c43a31d

Browse files
Update deploy-gpu-node-pool.md
The findstr cmdlet crops the output making the instanceid not visible. Using Powershell native cmdlets shows the instanceid and allows the readers to actually copy it.
1 parent 295bd83 commit c43a31d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
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:

0 commit comments

Comments
 (0)