Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit 7bbac92

Browse files
Install Audio driver for AMD V520
1 parent 8fa5c3f commit 7bbac92

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

PostInstall/PostInstall.ps1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ function gpu-update-shortcut {
728728
Function provider-specific {
729729
ProgressWriter -Status "Installing Audio Driver if required and removing system information from appearing on Google Cloud Desktops" -PercentComplete $PercentComplete
730730
#Device ID Query
731-
$gputype = get-wmiobject -query "select DeviceID from Win32_PNPEntity Where (deviceid Like '%PCI\\VEN_10DE%') and (PNPClass = 'Display' or Name = '3D Video Controller')" | Select-Object DeviceID -ExpandProperty DeviceID
731+
$gputype = get-wmiobject -query "select DeviceID from Win32_PNPEntity Where (deviceid like '%PCI\VEN_10DE%' or deviceid Like '%PCI\VEN_1002%') and (PNPClass = 'Display' or Name like '%Video Controller')" | Select-Object DeviceID -ExpandProperty DeviceID
732732
if ($gputype -eq $null) {
733733
}
734734
Else {
@@ -768,6 +768,10 @@ Function provider-specific {
768768
#Quadro M2000
769769
AudioInstall
770770
}
771+
Elseif($gputype.substring(13,8) -eq "DEV_7362") {
772+
#AMD V520
773+
AudioInstall
774+
}
771775
Else {
772776
}
773777
}

0 commit comments

Comments
 (0)