mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 20:56:47 +00:00
22 lines
1.4 KiB
PowerShell
22 lines
1.4 KiB
PowerShell
################################################################################
|
|
## File: Configure-Diagnostics.ps1
|
|
## Desc: Disables Just-In-Time Debugger and Windows Error Reporting
|
|
################################################################################
|
|
|
|
Write-Host "Disable Just-In-Time Debugger"
|
|
|
|
# Turn off Application Error Debugger
|
|
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug" -Name Debugger -Value "-" -Type String -Force
|
|
New-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug" -Name Debugger -Value "-" -Type String -Force
|
|
|
|
# Turn off the Debug dialog
|
|
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\.NETFramework" -Name DbgManagedDebugger -Value "-" -Type String -Force
|
|
New-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\.NETFramework" -Name DbgManagedDebugger -Value "-" -Type String -Force
|
|
|
|
# Disable the WER UI
|
|
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\Windows Error Reporting" -Name DontShowUI -Value 1 -Type DWORD -Force
|
|
# Send all reports to the user's queue
|
|
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\Windows Error Reporting" -Name ForceQueue -Value 1 -Type DWORD -Force
|
|
# Default consent choice 1 - Always ask (default)
|
|
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\Windows Error Reporting\Consent" -Name DefaultConsent -Value 1 -Type DWORD -Force
|