-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisable-bullshit.cmd
227 lines (220 loc) · 9.63 KB
/
disable-bullshit.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
@echo off
whoami /priv | find "SeDebugPrivilege" > nul
if not errorlevel == 1 (goto habeadminrechte) else (goto braucheadminrechte)
:habeadminrechte
@echo on
@echo Adminrechte vorhanden.
@echo off
ping -n 5 localhost > NUL
goto deaktivieredienste
:end
:deaktivieredienste
@echo Deaktiviere Dienste
@echo off
::
:: Stoppe Diagnosenachverfolgungsdienst
::
echo ##################################################################
echo ## Stoppe Diagnosenachverfolgungsdienst
echo ##################################################################
@sc stop DiagTrack
if not errorlevel == 1 (echo Gestoppt) else (echo Dienst war nicht gestartet.)
ping -n 3 localhost > NUL
::
:: Deaktiviere Diagnosenachverfolgungsdienst
::
echo ##################################################################
echo ## Deaktiviere Diagnosenachverfolgungsdienst
echo ##################################################################
@sc config DiagTrack start= disabled
if not errorlevel == 1 (echo Deaktiviert) else (echo Fehler)
ping -n 3 localhost > NUL
::
:: Stoppe WAP Push-Nachrichtenroutingdienst
::
echo ##################################################################
echo ## Stoppe WAP Push-Nachrichtenroutingdienst
echo ##################################################################
@sc stop dmwappushservice
if not errorlevel == 1 (echo Gestoppt) else (echo Dienst war nicht gestartet.)
ping -n 3 localhost > NUL
::
:: Deaktiviere WAP Push-Nachrichtenroutingdienst
::
echo ##################################################################
echo ## Deaktiviere WAP Push-Nachrichtenroutingdienst
echo ##################################################################
@sc config dmwappushservice start= disabled
if not errorlevel == 1 (echo Deaktiviert) else (echo Fehler)
ping -n 3 localhost > NUL
::
:: Stoppe Windows Defender-Dienst
::
echo ##################################################################
echo ## Stoppe Windows Defender-Dienst
echo ##################################################################
@sc stop WinDefend
if not errorlevel == 1 (echo Gestoppt) else (echo Dienst war nicht gestartet.)
ping -n 3 localhost > NUL
::
:: Ende
::
goto registry
:end
:registry
::
:: Schalte Diagnose- und Nutzungsdaten in Registry ab
::
echo ##################################################################
echo ## Schalte Diagnose- und Nutzungsdaten in Registry ab
echo ##################################################################
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection /f /v AllowTelemetry /t REG_DWORD /d 0
ping -n 3 localhost > NUL
::
:: Schalte Suchleiste aus
::
echo ##################################################################
echo ## Schalte Suchleiste aus
echo ##################################################################
reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search /f /v SearchboxTaskbarMode /t REG_DWORD /d 0
ping -n 3 localhost > NUL
::
:: Schalte Werbungs-Id ab
::
echo ##################################################################
echo ## Schalte Werbungs-Id ab
echo ##################################################################
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo /f /v DisabledByGroupPolicy /t REG_DWORD /d 1
ping -n 3 localhost > NUL
::
:: Schalte SmartScreen ab
::
echo ##################################################################
echo ## Schalte SmartScreen ab
echo ##################################################################
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer /f /v SmartScreenEnabled /t REG_SZ /d Off
ping -n 3 localhost > NUL
::
:: Schalte Windows Defender aus
::
echo ##################################################################
echo ## Schalte Windows Defender aus
echo ##################################################################
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender" /f /v DisableAntiSpyware /t REG_DWORD /d 1
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender" /f /v DisableAntiVirus /t REG_DWORD /d 1
ping -n 3 localhost > NUL
::
:: Schalte OneDrive aus
::
echo ##################################################################
echo ## Schalte OneDrive aus
echo ##################################################################
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Onedrive" /f /v DisableLibrariesDefaultSaveToOneDrive /t REG_DWORD /d 1
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Onedrive" /f /v DisableFileSync /t REG_DWORD /d 1
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Onedrive" /f /v DisableMeteredNetworkFileSync /t REG_DWORD /d 1
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /f /v DisableLibrariesDefaultSaveToOneDrive /t REG_DWORD /d 1
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /f /v DisableFileSync /t REG_DWORD /d 1
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /f /v DisableMeteredNetworkFileSync /t REG_DWORD /d 1
ping -n 3 localhost > NUL
::
:: Schalte Updates P2P ab
::
echo ##################################################################
echo ## Schalte Updates P2P ab
echo ##################################################################
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config /f /v DODownloadMode /t REG_DWORD /d 0
ping -n 3 localhost > NUL
::
:: Schalte alte Lautstärkeregler ein
::
echo ##################################################################
echo ## Schalte alte Lautstärkeregler ein
echo ##################################################################
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\MTCUVC" /f /v EnableMtcUvc /t REG_DWORD /d 0
ping -n 3 localhost > NUL
::
:: Entferne Cortana aus Taskleistensuche
::
echo ##################################################################
echo ## Entferne Cortana aus Taskleistensuche
echo ##################################################################
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "CortanaEnabled" /t REG_DWORD /d 0 /f
ping -n 3 localhost > NUL
::
:: Schalte Cortana und BingSearch aus
::
echo ##################################################################
echo ## Schalte Cortana und BingSearch aus
echo ##################################################################
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d 0 /f
ping -n 3 localhost > NUL
::
:: Ende
::
goto uninstall
:end
:uninstall
echo ##################################################################
echo ## Deinstalliere 3d
echo ##################################################################
powershell -Command "Get-AppxPackage *3d* | Remove-AppxPackage"
echo ##################################################################
echo ## Deinstalliere Kamera
echo ##################################################################
powershell -Command "Get-AppxPackage *camera* | Remove-AppxPackage"
echo ##################################################################
echo ## Deinstalliere Mail und Kalender
echo ##################################################################
powershell -Command "Get-AppxPackage *communi* | Remove-AppxPackage"
echo ##################################################################
echo ## Deinstalliere Bing
echo ##################################################################
powershell -Command "Get-AppxPackage *bing* | Remove-AppxPackage"
echo ##################################################################
echo ## Deinstalliere Musik
echo ##################################################################
powershell -Command "Get-AppxPackage *zune* | Remove-AppxPackage"
echo ##################################################################
echo ## Deinstalliere Leute
echo ##################################################################
powershell -Command "Get-AppxPackage *people* | Remove-AppxPackage"
echo ##################################################################
echo ## Deinstalliere Telefon Zeugs
echo ##################################################################
powershell -Command "Get-AppxPackage *phone* | Remove-AppxPackage"
echo ##################################################################
echo ## Deinstalliere "Photos"
echo ##################################################################
powershell -Command "Get-AppxPackage *photo* | Remove-AppxPackage"
echo ##################################################################
echo ## Deinstalliere Solitär
echo ##################################################################
powershell -Command "Get-AppxPackage *solit* | Remove-AppxPackage"
echo ##################################################################
echo ## Deinstalliere Audio-Recorder
echo ##################################################################
powershell -Command "Get-AppxPackage *soundrec* | Remove-AppxPackage"
echo ##################################################################
echo ## Deinstalliere Xbox-App
echo ##################################################################
powershell -Command "Get-AppxPackage *xbox* | Remove-AppxPackage"
goto loescheundueberschreibe
:end
:loescheundueberschreibe
echo ##################################################################
echo ## Überschreibe Telemetriedaten
echo ##################################################################
taskkill /IM explorer.exe /F & explorer.exe
echo. >%programdata%\Microsoft\Diagnosis\ETLLogs\AutoLogger\AutoLogger-Diagtrack-Listener.etl
pause
goto :eof
:end
:braucheadminrechte
@echo on
@echo Diese Datei muss mit Adminrechten ausgefhrt werden!
@echo off
pause
goto :eof
:end
pause
exit