Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. rem @echo off
  2. echo Remove the scary telemetry updates
  3. set kbs=971033, 2505438, 2506928, 2545698, 2592687, 2660075, 2670838, 2726535, 2876229, 2882822, 2902907, 2952664, 2970228, 2976978, 2977759, 2990214, 2994023, 3012973, 3015249, 3021917, 3022345, 3035583, 3042058, 3044374, 3050265, 3050267, 3064683, 3065987, 3065988, 3068708, 3072318, 3074677, 3075249, 3075851, 3075853, 3080149, 3081437, 3081454, 3081954, 3083324, 3083325, 3083710, 3083711, 3086255, 3088195, 3090045, 3093983, 3102810, 3102812, 3107998, 3112336, 3112343
  4. 4
  5. for %%i in (%kbs%) do (
  6. echo Removing [KB%%i]
  7. wusa /uninstall /kb:%%i /norestart /quiet
  8. )
  9.  
  10.  
  11. echo Processing Services
  12. echo Remove "Diagnostic Tracking Service"
  13. sc stop "diagtrack"
  14. sc delete "diagtrack"
  15.  
  16. echo Disable "Remote Registry Service"
  17. sc stop "RemoteRegistry"
  18. sc config "RemoteRegistry" start= disabled
  19.  
  20. echo "Remove Adobe Acrobat update service"
  21. sc stop "AdobeARMservice"
  22. sc delete "AdobeARMservice"
  23.  
  24. echo Remove "Adobe" updaters
  25. schtasks /query /fo csv | grep -i "adobeaamupdater" | cut -d "," -f 1 | for /f "tokens=1" %%i in ('cat') do schtasks /delete /tn %%i /f
  26.  
  27. echo Processing Task Scheduler Library:
  28. echo Everything under "Application Experience"
  29. schtasks /change /disable /tn "\Microsoft\Windows\Application Experience\ProgramDataUpdater"
  30. schtasks /change /disable /tn "\Microsoft\Windows\Application Experience\AitAgent"
  31. schtasks /change /disable /tn "\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser"
  32. schtasks /change /disable /tn "\Microsoft\Windows\Application Experience\StartupAppTask"
  33.  
  34. echo Everything under "Autochk"
  35. schtasks /change /disable /tn "\Microsoft\Windows\Autochk\Proxy"
  36.  
  37. echo Everything under "Customer Experience Improvement Program"
  38. schtasks /change /disable /tn "\Microsoft\Windows\Customer Experience Improvement Program\BthSQM"
  39. schtasks /change /disable /tn "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator"
  40. schtasks /change /disable /tn "\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask"
  41. schtasks /change /disable /tn "\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip"
  42.  
  43. echo Under "Disk Diagnostic" only the "Microsoft-Windows-DiskDiagnosticDataCollector"
  44. schtasks /change /disable /tn "\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector"
  45.  
  46. echo Under "Maintenance" "WinSAT"
  47. schtasks /change /disable /tn "\Microsoft\Windows\Maintenance\WinSAT"
  48.  
  49. echo Under "Microsoft Office"
  50. schtasks /change /disable /tn "\Microsoft\Office\Office ClickToRun Service Monitor"
  51. schtasks /change /disable /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack"
  52. schtasks /change /disable /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn"
  53.  
  54. echo "Media Center" and click the "status" column, then select all non-disabled entries and disable them.
  55. schtasks /change /disable /tn "\Microsoft\Windows\Media Center\mcupdate"
  56. echo *services.msc:
  57.  
  58.  
  59. echo Suggest you restart your machine at the earliest opportunity.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement