-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
7879 lines (6533 loc) · 318 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 #
#############
Change legend:
+ Addition - Removal * Update/improvement
. No change ! Bug fix / Change (non bug-fix)
Version number legend:
x.x.x
| | |
| | minor change, update or bugfix
| regular release or feature change, backwards compatible
major release or feature change, might break backwards compatibility
########################
# v9.8.3 // 2016-11-10 #
########################
Internal
* tron.bat v9.8.3
. No change, version number increment only
. check_update.bat v1.0.5
. check_update_debloat_lists.bat v1.1.0
Stage 0: Prep
. stage_0_prep.bat v1.1.4
. rkill v2.8.4.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.11
. McAfee Stinger v12.1.0.2158
. erunt v1.1j
. caffeine v1.6.2.0
. wget v1.18
. nircmdc v2.81
Stage 1: Tempclean
* stage_1_tempclean.bat v1.1.5
! ccleaner: Add /f (force) switch to ccleaner task kill command. Thanks to /u/iseijin for reporting
. CCleaner v5.23.5808
. BleachBit v1.12
. finddupe.exe v1.23
. TempFileCleanup v1.1.4-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.2.0
* programs_to_target_by_GUID.txt
. toolbars_BHOs_to_target_by_GUID.txt
. programs_to_target_by_name.txt
. metro_3rd_party_modern_apps_to_target_by_name.ps1
. metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.1.3
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.1.1043
. Malwarebytes included defs: 2016-11-03
Stage 4: Repair
. stage_4_repair.bat v1.2.1
. purge_windows_7-8-81_telemetry.bat
. purge_windows_10_telemetry.bat
. Spybot Anti-Beacon v1.5.0.35
. O&O ShutUp10 v1.4.1383
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.4
. 7-Zip v16.04 (multi-language)
. Adobe Flash Player v23.0.0.207 (language ignored)
. Adobe Reader v11.0.18 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u112 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.3
. smartctl v6.5.0.4318 2016-05-07 r4318
. Defraggler v2.21.0.993
Stage 7: Wrap-up
. SwithMail.exe v2.1.8.0
Stage 8: Custom Scripts
. Tron will auto-execute any .bat file placed in this directory, prior to script completion
Stage 9: Manual tools
. .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
. AdwCleaner v6.0.3.0
. Autoruns v13.62
. BlueScreenView v1.55
. ComboFix v16.11.6.1
. Junkware Removal Tool v8.0.9.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
########################
# v9.8.2 // 2016-11-09 #
########################
Internal
* tron.bat v9.8.2
/ Replace removed programs list with PendingFileRenameOperations_%COMPUTERNAME%_export.txt in debug log upload, since this file is more useful for debugging
. check_update.bat v1.0.5
. check_update_debloat_lists.bat v1.1.0
Stage 0: Prep
* stage_0_prep.bat v1.1.4
! Don't attempt to create System Restore point on Windows 10 systems if in Safe Mode. Why? Because Win10 blocks system restore point creation in Safe Mode. Why? Because Microsoft
* Add 500ms delay (0.5 seconds) to screenshot capture. Also capture contents of all monitors now vs. only the primary one
. rkill v2.8.4.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.11
* McAfee Stinger v12.1.0.2158
. erunt v1.1j
. caffeine v1.6.2.0
. wget v1.18
. nircmdc v2.81
Stage 1: Tempclean
* stage_1_tempclean.bat v1.1.4
! ccleaner: Remove /wait flag from start command so script continues immediately. Script now has hard-coded 180 second (3 minute) delay after which it will forcibly kill CCleaner. When running normally this should be plenty of time to complete, and this way the script won't stop if CCleaner stalls. Thanks to multiple users for reporting
* CCleaner v5.23.5808
. BleachBit v1.12
. finddupe.exe v1.23
* TempFileCleanup v1.1.4-TRON
+ Add cleanup of Dr. Watson log files. Thanks to github:nemchik
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.2.0
* programs_to_target_by_GUID.txt
. toolbars_BHOs_to_target_by_GUID.txt
. programs_to_target_by_name.txt
. metro_3rd_party_modern_apps_to_target_by_name.ps1
. metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.1.3
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.1.1043
* Malwarebytes included defs: 2016-11-03
Stage 4: Repair
* stage_4_repair.bat v1.2.1
+ Add job 'Disable NVIDIA telemetry.' Thanks /u/TootZoot
. purge_windows_7-8-81_telemetry.bat
. purge_windows_10_telemetry.bat
. Spybot Anti-Beacon v1.5.0.35
. O&O ShutUp10 v1.4.1383
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.4
. 7-Zip v16.04 (multi-language)
* Adobe Flash Player v23.0.0.207 (language ignored)
. Adobe Reader v11.0.18 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u112 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.3
. smartctl v6.5.0.4318 2016-05-07 r4318
. Defraggler v2.21.0.993
Stage 7: Wrap-up
. SwithMail.exe v2.1.8.0
Stage 8: Custom Scripts
. Tron will auto-execute any .bat file placed in this directory, prior to script completion
Stage 9: Manual tools
. .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
. AdwCleaner v6.0.3.0
. Autoruns v13.62
. BlueScreenView v1.55
* ComboFix v16.11.6.1
. Junkware Removal Tool v8.0.9.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
########################
# v9.8.1 // 2016-11-03 #
########################
Internal
* tron.bat v9.8.1
/ Move post-run cleanup to after Stage 8
/ Re-enable debug log upload function (-udl). Thanks to /u/Rikairchy2
* Improve CLI_ARGUMENTS routine (used by Swithmail) and move into :parse_cmdline_args function
! check_update.bat v1.0.5
! Fix edge case where self-destruct code would be incorrectly triggered by re-using Tron's global SELF_DESTRUCT variable
check_update.bat now uses its own internal "NUKE_OLD_VERSION" variable to check if we need to cleanup after an update. Thanks /u/wogmail
. check_update_debloat_lists.bat v1.1.0
Stage 0: Prep
. stage_0_prep.bat v1.1.3
. rkill v2.8.4.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.11
* McAfee Stinger v12.1.0.2152
. erunt v1.1j
. caffeine v1.6.2.0
. wget v1.18
. nircmdc v2.81
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.2
. CCleaner v5.22.5724
. BleachBit v1.12
. finddupe.exe v1.23
. TempFileCleanup v1.1.2-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.2.0
. programs_to_target_by_GUID.txt
. toolbars_BHOs_to_target_by_GUID.txt
. programs_to_target_by_name.txt
. metro_3rd_party_modern_apps_to_target_by_name.ps1
. metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.1.3
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.1.1043
. Malwarebytes included defs: 2016-10-27
Stage 4: Repair
. stage_4_repair.bat v1.2.0
. purge_windows_7-8-81_telemetry.bat
. purge_windows_10_telemetry.bat
. Spybot Anti-Beacon v1.5.0.35
. O&O ShutUp10 v1.4.1383
. Repair file extensions v1.0.0
Stage 5: Patch
* stage_5_patch.bat v1.1.4
* Improve Windows Update section; force start Windows Update service in case it's not running, prior to running the wuaserv command
. 7-Zip v16.04 (multi-language)
. Adobe Flash Player v23.0.0.205 (language ignored)
. Adobe Reader v11.0.18 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u112 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.3
. smartctl v6.5.0.4318 2016-05-07 r4318
. Defraggler v2.21.0.993
Stage 7: Wrap-up
. SwithMail.exe v2.1.8.0
Stage 8: Custom Scripts
. Tron will auto-execute any .bat file placed in this directory, prior to script completion
Stage 9: Manual tools
. .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
. AdwCleaner v6.0.3.0
. Autoruns v13.62
. BlueScreenView v1.55
. ComboFix v16.10.23.1
. Junkware Removal Tool v8.0.9.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
########################
# v9.8.0 // 2016-11-02 #
########################
Internal
* tron.bat v9.8.0
+ Add Stage 8: Custom Scripts. Tron will execute any .bat files placed in stage_8_custom_scripts just prior to script completion. See instructions file for additional information
* check_update.bat v1.0.4
+ Add missing :self_destruct code and fix sha256sums.txt character encoding. Thanks /u/botopz
* check_update_debloat_lists.bat v1.1.0
+ Add new job to check for and download the programs_to_target_by_name list
* Update jobs to reflect new list names on Github
Stage 0: Prep
. stage_0_prep.bat v1.1.3
. rkill v2.8.4.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.11
. McAfee Stinger v12.1.0.2149
. erunt v1.1j
. caffeine v1.6.2.0
. wget v1.18
. nircmdc v2.81
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.2
* CCleaner v5.22.5724
/ Revert CCleaner to v5.22.5724 version due to multiple reports of v5.23.5808 stalling
. BleachBit v1.12
. finddupe.exe v1.23
. TempFileCleanup v1.1.2-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
* stage_2_de-bloat.bat v1.2.0
+ Add checks for existence of PendingFileRenameOperations registry entries. Entries here are responsible for the errors about not being able to remove a program due to needing a reboot.
If we detect entries in this key, we export them to RAW_LOGS and then delete them before continuing on. This should allow Tron to continue removing programs without waiting for a reboot
/ programs_to_target_by_GUID.txt
/ Update list contents and name to reflect new format
/ toolbars_BHOs_to_target_by_GUID.txt
/ Update list contents and name to reflect new format
/ programs_to_target_by_name.txt
/ Update list contents and name to reflect new format
. metro_3rd_party_modern_apps_to_target_by_name.ps1
. metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.1.3
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.1.1043
. Malwarebytes included defs: 2016-10-27
Stage 4: Repair
. stage_4_repair.bat v1.2.0
. purge_windows_7-8-81_telemetry.bat
. purge_windows_10_telemetry.bat
. Spybot Anti-Beacon v1.5.0.35
. O&O ShutUp10 v1.4.1383
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.3
. 7-Zip v16.04 (multi-language)
. Adobe Flash Player v23.0.0.205 (language ignored)
. Adobe Reader v11.0.18 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u112 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.3
. smartctl v6.5.0.4318 2016-05-07 r4318
. Defraggler v2.21.0.993
Stage 7: Wrap-up
* SwithMail.exe v2.1.8.0
Stage 8: Custom Scripts
. Tron will auto-execute any .bat file placed in this directory, prior to script completion
Stage 9: Manual tools
. .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
. AdwCleaner v6.0.3.0
. Autoruns v13.62
. BlueScreenView v1.55
. ComboFix v16.10.23.1
. Junkware Removal Tool v8.0.9.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
########################
# v9.7.0 // 2016-10-27 #
########################
Internal
* tron.bat v9.7.0
- Remove -sfr and -srr switches along with all associated code and text due to removal of those jobs from Tron. They're rarely required and seem to hang the script on a lot of systems, so in the interest of stability they've been given the axe
- Temporarily disable use of the -udl switch, until I can find a better solution for submitting log files
. check_update.bat v1.0.4
. check_update_debloat_lists.bat v1.0.3
Stage 0: Prep
* stage_0_prep.bat v1.1.3
+ Add job to capture desktop screenshot to the RAW_LOGS folder. Sometimes but a visual of the system is helpful so we capture one just in case some icons change
! Prefix siv32x and siv64x commands with "start" instead of calling directly. Should prevent entire script stalling if SIV hangs. Thanks /u/gameoftomes
* Enable executing siv64x.exe instead of siv32x.exe on 64-bit systems. Thanks /u/gameoftomes
. rkill v2.8.4.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.11
* McAfee Stinger v12.1.0.2149
. erunt v1.1j
. caffeine v1.6.2.0
. wget v1.18
+ nircmdc v2.81 // new; used to take a desktop screenshot prior to running
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.2
* CCleaner v5.23.5808
. BleachBit v1.12
. finddupe.exe v1.23
. TempFileCleanup v1.1.2-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
* stage_2_de-bloat.bat v1.1.7
* Significantly improve robustness of OneDrive checks. OneDrive now only removed if system is Win10, folder exists in default location, and is empty. Thanks /u/ranger_dood
. programs_to_target_by_GUID.bat
. toolbars_BHOs_to_target_by_GUID.bat
. programs_to_target_by_name.txt
. metro_3rd_party_modern_apps_to_target_by_name.ps1
. metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
+ stage_3_disinfect.bat v1.1.3
+ Add job to clear the CryptNet SSL certificate cache (Vista and up). Thanks to github:Itsnothectic and github:alazare619
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.1.1043
* Malwarebytes included defs: 2016-10-27
Stage 4: Repair
* stage_4_repair.bat v1.2.0
- Remove job "Reset Filesystem permissions" and associated files and code
- Remove job "Reset Registry permission" and associated files and code
. purge_windows_7-8-81_telemetry.bat
. purge_windows_10_telemetry.bat
- subinacl.exe v5.2.3790.1180 // REMOVED as part of removing Registry and Filesystem reset portions of the script
. Spybot Anti-Beacon v1.5.0.35
. O&O ShutUp10 v1.4.1383
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.3
* 7-Zip v16.04 (multi-language)
* Adobe Flash Player v23.0.0.205 (language ignored)
* Adobe Reader v11.0.18 (English-only; replace with your language version if necessary)
* Java Runtime Environment 8u112 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.3
. smartctl v6.5.0.4318 2016-05-07 r4318
. Defraggler v2.21.0.993
Stage 7: Wrap-up
. SwithMail.exe v2.1.6.0
Stage 8: Manual tools
. .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
* AdwCleaner v6.0.3.0
. Autoruns v13.62
. BlueScreenView v1.55
* ComboFix v16.10.23.1
* Junkware Removal Tool v8.0.9.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
########################
# v9.6.1 // 2016-10-03 # // AQ
########################
Internal
. tron.bat v9.6.1
! Fix critical crash bug due to an unescaped set of parentheses
+ stage_7_wrap-up:log_upload: Add new -udl switch and associated UPLOAD_DEBUG_LOGS variable. Use this switch to have Tron email 'tron.log' and the system GUID dump to Vocatus upon completion. NOTE! Log files can contain personal information such as file names on the system and it's possible I will see them when looking through the log. I don't care what files are on a system but it IS something to be aware of
. check_update.bat v1.0.4
. check_update_debloat_lists.bat v1.0.3
Stage 0: Prep
. stage_0_prep.bat v1.1.0
. rkill v2.8.4.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.11
. McAfee Stinger v12.1.0.2097
. erunt v1.1j
. caffeine v1.6.2.0
. wget v1.18
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.2
. CCleaner v5.22.5724
. BleachBit v1.12
. finddupe.exe v1.23
. TempFileCleanup v1.1.2-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
* stage_2_de-bloat.bat v1.1.6
* Suppress output of by_name debloat by default, and add support for VERBOSE switch to affect this step and display output to the console instead of log file
. programs_to_target_by_GUID.bat
. toolbars_BHOs_to_target_by_GUID.bat
. programs_to_target_by_name.txt
. metro_3rd_party_modern_apps_to_target_by_name.ps1
. metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
* stage_3_disinfect.bat v1.1.2
+ jrt: Add job "JRT" (Junkware Removal Tool by Malwarebytes). Currently disabled pending troubleshooting
- roguekiller: Remove obsolete code for RogueKiller
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.1.1043
* Malwarebytes included defs: 2016-09-29
Stage 4: Repair
* stage_4_repair.bat v1.1.1
+ Add job "MSI Installer Cleanup." Uses the Microsoft 'msizap' utility to remove orphaned MSI installer files from the cache
* Embed contents of 'disable_windows_10_upgrade_registry_entries.reg' directly into script. Removes dependence on an external .reg file
* purge_windows_7-8-81_telemetry.bat
* Embed contents of 'disable_telemetry_registry_entries.reg' directly into script. Removes dependence on an external .reg file
+ Add updates 2882822 3050265 3065987 3075851 3102810 3118401 3135445 3138612 3173040 from http://www.overclock.net/t/1587577/windows-7-updates-list-descriptions-windows-10-preparation-telemetry
Thanks /u/HeyYou13
* purge_windows_10_telemetry.bat
+ Add job "OandOShutUp10." Tron now automatically applies all immunizations from OandOShutUp10
! Fix broken path on setacl.exe call. Thanks /u/Seascan
! Fix broken path on Spybot call. Thanks /u/Seascan
* Embed contents of 'disable_telemetry_registry_entries.reg' directly into script. Removes dependence on an external .reg file
. subinacl.exe v5.2.3790.1180
. Spybot Anti-Beacon v1.5.0.35
+ O&O ShutUp10 v1.4.1383 // new, Tron now automatically applies O&O's telemetry protection. Thanks /u/ItsNotHectic
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.3
* 7-Zip v16.03 (multi-language)
. Adobe Flash Player v23.0.0.162 (language ignored)
. Adobe Reader v11.0.17 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u102 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.3
. smartctl v6.5.0.4318 2016-05-07 r4318
. Defraggler v2.21.0.993
Stage 7: Wrap-up
* SwithMail.exe v2.1.6.0
Stage 8: Manual tools
. .NET Repair Tool v4.5.52207.36207
. ADSSpy v1.11.0.0
* AdwCleaner v6.0.2.0
. Autoruns v13.62
. BlueScreenView v1.55
* ComboFix v16.9.28.1
* Junkware Removal Tool v8.0.8.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
########################
# v9.5.1 // 2016-09-14 # // AQ
########################
Internal
* tron.bat v9.5.1
/ cleanup: Change output of bcedit boot flag clearing commands to pipe directly to NUL, since we aren't interested in the output and it just throws a meaningless error message to the log file
- cleanup: Remove unused :self_destruct label
. check_update.bat v1.0.4
. check_update_debloat_lists.bat v1.0.3
Stage 0: Prep
. stage_0_prep.bat v1.1.0
. rkill v2.8.4.0
. ProcessKiller v2.0.0-TRON
* TDSS Killer v3.1.0.11
. McAfee Stinger v12.1.0.2097
. erunt v1.1j
. caffeine v1.6.2.0
. wget v1.18
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.2
* CCleaner v5.22.5724
. BleachBit v1.12
. finddupe.exe v1.23
. TempFileCleanup v1.1.2-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.5
* programs_to_target_by_GUID.bat
* toolbars_BHOs_to_target_by_GUID.bat
+ Add all entries from Malwarebytes' Junkware Removal Tool GUID lists
. programs_to_target_by_name.txt
. metro_3rd_party_modern_apps_to_target_by_name.ps1
. metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
. stage_3_disinfect.bat v1.1.1
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.1.1043
. Malwarebytes included defs: 2016-09-08
Stage 4: Repair
* stage_4_repair.bat v1.0.9
/ Rename call to 'reset_file_permissions.bat' to 'reset_filesystem_permissions.bat' to reflect new file name
/ Update log messages to reflect the now-suppressed subinacl output (remove mention of ignoring errors)
* reset_filesystem_permissions.bat v1.0.3
* Add proper version-specific commands to secedit database repair. Was incorrectly attempting to run Windows XP command on Windows 7 and up
+ Add /nostatistic flag to subinacl calls. This should suppress the red banner that appears and always made people think something was wrong
+ Add standalone execution support
- Remove unnecessary SETLOCAL command
- Remove logging of registry permissions reset since it only produces a bunch of "access denied" log entries on protected hives that we don't care about. Should decrease runtime as well
* reset_registry_permissions.bat v1.0.4
+ Add /nostatistic flag to subinacl calls. This should suppress the red banner that appears and always made people think something was wrong
+ Add standalone execution support
- Remove unnecessary SETLOCAL command
- Remove logging of registry permissions reset since it only produces a bunch of "access denied" log entries on protected hives that we don't care about. Should decrease runtime as well
. subinacl.exe v5.2.3790.1180
. Spybot Anti-Beacon v1.5.0.35
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.3
. 7-Zip v16.02 (multi-language)
* Adobe Flash Player v23.0.0.162 (language ignored)
. Adobe Reader v11.0.17 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u102 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.3
. smartctl v6.5.0.4318 2016-05-07 r4318
. Defraggler v2.21.0.993
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 v6.0.1.0
. Autoruns v13.62
. BlueScreenView v1.55
* ComboFix v16.9.14.1
. Junkware Removal Tool v8.0.7.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
########################
# v9.5.0 // 2016-09-11 # // AQ
########################
Internal
* tron.bat v9.5.0
/ Change text "Time zone name" to "Time zone" in log output
! Correct a couple references to USERPROFILE to use Tron's universal USERPROFILES instead
! Wrap all references to %TEMP% in quotes. Should help prevent crashing on systems where the username contains special characters (e.g. "&"). Thanks /u/maliyaa and /u/wiggy4383
* check_update.bat v1.0.4
* Wrap all references to %TEMP% in quotes to account for possibility of a user account with special characters in it (e.g. "&")
* check_update_debloat_lists.bat v1.0.3
* Wrap all references to %TEMP% in quotes to account for possibility of a user account with special characters in it (e.g. "&")
Stage 0: Prep
* stage_0_prep.bat v1.1.0
! Fix bug in GUID dump. Was trying to include the current time in the file name instead of the date
! Wrap all references to %TEMP% in quotes. Should help prevent crashing on systems where the username contains special characters (e.g. "&")
. rkill v2.8.4.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
. McAfee Stinger v12.1.0.2097
. erunt v1.1j
. caffeine v1.6.2.0
. wget v1.18
Stage 1: Tempclean
* stage_1_tempclean.bat v1.1.2
* Wrap all references to %TEMP% in quotes to account for possibility of a user account with special characters in it (e.g. "&")
. CCleaner v5.21.5700
. BleachBit v1.12
. finddupe.exe v1.23
. TempFileCleanup v1.1.2-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
* stage_2_de-bloat.bat v1.1.5
\ Swap order of Toolbar/BHO removal and by_name removal. Performing uninstalls by_name often forces a reboot so we do it last
! Correct a reference to USERPROFILE that should've used Tron's USERPROFILES instead
. programs_to_target_by_GUID.bat
. toolbars_BHOs_to_target_by_GUID.bat
. programs_to_target_by_name.txt
. metro_3rd_party_modern_apps_to_target_by_name.ps1
. metro_Microsoft_modern_apps_to_target_by_name.ps1
Stage 3: Disinfect
* stage_3_disinfect.bat v1.1.1
! mbam: Clean up mbam launching routine. Should eliminate erroneous message about mbam.exe not being found
! Correct a reference to USERPROFILE that should've used Tron's USERPROFILES instead
. Sophos Virus Removal Tool v2.5.5
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.2.1.1043
* Malwarebytes included defs: 2016-09-08
Stage 4: Repair
* stage_4_repair.bat v1.0.8
- Remove redirection to log file on statements calling telemetry removal scripts. These scripts handle their own logging so this was incorrectly suppressing all output
. subinacl.exe v5.2.3790.1180
. Spybot Anti-Beacon v1.5.0.35
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.3
. 7-Zip v16.02 (multi-language)
. Adobe Flash Player v22.0.0.209 (language ignored)
. Adobe Reader v11.0.17 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u102 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.3
. smartctl v6.5.0.4318 2016-05-07 r4318
. Defraggler v2.21.0.993
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 v6.0.1.0
. Autoruns v13.62
. BlueScreenView v1.55
. ComboFix v16.9.5.1
. Junkware Removal Tool v8.0.7.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
########################
# v9.4.1 // 2016-09-08 # // AQ
########################
Internal
* tron.bat v9.4.1
. No changes to tron.bat; increment version number only
* check_update.bat v1.0.3
- Remove '--ca-certificate=stage_0_prep\check_update\bmrf.org.pem' declarative from wget calls, due to upgrading Tron's internal wget version to v1.18
* check_update_debloat_lists.bat v1.0.2
- Remove '--no-check-certificate' statement from wget commands, due to upgrade of Tron's internal wget.exe to v1.18. This enables proper SSL encryption when checking Github for new S2 debloat lists
! Remove erroneous debugging statement that was mistakenly left in. It flagged the local 3rd party Metro list as being out of date regardless of version
+ Add preloading of variables so the script doesn't crash if it can't detect a version number correctly. Thanks /u/Karmaisthedevil
Stage 0: Prep
. stage_0_prep.bat v1.0.9
. rkill v2.8.4.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
. McAfee Stinger v12.1.0.2097
. erunt v1.1j
. caffeine v1.6.2.0
* wget v1.18
! Fixes having to manually specify PEM certificate chains for update checks; wget now accesses the Windows certificate store natively
Thanks to Jernej Simoncic from https://eternallybored.org/misc/wget/
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.0
. CCleaner v5.21.5700
. BleachBit v1.12
. finddupe.exe v1.23
. TempFileCleanup v1.1.2-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.4
. programs_to_target_by_name.txt
. programs_to_target_by_GUID.bat
. toolbars_BHOs_to_target_by_GUID.bat
. metro_3rd_party_modern_apps_to_target_by_name.ps1
. 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 // update bundled defs
. Malwarebytes Anti-Malware v2.2.1.1043
. Malwarebytes included defs: 2016-09-01
Stage 4: Repair
. stage_4_repair.bat v1.0.7
. subinacl.exe v5.2.3790.1180
. Spybot Anti-Beacon v1.5.0.35
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.3
. 7-Zip v16.02 (multi-language)
. Adobe Flash Player v22.0.0.209 (language ignored)
. Adobe Reader v11.0.17 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u102 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.3
. smartctl v6.5.0.4318 2016-05-07 r4318
. Defraggler v2.21.0.993
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 v6.0.1.0
. Autoruns v13.62
. BlueScreenView v1.55
* ComboFix v16.9.5.1
. Junkware Removal Tool v8.0.7.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
########################
# v9.4.0 // 2016-09-03 # // AQ
########################
Internal
* tron.bat v9.4.0
+ tron_update: Add automatic checking for updated debloat lists (stage 2). If found Tron will update the local lists prior to execution
+ tron_cli_flag: Add -sdu switch and associated SKIP_DEBLOAT_UPDATE variable. Use this to prevent Tron from automatically updating the debloat lists prior to execution
+ tron_update: Add SKIP_DEBLOAT_UPDATE output to config dump screen (-c)
/ tron_update: Rename all instances of UPDATE_CHECK and update_check to CHECK_UPDATE and check_update to make names consistent
- tron_update: Remove all references to substage update. The idea behind this functionality was ported over to updating the debloat lists instead
* misc: Replace two relative calls to FIND with references to the Tron's full path variable %FIND%
. check_update.bat v1.0.2
* check_update_debloat_lists.bat v1.0.0
+ New; Tron calls this during intial bootstrap. Automatically updates the Stage 2 debloat lists with the latest versions from Github
- check_update_substages.bat v1.0.0 // REMOVED; the idea behind this functionality was ported over to updating the debloat lists instead
Stage 0: Prep
* stage_0_prep.bat v1.0.9
. rkill v2.8.4.0
. ProcessKiller v2.0.0-TRON
. TDSS Killer v3.1.0.7
. McAfee Stinger v12.1.0.2097
. erunt v1.1j
. caffeine v1.6.2.0
Stage 1: Tempclean
. stage_1_tempclean.bat v1.1.0
. CCleaner v5.21.5700
. BleachBit v1.12
. finddupe.exe v1.23
. TempFileCleanup v1.1.2-TRON
. USB Device Cleanup v1.2.0
Stage 2: De-bloat
. stage_2_de-bloat.bat v1.1.4
. programs_to_target_by_name.txt
* programs_to_target_by_GUID.bat
+ Add script version and date variables to support automatic updates at Tron runtime
* toolbars_BHOs_to_target_by_GUID.bat
+ Add script version and date variables to support automatic updates at Tron runtime
* metro_3rd_party_modern_apps_to_target_by_name.ps1
+ Add script version and date variables to support automatic updates at Tron runtime
+ Add 46928bounde.EclipseManager and D5EA27B7.Duolingo-LearnLanguagesforFree, Thanks /u/phobos258
* metro_Microsoft_modern_apps_to_target_by_name.ps1
+ Add script version and date variables to support automatic updates at Tron runtime
+ Add 'D52A8D61.FarmVille2CountryEscape' to list, appears after Win10 anniversary update. Thanks /u/reztho
+ Add 'GAMELOFTSA.Asphalt8Airborne' to list, appears after Win10 anniversary update. Thanks /u/reztho
! Fix encoding error on a hyphen character in the removal command that prevented it from executing. Don't know how long it was like that
+ Add some other entries to list, Thanks /u/phobos258
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.1.1043
* Malwarebytes included defs: 2016-09-01
Stage 4: Repair
. stage_4_repair.bat v1.0.7
. subinacl.exe v5.2.3790.1180
. Spybot Anti-Beacon v1.5.0.35
. Repair file extensions v1.0.0
Stage 5: Patch
. stage_5_patch.bat v1.1.3
. 7-Zip v16.02 (multi-language)
. Adobe Flash Player v22.0.0.209 (language ignored)
. Adobe Reader v11.0.17 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u102 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
Stage 6: Optimize
. stage_6_optimize.bat v1.0.3
. smartctl v6.5.0.4318 2016-05-07 r4318
. Defraggler v2.21.0.993
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 v6.0.1.0
. Autoruns v13.62
. BlueScreenView v1.55
* ComboFix v16.8.31.1
. Junkware Removal Tool v8.0.7.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
########################
# v9.3.0 // 2016-08-25 # // AQ
########################