Skip to content

Commit

Permalink
fix: configure drivers error reporting (wer)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyueta committed Aug 9, 2023
1 parent 973abb6 commit 556444b
Showing 1 changed file with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Disable Windows Error Reporting
description: Disables Windows Error Reporting fo privacy and QoL
description: Disables Windows Error Reporting for privacy and QoL
privilege: TrustedInstaller
actions:
# https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.InternetCommunicationManagement::PCH_DoNotReport
Expand All @@ -19,3 +19,17 @@ actions:
value: 'Disabled'
data: '1'
type: REG_DWORD

# Do not send a Windows error report when a generic driver is installed on a device
- !registryValue:
path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Settings'
value: 'DisableSendGenericDriverNotFoundToWER'
data: '1'
type: REG_DWORD

# Prevent Windows from sending an error report when a device driver requests additional software during installation
- !registryValue:
path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Settings'
value: 'DisableSendRequestAdditionalSoftwareToWER'
data: '1'
type: REG_DWORD

0 comments on commit 556444b

Please sign in to comment.