Skip to content

Commit 2faeb2d

Browse files
author
Strappazzon
committed
Updated to v1.3
- The script will now take care of the Tasks - The GITHUB link now will point directly to the Readme - Changed how the script writes its version - While performing the tasks, the colors will be reverted to the default ones
1 parent 77a2ba7 commit 2faeb2d

File tree

2 files changed

+37
-15
lines changed

2 files changed

+37
-15
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Credits:
88
- https://www.ghacks.net/2017/02/11/blocking-telemetry-in-windows-7-and-8-1/
99
- https://deskroll.com/blog/article.php?id=Privacy_In_Windows_7_%E2%80%93_How_To_Disable_Telemetry_Data_Collection
1010

11-
## Task Scheduler
11+
## Check Task Scheduler
1212
Press **Win + R**, type in `taskschd.msc` and hit enter. The Task Scheduler Library will show up.
13-
Expand **Task Scheduler Library > Microsoft > Windows**, now *disable* or *delete* (via right-click) the following tasks:
13+
Expand **Task Scheduler Library > Microsoft > Windows**. If there are any of the following tasks, *delete* them.
1414

1515
- Everything under "*Application Experience*"
1616
- Everything under "*Autochk*"
@@ -29,9 +29,9 @@ Expand **Task Scheduler Library > Microsoft > Windows**, now *disable* or *delet
2929
- Under "*IME*"
3030
- "*SQM data sender*"
3131

32-
## Windows Update
32+
## Hide the uninstalled Updates
3333
Press **Win + R**, type in `control` and hit enter. The Control Panel will show up.
34-
Navigate to **System and Security** > **Windows Update** and hide the following updates under Important and Optional updates:
34+
Navigate to **System and Security** > **Windows Update** and hide the following updates under **Important** and **Optional**:
3535

3636
- **KB3083324** Windows Update Client for Windows 7 and Windows Server 2008 R2: September 2015
3737
- **KB3065987** Windows Update Client for Windows 7 and Windows Server 2008 R2: July 2015
@@ -52,4 +52,4 @@ Navigate to **System and Security** > **Windows Update** and hide the following
5252
- **KB3123862** Updated capabilities to upgrade Windows 8.1 and Windows 7
5353
- **KB971033** Description of the update for Windows Activation Technologies
5454

55-
![Hide Updates](https://linx.li/selif/bv07i1ob.png)
55+
![Hide Updates](https://linx.li/selif/hideupdates.png)

teleme7ry.bat

+32-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
@echo off
2+
:init
23
title Teleme7ry
4+
set scriptver=1.3
5+
goto admin
36
:admin
47
echo.
58
echo Teleme7ry is detecting permissions...
69
ping 127.0.0.1 -n 3 > nul
710
net session >nul 2>&1
8-
if %errorLevel% == 0 (
9-
goto home
10-
) else (
11-
goto error
12-
)
11+
if %errorLevel% == 0 (goto home) else (goto error)
1312
goto admin
1413
:error
1514
cls
@@ -27,7 +26,7 @@ echo * *
2726
echo * WELCOME TO TELEME7RY *
2827
echo * *
2928
echo * Author: Strappazzon *
30-
echo * Version: v1.2 *
29+
echo * Version: v%scriptver% *
3130
echo * Source: https://github.com/Strappazzon/teleme7ry *
3231
echo * *
3332
echo * This script will disable telemetry in Windows 7 *
@@ -38,7 +37,8 @@ echo Before proceeding make sure that Windows Update DOES NOT install updates au
3837
echo The following actions will be performed:
3938
echo.
4039
echo - (Optional) A restore point will be created
41-
echo - The tasks related to telemetry will be stopped and deleted
40+
echo - The services related to telemetry will be stopped and deleted
41+
echo - The tasks related to telemetry will be deleted
4242
echo - The updates related to telemetry will be uninstalled
4343
echo - The domains\IPs used for telemetry will be blocked
4444
echo - (Prompt) Your computer will be restarted
@@ -49,8 +49,9 @@ if "%tel%"=="Y" goto restore
4949
goto home
5050
:restore
5151
cls
52+
color 07
5253
echo.
53-
echo TELEME7RY V1.2 IS RUNNING, PLEASE WAIT...
54+
echo TELEME7RY V%scriptver% IS RUNNING, PLEASE WAIT...
5455
echo =========================================
5556
ping 127.0.0.1 -n 2 > nul
5657
echo.
@@ -72,6 +73,26 @@ sc delete dmwappushservice
7273
ping 127.0.0.1 -n 1 > nul
7374
echo "" > C:\ProgramData\Microsoft\Diagnosis\ETLLogs\AutoLogger\AutoLogger-Diagtrack-Listener.etl
7475
echo.
76+
echo.
77+
echo DELETING THE TASKS...
78+
echo =========================================
79+
schtasks /delete /tn "\Microsoft\Windows\Application Experience\AitAgent" /f
80+
schtasks /delete /tn "\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /f
81+
schtasks /delete /tn "\Microsoft\Windows\Application Experience\ProgramDataUpdater" /f
82+
schtasks /delete /tn "\Microsoft\Windows\Autochk\Proxy" /f
83+
schtasks /delete /tn "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /f
84+
schtasks /delete /tn "\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /f
85+
schtasks /delete /tn "\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" /f
86+
schtasks /delete /tn "\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" /f
87+
schtasks /delete /tn "\Microsoft\Windows\Maintenance\WinSAT" /f
88+
schtasks /delete /tn "\Microsoft\Windows\CloudExperienceHost\CreateObjectTask" /f
89+
schtasks /delete /tn "\Microsoft\Windows\NetTrace\GatherNetworkInfo" /f
90+
schtasks /delete /tn "\Microsoft\Windows\Shell\FamilySafetyMonitor" /f
91+
schtasks /delete /tn "\Microsoft\Windows\Shell\FamilySafetyRefresh" /f
92+
schtasks /delete /tn "\Microsoft\Windows\IME\SQM data sender" /f
93+
echo.
94+
echo Operation completed.
95+
echo.
7596
echo UNINSTALLING THE UPDATES...
7697
echo This will take a while, please wait.
7798
echo =========================================
@@ -540,19 +561,20 @@ ipconfig /flushdns
540561
timeout /t -1
541562
:end
542563
cls
564+
color 3f
543565
echo.
544566
echo TELEME7RY HAS COMPLETED ALL THE TASKS.
545567
echo =========================================
546568
echo To continue choose what you want to do now:
547569
echo.
570+
echo GITHUB: (Recommended) See additional instructions to remove any leftovers
548571
echo RESTART: (Recommended) Restarts the computer
549572
echo QUIT: (Not recommended) Quits the script without restarting the computer
550-
echo GITHUB: (Internet) See additional instructions to remove any leftovers
551573
echo.
552574
set /p end=TYPE AN OPTION:
575+
if "%end%"=="GITHUB" start https://github.com/Strappazzon/teleme7ry/blob/master/README.md#teleme7ry
553576
if "%end%"=="RESTART" goto restart
554577
if "%end%"=="QUIT" goto norestart
555-
if "%end%"=="GITHUB" start https://github.com/Strappazzon/teleme7ry
556578
goto end
557579
:restart
558580
cls

0 commit comments

Comments
 (0)