Skip to content

Commit

Permalink
Fix wrong registry key introduced by cec0b4b
Browse files Browse the repository at this point in the history
  • Loading branch information
undergroundwires committed May 26, 2024
1 parent 592ca11 commit c9a19a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/application/collections/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4152,9 +4152,9 @@ actions:
call:
function: RunInlineCode
parameters:
code: reg add "HKCU\SOFTWARE\Microsoft\Personalization\Settings" /v "EnableActiveProbing" /t "AcceptedPrivacyPolicy" /d "0" /f
code: reg add "HKCU\SOFTWARE\Microsoft\Personalization\Settings" /v "AcceptedPrivacyPolicy" /t "REG_DWORD" /d "0" /f
revertCode: >- # Key exists with value "1" since Windows 10 21H2, Windows 11 22H2
reg add "HKCU\SOFTWARE\Microsoft\Personalization\Settings" /v "EnableActiveProbing" /t "AcceptedPrivacyPolicy" /d "1" /f
reg add "HKCU\SOFTWARE\Microsoft\Personalization\Settings" /v "AcceptedPrivacyPolicy" /t "REG_DWORD" /d "1" /f
-
name: Disable Windows feedback collection
recommend: standard
Expand Down

0 comments on commit c9a19a3

Please sign in to comment.