Skip to content

Instantly share code, notes, and snippets.

@angelwingss
Forked from ave9858/Telemetry.md
Created August 26, 2025 17:01
Show Gist options
  • Save angelwingss/a7acb40ec2fb89a8e93ced2d0994cc1d to your computer and use it in GitHub Desktop.
Save angelwingss/a7acb40ec2fb89a8e93ced2d0994cc1d to your computer and use it in GitHub Desktop.

Easy Telemetry Disable for 10/11

Prerequisites

  1. Upgrade to Enterprise edition of Windows 10/11 if you are running Home or Pro.
    • You can do this through the Change Edition option in the Extras menu in MAS.

Disabling Telemetry via Group Policy

  1. Open the Group Policy Editor. Search for "Edit Group Policy" in search or run gpedit.msc.

  2. In the Group Policy Editor, navigate to the following path: Computer Configuration -> Administrative Templates -> Windows Components -> Data Collection and Preview Builds

  3. Double-click on Allow Telemetry (Windows 10) or Allow Diagnostic Data (Windows 11) in the right pane.

  4. In the properties window, select Enabled. Then select Security [Enterprise Only] (Win10) or Diagnostic data off (Win11), which disables all telemetry.

  5. Select OK. Telemetry should now be disabled.

Optional: Disable Windows Error Reporting

While disabling telemetry should be enough to prevent diagnostic data from being sent to Microsoft, to be extra safe you can also explicitly disable Windows Error Reporting:

  1. In the Group Policy Editor, navigate to: Computer Configuration -> Administrative Templates -> Windows Components -> Windows Error Reporting

  2. Double-click on Disable Windows Error Reporting in the right pane.

  3. Select Enabled and click OK.

Verify the Changes

To verify that the changes have been applied, you can check the registry.

  1. Open regedit.
  2. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection.
  3. On the right side, you should see AllowTelemetry with a value of 0. This means that telemetry has been disabled.
  4. For Error Reporting, check HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting. The Disabled value should be set to 1.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment