forked from bmrf/tron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
6210 lines (5135 loc) · 244 KB
/
changelog.txt
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#############
# CHANGELOG #
#############
Legend:
+ Addition - Removal * Update/improvement
. No change ! Bug fix / Change (non bug-fix)
Version number legend:
x.x.x
| | |
| | program/definition update, minor change or bugfix (critical or regular)
| regular release or feature change
major release or feature change
########################
# v8.8.1 // 2016-03-19 #
########################
tron.bat v8.8.1
/ prep:f8_key_enable: Move enabling of F8 key on bootup to after config dump section. Thanks to /u/toomasmolder
! prep:usage_message: Add missing -np switch from help text. Thanks to /u/toomasmolder
/ prep:usage_message: Reword explanation of -r switch to more clearly explain action taken. Thanks to /u/toomasmolder
Stage 0: Prep
. stage_0_prep.bat v1.0.6
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
* McAfee Stinger v12.1.0.1963
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.0
. CCleaner v5.15.5513
. BleachBit v1.10
. finddupe.exe v1.23
* TempFileCleanup v1.1.0-TRON
+ Add clearing of hidden low-level IE history folder for "untrusted" browsing history "C:\Users\%username%\AppData\Local\Microsoft\Windows\History\low\*"
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.3
. \oem\programs_to_target_by_name.txt
* \oem\programs_to_target_by_GUID.bat
* \oem\toolbars_BHOs_to_target_by_GUID.bat
- \oem\misc_other_programs_to_target.bat // REMOVED
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
. \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
* stage_4_repair.bat v1.0.7
+ Add job "Disable Windows 10 Upgrade" which flips all the registry bits to disable the Win10 upgrade nagger stuff on Win7/8/8.1. Thanks to /u/ichbinsilky
/ Rename "purge_windows_telemetry" folder to "disable_windows_telemetry"
/ Shunt some upgrade-related entries out of "disable_telemetry_registry_entries.reg" into "disable_windows_10_upgrade_registry_entries.reg"
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.3
. 7-Zip v15.14 (multi-language)
. Adobe Flash Player v21.0.0.182 (language ignored)
. Adobe Reader v11.0.15 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u74 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.2
. smartctl v6.4.0 2015-06-04 r4109
. Defraggler v2.20.989
Stage 7: Wrap-up
. SwithMail.exe v2.1.5.0
Stage 8: Manual tools
. .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
* AdwCleaner v5.1.0.2
. Autoruns v13.51
. BlueScreenView v1.55
. ComboFix v16.3.19.1
* Junkware Removal Tool v8.0.4.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. Remote Support Reboot Config v1.0.0
. Safe Mode Boot Selector.bat v1.0.0
. ServicesRepair v1.0.0.3
. Tron Reset Tool v1.0.0
. UserBenchMark v2.6.0.0
########################
# v8.8.0 // 2016-03-13 #
########################
tron.bat v8.8.0
* prep:directory_check: Expand list of prevented execution locations to include %SystemDrive%\TEMP since this also gets wiped. Thanks to /u/toomasmolder
* smartctl_disk_check: Improve non-standard disk (SSD, error, Virtual Machine) detection code. Thanks to /u/ixnyne
* smart_disk_check: Improve SMART disk check code. Thanks to /u/ixnyne
Stage 0: Prep
. stage_0_prep.bat v1.0.6
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
. McAfee Stinger v12.1.0.1926
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.0
* CCleaner v5.15.5513
- Remove 64-bit CCleaner binary since it's not necessary. Thanks to /u/Nolzi and /u/ixnyne
. BleachBit v1.10
. finddupe.exe v1.23
* TempFileCleanup v1.0.9-TRON
- Remove /s (recurse) switch from 'del /F /Q "%%x\Documents\*.tmp"' and 'del /F /Q "%%x\My Documents\*.tmp"' commands.
/u/toomasmolder reported this deleted some .tmplate files (unintended behavior)
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.3
. \oem\programs_to_target_by_name.txt
. \oem\programs_to_target_by_GUID.bat
. \oem\toolbars_BHOs_to_target_by_GUID.bat
. \oem\misc_other_programs_to_target.bat // Not called (currently unused)
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
. \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
+ Add KB 3146449 to list of updates to remove. Thanks to /u/MirageESO
. stage_4_repair.bat v1.0.6
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
* stage_5_patch.bat v1.1.3
! Fix bug where 7ZIP_DETECTED variable would never get set because it started with a number. Rename to SEVENZIP_DETECTED. Thanks to /u/toomasmolder
/ Change some comments inside parentheses to use REM instead of ::. Thanks to /u/toomasmolder
. 7-Zip v15.14 (multi-language)
* Adobe Flash Player v21.0.0.182 (language ignored)
* Adobe Reader v11.0.15 (English-only; replace with your language version if necessary)
+ Add code to delete Start Menu link and another auto-run entry. Thanks to /u/sofakingdead
. Java Runtime Environment 8u74 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.2
. smartctl v6.4.0 2015-06-04 r4109
. Defraggler v2.20.989
Stage 7: Wrap-up
. SwithMail.exe v2.1.5.0
Stage 8: Manual tools
. .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
. AdwCleaner v5.1.0.1
. Autoruns v13.51
. BlueScreenView v1.55
* ComboFix v16.3.7.1
. Junkware Removal Tool v8.0.3.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. Remote Support Reboot Config v1.0.0
. Safe Mode Boot Selector.bat v1.0.0
. ServicesRepair v1.0.0.3
. Tron Reset Tool v1.0.0
. UserBenchMark v2.6.0.0
########################
# v8.7.0 // 2016-02-24 #
########################
tron.bat v8.7.0
. No changes to tron.bat; increment version number only
Stage 0: Prep
. stage_0_prep.bat v1.0.6
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
* McAfee Stinger v12.1.0.1926
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.0
* CCleaner v5.15.5513
. BleachBit v1.10
. finddupe.exe v1.23
. TempFileCleanup v1.0.7-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.3
. \oem\programs_to_target_by_name.txt
. \oem\programs_to_target_by_GUID.bat
. \oem\toolbars_BHOs_to_target_by_GUID.bat
. \oem\misc_other_programs_to_target.bat // Not called (currently unused)
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
. \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
* Telemetry-related (Win7-10):
+ Add additional telemetry and Win10 upgrade KB entries. Thanks to /u/kronflux
! OS version check: Replace "pause" command with "ping 127.0.0.1 -n 60 >NUL". This should protect against invalid results permanently stalling the script, and instead abort after 60 seconds
* OS version check: Log a short message to the log file if version check fails. This way we know why the script aborted. Thanks to everyone who helped troubleshoot this
. stage_4_repair.bat v1.0.6
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.2
. 7-Zip v15.14 (multi-language)
. Adobe Flash Player v20.0.0.306 (language ignored)
. Adobe Reader v11.0.14 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u74 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.2
. smartctl v6.4.0 2015-06-04 r4109
. Defraggler v2.20.989
Stage 7: Wrap-up
. SwithMail.exe v2.1.5.0
Stage 8: Manual tools
. .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
* AdwCleaner v5.0.3.6
. Autoruns v13.51
. BlueScreenView v1.55
* ComboFix v16.2.23.1
. Junkware Removal Tool v8.0.3.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. Remote Support Reboot Config v1.0.0
. Safe Mode Boot Selector.bat v1.0.0
. ServicesRepair v1.0.0.3
. Tron Reset Tool v1.0.0
. UserBenchMark v2.6.0.0
########################
# v8.6.2 // 2016-02-19 #
########################
tron.bat v8.6.2
- No changes to tron.bat; just a maintenance release
Stage 0: Prep
* stage_0_prep.bat v1.0.6
* Expand 24 hour cooldown timer removal on system restore snapshots to include Windows 7/Server 2008 R2
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
. McAfee Stinger v12.1.0.1912
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.0
. CCleaner v5.14.5493
. BleachBit v1.10
. finddupe.exe v1.23
. TempFileCleanup v1.0.7-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.3
* \oem\programs_to_target_by_name.txt
+ Add DriverUpdate by SlimWare Utilities (scareware). Thanks to /u/staticextasy
* \oem\programs_to_target_by_GUID.bat
+ Add CyberLink MediaStory. Thanks to /u/kronflux
. \oem\toolbars_BHOs_to_target_by_GUID.bat
. \oem\misc_other_programs_to_target.bat // Not called (currently unused)
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
. \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
+ Windows 7/8/8.1: Add KB 3123862 to list of updates to remove and block. Thanks to /u/MirageESO
. stage_4_repair.bat v1.0.6
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.2
. 7-Zip v15.14 (multi-language)
. Adobe Flash Player v20.0.0.306 (language ignored)
. Adobe Reader v11.0.14 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u74 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.2
. smartctl v6.4.0 2015-06-04 r4109
. Defraggler v2.20.989
Stage 7: Wrap-up
. SwithMail.exe v2.1.5.0
Stage 8: Manual tools
. .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
* AdwCleaner v5.0.3.5
. Autoruns v13.51
. BlueScreenView v1.55
* ComboFix v16.2.19.1
* Junkware Removal Tool v8.0.3.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. Remote Support Reboot Config v1.0.0
. Safe Mode Boot Selector.bat v1.0.0
. ServicesRepair v1.0.0.3
. Tron Reset Tool v1.0.0
. UserBenchMark v2.6.0.0
########################
# v8.6.1 // 2016-02-11 #
########################
tron.bat v8.6.1
+ stage_7_wrap-up:systemrestore: Add post-run System Restore point to match the one we create in Stage 0: Prep
/ tron.bat:logging: Condense some code that wiped the log file when starting a new run
/ nothingtoseehere: Other stuff that definitely isn't related to installing the new botnet
Stage 0: Prep
* stage_0_prep.bat v1.0.5
+ Win8 and up: Remove 24 hour cooldown timer on System Restore point creation (added by Microsoft starting in Win8). We can now create a
pre/post system restore point pair
! Win8 and up: Enable System Restore prior to attempting to create restore point, since it's disabled-by-default (wtf??)
This fixes the error "Checkpoint-Computer : This command cannot be run due to the following error: the service cannot be started because it
is disabled or does not have enabled devices associated with it." reported by a few users
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
. McAfee Stinger v12.1.0.1912
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.0
. CCleaner v5.14.5493
. BleachBit v1.10
. finddupe.exe v1.23
. TempFileCleanup v1.0.7-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.3
. \oem\programs_to_target_by_name.txt
. \oem\programs_to_target_by_GUID.bat
. \oem\toolbars_BHOs_to_target_by_GUID.bat
. \oem\misc_other_programs_to_target.bat // Not called (currently unused)
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
. \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
* stage_4_repair.bat v1.0.6
! Fix numerous bugs with DISM check and repair. Due to bad ERRORLEVEL checking it would fail to trigger repairs when they were required
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.2
. 7-Zip v15.14 (multi-language)
* Adobe Flash Player v20.0.0.306 (language ignored)
. Adobe Reader v11.0.14 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u74 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.2
. smartctl v6.4.0 2015-06-04 r4109
* Defraggler v2.20.989
Stage 7: Wrap-up
. SwithMail.exe v2.1.5.0
Stage 8: Manual tools
. .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
* AdwCleaner v5.0.3.3
. Autoruns v13.51
. BlueScreenView v1.55
* ComboFix v16.2.9.1
. Junkware Removal Tool v8.0.2.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. Remote Support Reboot Config v1.0.0
. Safe Mode Boot Selector.bat v1.0.0
. ServicesRepair v1.0.0.3
. Tron Reset Tool v1.0.0
. UserBenchMark v2.6.0.0
########################
# v8.6.0 // 2016-02-06 #
########################
tron.bat v8.6.0
- Remove support for deprecated -sb switch (use new -sdb switch instead)
Stage 0: Prep
. stage_0_prep.bat v1.0.4
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
* McAfee Stinger v12.1.0.1897
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.0
. CCleaner v5.14.5493
. BleachBit v1.10
. finddupe.exe v1.23
. TempFileCleanup v1.0.7-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
* stage_2_de-bloat.bat v1.1.3
! Fix MSIServer service not starting in Safe Mode, which prevented removal of most "classic" bloatware programs. Thanks to https://github.com/Verteiron
. \oem\programs_to_target_by_name.txt
* \oem\programs_to_target_by_GUID.bat
+ Add additional Lenovo entries. Thanks to /u/tsmartin123
+ Add additional Lenovo entries. Thanks to /u/Letouane
- Disable Intel Matrix Storage manager entries, per crash report from the appropriately-named /u/BluescreenOfDeath
. \oem\toolbars_BHOs_to_target_by_GUID.bat
. \oem\misc_other_programs_to_target.bat // Not called (currently unused)
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
* \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
+ Add additional entries. Thanks to /u/MikeX10A
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
. stage_4_repair.bat v1.0.5
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.2
. 7-Zip v15.14 (multi-language)
. Adobe Flash Player v20.0.0.286 (language ignored)
. Adobe Reader v11.0.14 (English-only; replace with your language version if necessary)
* Java Runtime Environment 8u74 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.2
. smartctl v6.4.0 2015-06-04 r4109
. Defraggler v2.19.0.982
Stage 7: Wrap-up
. SwithMail.exe v2.1.5.0
Stage 8: Manual tools
+ .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
* AdwCleaner v5.0.3.2
. Autoruns v13.51
. BlueScreenView v1.55
* ComboFix v16.2.5.1
. Junkware Removal Tool v8.0.2.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. Remote Support Reboot Config v1.0.0
. Safe Mode Boot Selector.bat v1.0.0
. ServicesRepair v1.0.0.3
. Tron Reset Tool v1.0.0
. UserBenchMark v2.6.0.0
- VirusTotal uploader tool v2.2 // REMOVED
########################
# v8.5.1 // 2016-01-28 #
########################
tron.bat v8.5.1
+ Build and implement new USERPROFILES variable, which will allow simplification of duplicate code built to
handle XP/2003's "Documents and Settings" vs. "C:\Users" of Vista and up
* Update "verbose output requested" log message to more accurately describe what will be different due to its use
Stage 0: Prep
. stage_0_prep.bat v1.0.4
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
* McAfee Stinger v12.1.0.1877
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
* stage_1_tempclean.bat v1.1.0
+ Add function to delete duplicate files found in Downloads folders of each user. Thanks to /u/kronflux and /u/Lemminsky
* CCleaner v5.14.5493
. BleachBit v1.10
+ finddupe.exe v1.23 // New; used to support deletion of duplicate files in Downloads folders
. TempFileCleanup v1.0.7-TRON
* USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.2
. \oem\programs_to_target_by_name.txt
* \oem\programs_to_target_by_GUID.bat
+ Add additional HP entries. Thanks to /u/RockaiE
+ Add additional HP entries. Thanks to /u/KingLinkTiger
. \oem\toolbars_BHOs_to_target_by_GUID.bat
. \oem\misc_other_programs_to_target.bat // Not called (currently unused)
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
. \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
. stage_4_repair.bat v1.0.5
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.2
. 7-Zip v15.12 (multi-language)
. Adobe Flash Player v20.0.0.286 (language ignored)
. Adobe Reader v11.0.14 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u72 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.2
. smartctl v6.4.0 2015-06-04 r4109
. Defraggler v2.19.0.982
Stage 7: Wrap-up
. SwithMail.exe v2.1.5.0
Stage 8: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v5.0.3.1
. Autoruns v13.51
. BlueScreenView v1.55
* ComboFix v16.1.24.1
. Junkware Removal Tool v8.0.2.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. Remote Support Reboot Config v1.0.0
. Safe Mode Boot Selector.bat v1.0.0
. ServicesRepair v1.0.0.3
. Tron Reset Tool v1.0.0
. UserBenchMark v2.6.0.0
. VirusTotal uploader tool v2.2
########################
# v8.5.0 // 2016-01-22 #
########################
tron.bat v8.5.0
/ tron.bat:switch: Change -sb switch (skip debloat) to -sdb to match other switches
Undocumented support for -sb left in place for legacy compatibility, but it will eventually be removed! Use the new switch!!
* tron.bat: Grammar and log cleanup
* tron.bat:eula: Reword the warning screen to be even MORE clear about the necessity of reading the instructions. You know who you are.
+ tron.bat:loading: Add "loading..." message while Tron performs pre-run actions
Stage 0: Prep
. stage_0_prep.bat v1.0.4
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
* McAfee Stinger v12.1.0.1866
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.0.2
. CCleaner v5.13.5460
. BleachBit v1.10
. TempFileCleanup v1.0.7-TRON
. USB Device Cleanup v1.1.0
Stage 2: De-bloat
* stage_2_de-bloat.bat v1.1.2
* Metro: Add missing log message about use of -m switch
! OneDrive: Add missing check to skip actions if DRY_RUN (-d) switch is used
. \oem\programs_to_target_by_name.txt
. \oem\programs_to_target_by_GUID.bat
* \oem\toolbars_BHOs_to_target_by_GUID.bat
. \oem\misc_other_programs_to_target.bat // Not called (currently unused)
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
* \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
- Remove Microsoft.BingWeather from active target list. Thanks to /u/radium69
- Remove Microsoft.SolitaireCollection from active target list. Thanks to /u/radium69
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
. stage_4_repair.bat v1.0.5
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.2
. 7-Zip v15.12 (multi-language)
* Adobe Flash Player v20.0.0.286 (language ignored)
. Adobe Reader v11.0.14 (English-only; replace with your language version if necessary)
* Java Runtime Environment 8u72 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.2
. smartctl v6.4.0 2015-06-04 r4109
. Defraggler v2.19.0.982
Stage 7: Wrap-up
. SwithMail.exe v2.1.5.0
Stage 8: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v5.0.3.0
. Autoruns v13.51
. BlueScreenView v1.55
* ComboFix v16.1.22.1
. Junkware Removal Tool v8.0.2.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. Remote Support Reboot Config v1.0.0
. Safe Mode Boot Selector.bat v1.0.0
. ServicesRepair v1.0.0.3
. Tron Reset Tool v1.0.0
. UserBenchMark v2.6.0.0
. VirusTotal uploader tool v2.2
########################
# v8.4.3 // 2016-01-18 #
########################
tron.bat v8.4.3
. No change, increment version number for changes in sub-scripts
Stage 0: Prep
. stage_0_prep.bat v1.0.4
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
. McAfee Stinger v12.1.0.1855
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.0.2
. CCleaner v5.13.5460
. BleachBit v1.10
. TempFileCleanup v1.0.7-TRON
. USB Device Cleanup v1.1.0
Stage 2: De-bloat
* stage_2_de-bloat.bat v1.1.1
/ OneDrive: Move code out of Metro debloat section into its own job
* OneDrive: Don't remove OneDrive if any files are present in the default OneDrive folder
* OneDrive: Disable links in Explorer side pane via registry keys instead of deleting the keys entirely
* Metro: Fine-tune version checking to ensure we only run on Windows 8/8.1 and Windows 10
- Metro: Remove redundant "net start AppXSVC" line prior to Metro de-bloat code
! Metro: Only set registry flag to allow starting AppX service in Safe Mode if the system is already in Safe Mode
. \oem\programs_to_target_by_name.txt
. \oem\programs_to_target_by_GUID.bat
. \oem\toolbars_BHOs_to_target_by_GUID.bat
. \oem\misc_other_programs_to_target.bat // Not called (currently unused)
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
. \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
. stage_4_repair.bat v1.0.5
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.2
. 7-Zip v15.12 (multi-language)
. Adobe Flash Player v20.0.0.267 (language ignored)
. Adobe Reader v11.0.14 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u66 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.2
. smartctl v6.4.0 2015-06-04 r4109
. Defraggler v2.19.0.982
Stage 7: Wrap-up
. SwithMail.exe v2.1.5.0
Stage 8: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v5.0.3.0
. Autoruns v13.51
. BlueScreenView v1.55
* ComboFix v16.1.18.1
. Junkware Removal Tool v8.0.2.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. Remote Support Reboot Config v1.0.0
. Safe Mode Boot Selector.bat v1.0.0
. ServicesRepair v1.0.0.3
. Tron Reset Tool v1.0.0
. UserBenchMark v2.6.0.0
. VirusTotal uploader tool v2.2
########################
# v8.4.2 // 2016-01-14 #
########################
tron.bat v8.4.2
. No change, increment version number for changes in sub-scripts
Stage 0: Prep
! stage_0_prep.bat v1.0.4
! Wrap references to WIN_VER in quotes to prevent crashing on Home OS's
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
. McAfee Stinger v12.1.0.1855
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.0.2
. CCleaner v5.13.5460
. BleachBit v1.10
. TempFileCleanup v1.0.7-TRON
. USB Device Cleanup v1.1.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.0
. \oem\programs_to_target_by_name.txt
* \oem\programs_to_target_by_GUID.bat
. \oem\toolbars_BHOs_to_target_by_GUID.bat
. \oem\misc_other_programs_to_target.bat // Not called (currently unused)
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
. \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
. stage_4_repair.bat v1.0.5
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.2
. 7-Zip v15.12 (multi-language)
. Adobe Flash Player v20.0.0.267 (language ignored)
. Adobe Reader v11.0.14 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u66 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.2
. smartctl v6.4.0 2015-06-04 r4109
. Defraggler v2.19.0.982
Stage 7: Wrap-up
. SwithMail.exe v2.1.5.0
Stage 8: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v5.0.2.9
. Autoruns v13.51
. BlueScreenView v1.55
. ComboFix v16.1.7.1
. Junkware Removal Tool v8.0.2.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. Remote Support Reboot Config v1.0.0
. Safe Mode Boot Selector.bat v1.0.0
. ServicesRepair v1.0.0.3
. Tron Reset Tool v1.0.0
. UserBenchMark v2.6.0.0
. VirusTotal uploader tool v2.2
########################
# v8.4.1 // 2016-01-12 #
########################
tron.bat v8.4.1
/ tron.bat:prep:safemode: Don't set system to boot into Safe Mode w/ Networking at startup if the script wasn't launched from Safe Mode
Stage 0: Prep
* stage_0_prep.bat v1.0.3
/ Rename folder created during registry backup from "tron_registry_backup" to "registry_backup"
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
* McAfee Stinger v12.1.0.1855
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.0.2
. CCleaner v5.13.5460
. BleachBit v1.10
. TempFileCleanup v1.0.7-TRON
. USB Device Cleanup v1.1.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.0
. \oem\programs_to_target_by_name.txt
. \oem\programs_to_target_by_GUID.bat
. \oem\toolbars_BHOs_to_target_by_GUID.bat
. \oem\misc_other_programs_to_target.bat // Not called (currently unused)
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
. \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
* Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
! Fix critical bug with Windows telemetry removal sub-scripts (stall on Windows 10 and crash on Windows 7/8/8.1)
. stage_4_repair.bat v1.0.5
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.2
. 7-Zip v15.12 (multi-language)
. Adobe Flash Player v20.0.0.267 (language ignored)
* Adobe Reader v11.0.14 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u66 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.2
. smartctl v6.4.0 2015-06-04 r4109
. Defraggler v2.19.0.982
Stage 7: Wrap-up
. SwithMail.exe v2.1.5.0
Stage 8: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v5.0.2.9
. Autoruns v13.51
. BlueScreenView v1.55
. ComboFix v16.1.7.1
* Junkware Removal Tool v8.0.2.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. Remote Support Reboot Config v1.0.0
. Safe Mode Boot Selector.bat v1.0.0
. ServicesRepair v1.0.0.3
. Tron Reset Tool v1.0.0
. UserBenchMark v2.6.0.0
. VirusTotal uploader tool v2.2
########################
# v8.4.0 // 2016-01-08 #
########################
tron.bat v8.4.0
+ tron.bat:prep: Add new -sdc switch and associated SKIP_DISM_CLEANUP variable. Use this to skip DISM component (SxS store) cleanup. Thanks to /u/silentchasm
+ tron.bat:ssd_detection: Add virtual disk detection. If found, skip Stage 5 defrag. Thanks to /u/fezzgig
- tron.bat:variable: Remove SSD_DETECTED variable and re-implement all checks that force a defrag skip to use the SKIP_DEFRAG variable instead
Stage 0: Prep
. stage_0_prep.bat v1.0.2
. rkill v2.8.3.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
. McAfee Stinger v12.1.0.1853
. erunt v1.1j
. caffeine v1.6.1.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.0.2
. CCleaner v5.13.5460
. BleachBit v1.10
. TempFileCleanup v1.0.7-TRON
. USB Device Cleanup v1.1.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.0
. \oem\programs_to_target_by_name.txt
. \oem\programs_to_target_by_GUID.bat
. \oem\toolbars_BHOs_to_target_by_GUID.bat
. \oem\misc_other_programs_to_target.bat // Not called (currently unused)
. \metro\metro_3rd_party_modern_apps_to_target_by_name.ps1
! \metro\metro_Microsoft_modern_apps_to_target_by_name.ps1
! Remove incorrect Windows Store entry from the target list. Thanks to /u/regypt and /u/KnifeyGavin
Stage 3: Disinfect
. stage_3_disinfect.bat v1.0.2
. Sophos Virus Removal Tool v2.5.4
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.0.1024
Stage 4: Repair
* stage_4_repair.bat v1.0.5
- Remove redundant Dism image store cleanup (move to Stage 5)
. subinacl.exe v5.2.3790.1180
. Repair file extensions v1.0.0
Stage 5: Patch
* stage_5_patch.bat v1.1.2
+ Import Windows Vista/2008 Dism component cleanup from Stage 4
+ Implement support for -sdc switch (SKIP_DISM_CLEANUP)
. 7-Zip v15.12 (multi-language)
. Adobe Flash Player v20.0.0.267 (language ignored)