Skip to content

Instantly share code, notes, and snippets.

@VictorieeMan
Last active January 7, 2023 12:34
Show Gist options
  • Save VictorieeMan/834df6b72c73369a43497cfd432c8218 to your computer and use it in GitHub Desktop.
Save VictorieeMan/834df6b72c73369a43497cfd432c8218 to your computer and use it in GitHub Desktop.
How to deactivate Telemetry on Windows 10

How to deactivate Telemetry on Windows 10

Method 1

win + R

gpedit.msc
Computer Configuration > Administrative Templates > Windows Components > Data Collection and Preview Builds

Double click: "Allow Telemetry" and alter the setting from "Not Configured" to "Disabled". Results show after restart.

Method 2

From admin cmd (command prompt)

sc config DiagTrack start= disabled
sc config dmwappushservice start= disabled

Results show after restart.

References

MUD - Make Use Of: https://www.makeuseof.com/windows-10-11-disable-telemetry/

According to makeuseof.com article:

Is It Safe to Disable Telemetry? Yes, there are no inherent risks to disabling telemetry. Microsoft uses telemetry to collect data from users with a goal to improve user experience with future updates.

DiagTrack: https://yoodley.com/diagtrack/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment