Update Invoke-WinutilGPU.ps1

fixed low performance on intel hd
This commit is contained in:
YusufKhalifadev 2024-08-20 16:28:23 +03:00
parent 2748767a47
commit 4ffa1e5b02

View File

@ -7,7 +7,9 @@ function Invoke-WinUtilGPU {
"*NVIDIA GeForce*Laptop*",
"*NVIDIA GeForce*GT*",
"*AMD Radeon(TM)*",
"*Intel(R) HD Graphics*",
"*UHD*"
)
foreach ($gpu in $gpuInfo) {
@ -18,4 +20,4 @@ function Invoke-WinUtilGPU {
}
}
return $true
}
}