Skip to content

Commit

Permalink
feat(privacy): Office/NVIDIA telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
he3als committed Jul 15, 2024
1 parent 9b3dca6 commit 121771c
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/playbook/Configuration/tweaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ actions:
- !task: {path: 'tweaks\privacy\disallow-user-activity-upload.yml'}
- !task: {path: 'tweaks\privacy\search-settings.yml'}

# -------------------------------------------------------------------------- #
# privacy\apps #
# -------------------------------------------------------------------------- #
- !task: {path: 'tweaks\privacy\apps\disable-nvidia-telemetry.yml'}
- !task: {path: 'tweaks\privacy\apps\disable-office-telemetry.yml'}

# -------------------------------------------------------------------------- #
# privacy\advertising #
# -------------------------------------------------------------------------- #
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: Disable NVIDIA Control Panel Telemetry
description: Disables NVIDIA Control Panel telemetry for privacy
actions:
- !registryValue:
path: 'HKCU\Software\NVIDIA Corporation\NVControlPanel2\Client'
value: 'OptInOrOutPreference'
data: '0'
type: REG_DWORD
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: Disable Office Telemetry
description: Disables Microsoft Office telemetry for privacy
actions:
- !registryValue:
path: 'HKCU\Software\Policies\Microsoft\office\16.0\common'
value: 'sendcustomerdata'
data: '0'
type: REG_DWORD
- !registryValue:
path: 'HKCU\Software\Policies\Microsoft\office\common\clienttelemetry'
value: 'sendtelemetry'
data: '3'
type: REG_DWORD
# Customer Experience Program
- !registryValue:
path: 'HKCU\Software\Policies\Microsoft\office\16.0\common'
value: 'qmenable'
data: '0'
type: REG_DWORD

0 comments on commit 121771c

Please sign in to comment.