mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-07-01 10:32:35 -05:00
Compare commits
3 Commits
24.08.30
...
9233d934d3
Author | SHA1 | Date | |
---|---|---|---|
9233d934d3 | |||
a75020f211 | |||
cf6b4bdf3a |
@ -1,29 +1,24 @@
|
||||
function Invoke-WinUtilGPU {
|
||||
$gpuInfo = Get-CimInstance Win32_VideoController
|
||||
|
||||
|
||||
# GPUs to blacklist from using Demanding Theming
|
||||
foreach ($gpu in $gpuInfo) {
|
||||
$gpuName = $gpu.Name
|
||||
if ($gpuName -like "*NVIDIA*") {
|
||||
return $true # NVIDIA GPU found
|
||||
if ($gpuName -like "*NVIDIA GeForce*M*" -OR
|
||||
$gpuName -like "*NVIDIA GeForce*Laptop*" -OR
|
||||
$gpuName -like "*NVIDIA GeForce*GT*" -OR
|
||||
$gpuName -like "*AMD Radeon(TM)*" -OR
|
||||
$gpuName -like "*UHD*") {
|
||||
return $false
|
||||
}
|
||||
}
|
||||
|
||||
# GPUs to whitelist on using Demanding Theming
|
||||
foreach ($gpu in $gpuInfo) {
|
||||
$gpuName = $gpu.Name
|
||||
if ($gpuName -like "*AMD Radeon RX*") {
|
||||
return $true # AMD GPU Found
|
||||
if ($gpuName -like "*NVIDIA*" -OR
|
||||
$gpuName -like "*AMD Radeon RX*") {
|
||||
return $true
|
||||
}
|
||||
}
|
||||
foreach ($gpu in $gpuInfo) {
|
||||
$gpuName = $gpu.Name
|
||||
if ($gpuName -like "*UHD*") {
|
||||
return $false # Intel Intergrated GPU Found
|
||||
}
|
||||
}
|
||||
foreach ($gpu in $gpuInfo) {
|
||||
$gpuName = $gpu.Name
|
||||
if ($gpuName -like "*AMD Radeon(TM)*") {
|
||||
return $false # AMD Intergrated GPU Found
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user