From 103122c1e06f996308efe5a66c4bb73264ce569f Mon Sep 17 00:00:00 2001 From: David Yoder Date: Thu, 14 Sep 2023 13:02:35 -0400 Subject: [PATCH] initial commit --- Fix-GPUTimeoutDetectionResponse.ps1 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Fix-GPUTimeoutDetectionResponse.ps1 diff --git a/Fix-GPUTimeoutDetectionResponse.ps1 b/Fix-GPUTimeoutDetectionResponse.ps1 new file mode 100644 index 0000000..41e121e --- /dev/null +++ b/Fix-GPUTimeoutDetectionResponse.ps1 @@ -0,0 +1,4 @@ +#[Microsoft.Win32.Registry]::SetValue('HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers','TdrLevel',3,[Microsoft.Win32.RegistryValueKind]::DWord) + +# Setting TDR timeout to 4 seconds instead of the default 2 seconds +[Microsoft.Win32.Registry]::SetValue('HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers','TdrDelay',4,[Microsoft.Win32.RegistryValueKind]::DWord) \ No newline at end of file