2023-09-14 13:02:35 -04:00
|
|
|
#[Microsoft.Win32.Registry]::SetValue('HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers','TdrLevel',3,[Microsoft.Win32.RegistryValueKind]::DWord)
|
|
|
|
|
|
2023-09-14 15:01:00 -04:00
|
|
|
# Setting TDR timeout to 64 seconds instead of the default 2 seconds
|
2023-09-14 15:00:27 -04:00
|
|
|
Write-Output "Setting TDR timeout value to 64 seconds"
|
2023-09-14 15:00:03 -04:00
|
|
|
[Microsoft.Win32.Registry]::SetValue('HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers','TdrDelay',64,[Microsoft.Win32.RegistryValueKind]::DWord)
|