diff --git a/Fix-GPUTimeoutDetectionResponse.ps1 b/Fix-GPUTimeoutDetectionResponse.ps1 index 59921f1..6909bd2 100644 --- a/Fix-GPUTimeoutDetectionResponse.ps1 +++ b/Fix-GPUTimeoutDetectionResponse.ps1 @@ -14,7 +14,7 @@ If ( $TdrLevel -ne $ExistingTdrLevel ) { Write-Output "Changing TDR level to: ${TdrLevel}" [Microsoft.Win32.Registry]::SetValue($RegPath,'TdrLevel',$TdrLevel,[Microsoft.Win32.RegistryValueKind]::DWord) } Else { - Write-Output "TDR value is already set to ${TdrLevel}" + Write-Output "TDR level is already set to ${TdrLevel}" } # Get/set the TDR delay @@ -22,8 +22,8 @@ $ExistingTdrValue = [Microsoft.Win32.Registry]::GetValue($RegPath,'TdrDelay',2) If ( $TdrDelay -ne $ExistingTdrValue ) { # Setting TDR timeout to $TdrDelay seconds # Note: 2 = Default - Write-Output "Existing TDR value: ${ExistingTdrValue}" - Write-Output "Changing TDR value to: ${TdrDelay}" + Write-Output "Existing TDR delay: ${ExistingTdrValue}" + Write-Output "Changing TDR delay to: ${TdrDelay}" [Microsoft.Win32.Registry]::SetValue($RegPath,'TdrDelay',$TdrDelay,[Microsoft.Win32.RegistryValueKind]::DWord) } Else { Write-Output "TDR delay is already set to ${TdrDelay}"