From 7a74b393efc1d2330f4ddddd050e3e15ee6f7555 Mon Sep 17 00:00:00 2001 From: Przemek Grondek Date: Sun, 30 Apr 2023 23:21:10 +0200 Subject: [PATCH] Add privacy --- src/Configuration/custom.yml | 1 + src/Configuration/features/lite/privacy.yml | 82 +++++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 src/Configuration/features/lite/privacy.yml diff --git a/src/Configuration/custom.yml b/src/Configuration/custom.yml index f321239..e4837dd 100644 --- a/src/Configuration/custom.yml +++ b/src/Configuration/custom.yml @@ -7,3 +7,4 @@ features: - features\lite\dark-mode.yml - features\lite\one-drive.yml - features\lite\default-apps.yml + - features\lite\privacy.yml diff --git a/src/Configuration/features/lite/privacy.yml b/src/Configuration/features/lite/privacy.yml new file mode 100644 index 0000000..a55f43b --- /dev/null +++ b/src/Configuration/features/lite/privacy.yml @@ -0,0 +1,82 @@ +--- +title: Privacy settings +description: Enable more privacy +privilege: TrustedInstaller +actions: + - !registryValue: + path: 'HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Policies\DataCollection' + value: 'AllowTelemetry' + data: '0' + type: REG_DWORD + - !registryValue: + path: 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection' + value: 'AllowTelemetry' + data: '0' + type: REG_DWORD + - !registryValue: + path: 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection' + value: 'MaxTelemetryAllowed' + data: '0' + type: REG_DWORD + - !registryValue: + path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection' + value: 'AllowCommercialDataPipeline' + data: '0' + type: REG_DWORD + - !registryValue: + path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection' + value: 'AllowDesktopAnalyticsProcessing' + data: '0' + type: REG_DWORD + - !registryValue: + path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection' + value: 'AllowDeviceNameInTelemetry' + data: '0' + type: REG_DWORD + - !registryValue: + path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection' + value: 'DisableEnterpriseAuthProxy' + data: '1' + type: REG_DWORD + - !registryValue: + path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection' + value: 'DisableTelemetryOptInChangeNotification' + data: '1' + type: REG_DWORD + - !registryValue: + path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection' + value: 'DisableTelemetryOptInSettingsUx' + data: '1' + type: REG_DWORD + - !registryValue: + path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection' + value: 'EnableOneSettingsAuditing' + data: '0' + type: REG_DWORD + - !registryValue: + path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection' + value: 'LimitEnhancedDiagnosticDataWindowsAnalytics' + data: '0' + type: REG_DWORD + - !registryValue: + path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection' + value: 'MicrosoftEdgeDataOptIn' + data: '0' + type: REG_DWORD + - !registryValue: + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack' + value: 'ShowedToastAtLevel' + data: '1' + type: REG_DWORD + + # Disable Diagnostic Tracking + - !registryValue: + path: 'HKLM\SYSTEM\CurrentControlSet\Control\Diagnostics\Performance' + value: 'DisableDiagnosticTracing' + data: '1' + type: REG_DWORD + - !registryValue: + path: 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Settings\FindMyDevice' + value: 'LocationSyncEnabled' + data: '0' + type: REG_DWORD