From bc33eedf19489f1d3f4f84493624147569bc5104 Mon Sep 17 00:00:00 2001 From: David Yoder Date: Mon, 28 Nov 2022 14:30:29 -0500 Subject: [PATCH] remove AMD for enabling gpu scheduling --- Fix-EnableGPUScheduling.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fix-EnableGPUScheduling.ps1 b/Fix-EnableGPUScheduling.ps1 index c96c73b..c729674 100644 --- a/Fix-EnableGPUScheduling.ps1 +++ b/Fix-EnableGPUScheduling.ps1 @@ -21,7 +21,7 @@ If ( $HardwareGPUSchedulingEnabled -eq $false ) { $GPUs = (Get-WmiObject Win32_VideoController).Name $FoundDiscreteGPU = $false ForEach ( $gpu in $GPUs ) { - If ( ($gpu -ilike "*NVIDIA*") -or ($gpu -ilike "*AMD*") ) { + If ( $gpu -ilike "*NVIDIA*" ) { $FoundDiscreteGPU = $true } }