Update Invoke-WinutilGPU.ps1 (#2594)

fixed low performance on intel hd
This commit is contained in:
YusufKhalifadev 2024-08-29 04:11:00 +03:00 committed by GitHub
parent be6b5b3aa0
commit 889ec8f57d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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