Compare commits

...

3 Commits

Author SHA1 Message Date
9233d934d3 Merge pull request #2 from og-mrk/function-improvement/invoke-winutilgpu-2024-06-27
Re-Formate 'Invoke-WinUtilGPU.ps1' Private Function to be Shorter
2024-06-27 04:01:45 +00:00
a75020f211 Re-Formate 'Invoke-WinUtilGPU.ps1' Private Function to be Shorter 2024-06-27 03:04:22 +03:00
cf6b4bdf3a Update Invoke-WinUtilGPU.ps1 2024-06-27 06:34:32 +08:00

View File

@ -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
}
}
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
if ($gpuName -like "*NVIDIA*" -OR
$gpuName -like "*AMD Radeon RX*") {
return $true
}
}
}