-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
3332 lines (2751 loc) · 130 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
! Bug fix * Update/improvement
. No change / 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
########################
# v6.3.6 // 2015-06-16 #
########################
tron.bat v6.3.6
! stage_0_prep:ntp: Fix bug with NTP service start, was missing code to allow starting in Safe Mode. Thanks to /u/BroPaterno
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.1.0-TRON
. TDSS Killer v3.0.0.42
* McAfee Stinger v12.1.0.1578
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.06.5219
. BleachBit v1.6
. TempFileCleanup v1.0.1-TRON
. USB Device Cleanup v1.1.0
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target_by_name.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.8.4.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Kaspersky Virus Removal Tool v15.0.19.0, update defs
. Malwarebytes Anti-Malware v2.1.6.1022
STAGE 4: Repair
. subinacl.exe v5.2.3790.1180 // used for file and registry permissions reset
STAGE 5: Patch
. 7-Zip v9.38 (multi-language)
* Adobe Flash Player v18.0.0.160 (language ignored)
. Adobe Reader v11.0.11 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u45 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 6: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
. 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 v4.2.0.6
. Autoruns v13.4
* ComboFix v15.6.9.1
* Junkware Removal Tool v6.9.9.0
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. ServicesRepair.exe v1.0.0.3
. UserBenchMark v2.6.0.0
. VirusTotal uploader tool v2.2
########################
# v6.3.5 // 2015-06-09 #
########################
tron.bat v6.3.5
! tron.bat:bugfix: Minor fix for a couple operations that incorrectly blanked the logfile instead of appending to it. Thanks to /u/JTsince1980
########################
# v6.3.4 // 2015-06-03 #
########################
tron.bat v6.3.4
. No changes to tron.bat in this release; subtool updates only
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.1.0-TRON
. TDSS Killer v3.0.0.42
. McAfee Stinger v12.1.0.1556
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.06.5219
. BleachBit v1.6
. TempFileCleanup v1.0.1-TRON
. USB Device Cleanup v1.1.0
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target_by_name.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.8.0.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Kaspersky Virus Removal Tool v15.0.19.0, update defs
. Malwarebytes Anti-Malware v2.1.6.1022
STAGE 4: Repair
. subinacl.exe v5.2.3790.1180 // used for file and registry permissions reset
STAGE 5: Patch
. 7-Zip v9.38 (multi-language)
* Adobe Flash Player v17.0.0.188 (language ignored)
* Adobe Reader v11.0.11 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u45 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 6: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
. 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 v4.2.0.6
* Autoruns v13.4
* ComboFix v15.5.31.1
* Junkware Removal Tool v6.8.7
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. ServicesRepair.exe v1.0.0.3
. UserBenchMark v2.6.0.0
. VirusTotal uploader tool v2.2
########################
# v6.3.3 // 2015-04-28 #
########################
tron.bat v6.3.3
! stage_0_prep:resume: Minor fix to resume detection code; if RUNONCE key exists but tron_stage.txt doesn't exist, assume faulty resume and delete the runonce key. Thanks to /u/cuddlychops06
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.1.0-TRON
. TDSS Killer v3.0.0.42
* McAfee Stinger v12.1.0.1491
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.05.5176
. BleachBit v1.6
. TempFileCleanup v1.0.1-TRON
. USB Device Cleanup v1.1.0
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target_by_name.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.6.10.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Kaspersky Virus Removal Tool v15.0.19.0, update defs
* Malwarebytes Anti-Malware v2.1.6.1022
STAGE 4: Repair
+ subinacl.exe v5.2.3790.1180 // used for file and registry permissions reset
STAGE 5: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v17.0.0.169 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u45 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 6: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
. 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 v4.2.0.2
* Autoruns v13.3
* ComboFix v15.4.28.1
* Junkware Removal Tool v6.6.6
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. ServicesRepair.exe v1.0.0.3
. UserBenchMark v2.6.0.0
. VirusTotal uploader tool v2.2
########################
# v6.3.2 // 2015-04-24 #
########################
tron.bat v6.3.2
+ stage_0_prep: Add disabling of screensaver; gets re-enabled at script end. Thanks to /u/staticextasy
/ stage_0_prep: Move power scheme export and switch to near beginning of Stage 0
! stage_7_wrap-up:gsl: Fix bug where summary logs (generated with -gsl) would list ALL programs on the computer if none were removed. Thanks to /u/staticextasy
########################
# v6.3.1 // 2015-04-22 #
########################
tron.bat v6.3.1
! stage_4_repair:bugfix: Add missing pushd statement that was preventing subscript from finding subinacl.exe
########################
# v6.3.0 // 2015-04-20 #
########################
tron.bat v6.3.0
* tron.bat:datetime: Functionalize CUR_DATE calculation so we can call it multiple times. 35% solution to the CUR_DATE issue
+ stage_4_repair:add: Create new Stage 4: Repair and right-shift all subsequent stages
+ stage_4_repair:regperm: Add registry permissions reset and associated -srr flag and SKIP_REGPERMS_RESET variable
+ stage_4_repair:fileperm: Add file permissions reset (%WinDir% only) and associated -sfr flag and SKIP_FILEPERMS_RESET variable
/ stage_3_disinfect:sfc: Move SFC to Stage 4: Repair
/ stage_5_optimize:chkdsk: Move chkdsk Stage 4: Repair
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.1.0-TRON
. TDSS Killer v3.0.0.42
. McAfee Stinger v12.1.0.1443
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.04.5151
. BleachBit v1.6
. TempFileCleanup v1.0.1-TRON
. USB Device Cleanup v1.1.0
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target_by_name.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
. RogueKiller v10.5.10.0
* Sophos Virus Removal Tool v2.5.4, update defs
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.1.4.1018
STAGE 4: Repair
+ subinacl.exe v5.2.3790.1180 // used for file and registry permissions reset
STAGE 5: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v17.0.0.169 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u45 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 6: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
. 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 v4.2.0.1
. autoruns v13.2
* ComboFix v15.4.19.1
. Junkware Removal Tool v6.5.2
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. ServicesRepair.exe v1.0.0.3
. UserBenchMark v2.6.0.0
. VirusTotal uploader tool v2.2
########################
# v6.2.0 // 2015-04-15 #
########################
tron.bat v6.2.0
+ stage_0_prep:safemode: Automatically set system to boot into Safe Mode w/ Networking if a reboot occurs, then revert back to Normal boot at script end. This should help prevent reboots into normal mode and not having an elevated command prompt. Thanks to /u/Aarinfel
+ stage_0_prep:time: Set system time via NTP against time.nist.gov, 3.pool.ntp.org and time.windows.com. Thanks to /u/radialmonster
+ stage_5_optimize:pagefile: Add reset of system page file settings to "let Windows manage the page file." Use associated -spr flag or SKIP_PAGEFILE_RESET variable to prevent this behavior
/ stage_4_patch:flash-ie: Rename Flash for Internet Explorer subdirectory from "internet explorer" to "ie"
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.1.0-TRON
. TDSS Killer v3.0.0.42
. McAfee Stinger v12.1.0.1443
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.04.5151
. BleachBit v1.6
. TempFileCleanup v1.0.1-TRON
* USB Device Cleanup v1.1.0
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target_by_name.txt
* \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
* More updates from /u/tuxedo_jack, this time related to Toshiba bloatware
STAGE 3: Disinfect
* RogueKiller v10.5.10.0
* Sophos Virus Removal Tool v2.5.4, update defs
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.1.4.1018
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
* Adobe Flash Player v17.0.0.169 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
* Java Runtime Environment 8u45 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
. Defraggler v2.19.0.982
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.2.0.1
. autoruns v13.2
* ComboFix v15.4.14.1
. Junkware Removal Tool v6.5.2
. Net Adapter Repair v1.2
. PC Hunter v1.35 x64
. PC Hunter v1.35 x86
. ServicesRepair.exe v1.0.0.3
+ UserBenchMark v2.6.0.0 // A quick system benchmark tool. Thanks to /u/cuddlychops06
. VirusTotal uploader tool v2.2
########################
# v6.1.4 // 2015-04-09 #
########################
tron.bat v6.1.4
+ stage_0_prep:rkill: Add process whitelist to rkill, populated with various user-suggested remote support tools (TeamViewer, etc). Should prevent them from getting nuked when Tron is being run remotely
STAGE 0: Prep
* Rkill v2.7.0.0
+ Add rkill_process_whitelist.txt, populated with remote various user-suggested remote support tools (TeamViewer, etc)
Add any programs you want to keep alive while Tron is running to this list
. ProcessKiller v1.1.0-TRON
. TDSS Killer v3.0.0.42
. McAfee Stinger v12.1.0.1443
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.04.5151
. BleachBit v1.6
. TempFileCleanup v1.0.1-TRON
. USB Device Cleanup v0.9.0
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target_by_name.txt
* \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
* Add a few more HP-related entries. Thanks to /u/tuxedo_jack
STAGE 3: Disinfect
. RogueKiller v10.5.8.0
* Sophos Virus Removal Tool v2.5.4, update defs
. Kaspersky Virus Removal Tool v15.0.19.0
. Malwarebytes Anti-Malware v2.1.4.1018
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v17.0.0.134 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u40 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
. Defraggler v2.19.0.982
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v4.2.0.0
- aswMBR v1.0.1.2252 // REMOVED
. autoruns v13.2
. ComboFix v15.4.9.1
. Junkware Removal Tool v6.5.2
- Malwarebytes Anti-Rootkit v1.09.1.1004 // REMOVED, this functionality is included in MBAM (check "remove rootkits")
. Net Adapter Repair v1.2
+ PC Hunter v1.35 x64
* PC Hunter v1.35 x86
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v6.1.3 // 2015-04-06 #
########################
tron.bat v6.1.3
! tron.bat:updater: Fix updater bug where download failed integrity check even when file was correct. Thanks to /u/aheath1992
! tron.bat:resume: Tune resume feature, should hopefully reduce incorrectly-detected interrupted runs. Don't re-create tron_resume RunOnce entry
if we detect we're resuming from a previous interruption. Although we may get interrupted again, this should help prevent
getting stuck in a resume-loop over and over
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.1.0-TRON
. TDSS Killer v3.0.0.42
* McAfee Stinger v12.1.0.1443
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.04.5151
. BleachBit v1.6
. TempFileCleanup v1.0.1-TRON
. USB Device Cleanup v0.9.0
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target_by_name.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.5.8.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Kaspersky Virus Removal Tool v15.0.19.0, update defs
. Malwarebytes Anti-Malware v2.1.4.1018
STAGE 4: Patch
* 7-Zip v9.38 (multi-language)
- Remove logging of ftype and assoc output since it's not of any consequence. This should suppress extraneous "file not found" messages. Thanks to /u/swtester
. Adobe Flash Player v17.0.0.134 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u40 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
. Defraggler v2.19.0.982
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v4.2.0.0
. aswMBR v1.0.1.2252
. autoruns v13.2
* ComboFix v15.4.1.1
* Junkware Removal Tool v6.5.2
. Malwarebytes Anti-Rootkit v1.09.1.1004
. Net Adapter Repair v1.2
. PC Hunter v1.0.0.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v6.1.2 // 2015-04-03 #
########################
tron.bat v6.1.2
+ tron.bat:flags: Add -np flag and associated NO_PAUSE variable. Use this to skip the "pause" statement at the end of Tron. Thanks to /u/geeklogan
/ stage_2_de-bloat:names: Rename "programs_to_target.txt" to "programs_to_target_by_name.txt"
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.1.0-TRON
. TDSS Killer v3.0.0.42
. McAfee Stinger v12.1.0.1427
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.04.5151
. BleachBit v1.6
. TempFileCleanup v1.0.1-TRON
. USB Device Cleanup v0.9.0
STAGE 2: De-bloat
* \resources\stage_2_de-bloat\programs_to_target_by_name.txt
+ Add quite a few entries, thanks to /u/mnbitcoin
* Remove all specific HP sub-entries (HP Advisor, HP Setup, etc) and collapse into simply "HP%%"
* \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
+ Add quite a few entries, thanks to /u/tuxedo_jack
STAGE 3: Disinfect
. RogueKiller v10.5.7.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Kaspersky Virus Removal Tool v15.0.19.0, update defs
. Malwarebytes Anti-Malware v2.1.4.1018
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v17.0.0.134 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u40 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
. Defraggler v2.19.0.982
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v4.2.0.0
. aswMBR v1.0.1.2252
. autoruns v13.2
. ComboFix v15.3.29.1
. Junkware Removal Tool v6.4.6
. Malwarebytes Anti-Rootkit v1.09.1.1004
. Net Adapter Repair v1.2
. PC Hunter v1.0.0.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v6.1.1 // 2015-04-01 #
########################
tron.bat v6.1.0
- \! stage_0_prep:tdssk: Revert TDSSK to v3.0.0.42 due to crash bug where it was deleting tron.bat as suspicious due to the RunOnce registry entry we create. Currently searching for a better solution
########################
# v6.1.0 // 2015-03-29 #
########################
tron.bat v6.1.0
* tron.bat:logging: Simplify from four logging functions to one. Add additional variables to support storing Tron logs, backups, etc in different locations vs. a hard-coded sub-directory of LOGPATH. Thanks to /u/douglas_swehla
/ tron.bat:date: Move code that gets the date into ISO 8601 format to top of script so it can be used in log paths
* tron.bat:cli_args: Convert CLI argument parsing to a function to eliminate duplicate code block. Thanks to /u/douglas_swehla
* tron.bat:logging: Add current step and tool to window title while scanning. Thanks to /u/ziffzuh
+ stage_3_disinfect:kvrt: Add Kaspersky Virus Removal Tool. Should grant significant speed increase over Vipre. Thanks to /u/kamakaze_chickn and /u/cuddlychops06
- stage_3_disinfect:vipre: Remove Vipre Rescue Scanner. Just wasn't effective enough for the significant time it cost us
STAGE 0: Prep
. Rkill v2.7.0.0
* ProcessKiller v1.1.0-TRON // Thanks to /u/cuddlychops06
- Remove VTTimer.exe exclusion (Seen only on old XP machines)
+ Add conhost.exe exclusion (Prevent killing console apps)
+ Add vmtoolsd.exe exclusion (Prevent killing VMWare Tools)
+ Add LogMeIn.exe exclusion (Prevent killing LogMeIn support tool)
* TDSS Killer v3.0.0.44
. McAfee Stinger v12.1.0.1427
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.04.5151
. BleachBit v1.6
. TempFileCleanup v1.0.1-TRON
. USB Device Cleanup v0.9.0
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
. RogueKiller v10.5.7.0
* Sophos Virus Removal Tool v2.5.4, update defs
+ Kaspersky Virus Removal Tool v15.0.19.0
- Vipre Rescue Scanner REMOVED
. Malwarebytes Anti-Malware v2.1.4.1018
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v17.0.0.134 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u40 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
. Defraggler v2.19.0.982
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.2.0.0
. aswMBR v1.0.1.2252
. autoruns v13.2
. ComboFix v15.3.29.1
. Junkware Removal Tool v6.4.6
* Malwarebytes Anti-Rootkit v1.09.1.1004
. Net Adapter Repair v1.2
. PC Hunter v1.0.0.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v6.0.1 // 2015-03-26 #
########################
tron.bat v6.0.1
! stage_1_tempclean:usb: Fix crash error in USB device cleanup due to missing closing bracket. Thanks to /u/Satiex for reporting
########################
# v6.0.0 // 2015-03-25 #
########################
* Improvements and fixes for grammar, logging, and consistency in almost all sub-scripts and utilities across the board
tron.bat v6.0.0
+ tron.bat: Add resume function. Tron will now attempt to pick up at the last stage it successfully started if there is an interruption. You do have to log back in as the user that originally ran Tron, but assuming the Tron folder didn't move it should automatically re-launch at the last stage. Major thanks to /u/cuddlychops06 for assistance with this
+ stage_0_prep:sysrstr: Create System Restore checkpoint before beginning script operations. Windows client versions only, Vista and up (no Server versions)
+ stage_0_prep:stinger: Add McAfee Stinger tool, configured to delete infected items. Thanks to /u/upsurper
! stage_0_prep:admin: Fix broken Administrator rights check due to minor syntax error. This has been broken since at least v2.2.1 (2014-08-21)
/ stage_0_prep:checks: Move Administrator rights check before main menu and EULA screen
/ stage_0_prep:checks: Move Safe Mode checks before main menu
! stage_0_prep:power: Fix minor errors in power scheme export (Vista and up)
* stage_1_tempclean:bb: Add support for -v flag to BleachBit; BleachBit now dumps list of actions if -v flag is used
- stage_1_tempclean:ie: Remove redundant IE cleanup in TempFileCleanup.bat, since Tron runs this natively
! tron.bat:update: Fix error with update checker. Was failing cert check over HTTPS. Thanks to /u/upsurper
* tron.bat:logging: Major upgrade. Now use logging functions instead of two lines per event (one to console, one to logfile). This slows down the script slightly but lets us remove over 100 lines of code, as well as simplifies troubleshooting and maintenance. Major thanks to /u/douglas_swehla
/ stage_4_patch:7-zip: Send output from assoc and open-with commands to logfile instead of console
* stage_4_patch:java: Suppress unnecessary error messages about old versions not being found during previous version removal
! stage_4_patch:reader: Fix a few lines that were displaying messages instead of sending them to the log as intended
* stage_5_optimize:dfg: Defrag now only runs (assuming it wasn't skipped) if the system drive is at least 5% or more fragmented
* stage_6_wrap-up: Add message explaning disk space calculations to dissuade panic about seemingly negative disk space reclaimed
* stage_6_wrap-up: Sweep misc logs in LOGPATH left from the various sub-tools into %LOGPATH%\tron_raw_logs
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
+ McAfee Stinger v12.1.0.1427
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.04.5151
. BleachBit v1.6
* TempFileCleanup v1.0.1-TRON
* USB Device Cleanup v0.9.0
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
* \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.5.7.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.1.4.1018
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v17.0.0.134 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u40 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
* Defraggler v2.19.0.982
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.1.3
. aswMBR v1.0.1.2252
. autoruns v13.2
* ComboFix v15.3.25.1
- gmer v2.1.19357 // removed due to inclusion of PC Hunter
* Junkware Removal Tool v6.4.6
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
+ PC Hunter v1.0.0.2 // replaces gmer
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v5.0.2 // 2015-03-20 #
########################
tron.bat v5.0.2
. No changes to Tron.bat, just sub-tool and definition updates
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.03.5128
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.5.5.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
* Malwarebytes Anti-Malware v2.1.4.1018
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
* Adobe Flash Player v17.0.0.134 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
* Java Runtime Environment 8u40 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
* smartctl v6.3.0.3976 2014-07-26 r3976
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.1.2
. aswMBR v1.0.1.2252
* autoruns v13.2
* ComboFix v15.3.14.3
. gmer v2.1.19357
* Junkware Removal Tool v6.4.5
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v5.0.1 // 2015-03-13 #
########################
tron.bat v5.0.1
/ stage_3_disinfect:sophos: Update Sophos with current version, old version was failing updates
STAGE 3: Disinfect
/ Sophos Virus Removal Tool v2.5.4, Update to latest version, old version was failing updates
########################
# v5.0.0 // 2015-03-05 #
########################
tron.bat v5.0.0
* tron.bat: Significant robustness improvement against missing files or directories. Tron now does relative path calls directly to each sub-utility rather than "walking"
in and out the sub-directories in the \resources tree. Now if a file or directory is missing only that section will fail, rather than the entire script.
A side benefit is it's now easier to drop a replacement Tron.bat on top of an older \resources tree without having to worry about Tron getting "off track" based on the underlying directory structure
* tron.bat: Many minor bug fixes and general script cleanup
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.03.5128
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
* \resources\stage_2_de-bloat\programs_to_target.txt
- Remove many specific entries targeting a program with "Savings" in the name and replace with single wild-card %%Savings%%. Should grant small speed increase.
* \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
- Add four additional MSI codes for Lenovo OEM bloatware apps. Thanks to /u/tuxedo_jack
STAGE 3: Disinfect
* RogueKiller v10.5.1.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v16.0.0.305 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
* Java Runtime Environment 8u40 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
* smartctl v6.3.0.3976 2014-07-26 r3976
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v4.1.1.1
. aswMBR v1.0.1.2252
. autoruns v12.03
* ComboFix v15.3.1.1
. gmer v2.1.19357
* Junkware Removal Tool v6.4.3
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v4.9.1 // 2015-02-26 #
########################
tron.bat v4.9.1
! stage_0_prep:update: Fix crash bug due to missing closing bracket. Thanks to /u/pushpak359
########################
# v4.9.0 // 2015-02-25 #
########################
tron.bat v4.9.0
+ FEATURE: Add -se flag and associated SKIP_EVENT_LOG_CLEAR variable. Use these to prevent Tron from backing up and clearing the Windows Event Logs. Thanks to /u/auldnic
! stage_0_prep:power: Fix crash condition on Vista Home Premium if the -p (preserve power settings) flag was used. Thanks to /u/XtraSharp for being brave enough to touch Vista Home Premium and finding this obscure crash condition
* stage_0_prep:update: Change update checker to use HTTPS URL. Thanks to /u/SGC-Hosting for providing an SSL certificate!
! stage_3_disinfect:dism: Fix bug where Tron would get out of step with directory structure due to extra popd statement
/ stage_4_patch:dism: Remove tron_dism_base_reset.log and tron_dism.log instead of leaving them around after adding to the main log file
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.02.5101
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
. RogueKiller v10.4.0.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v16.0.0.305 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u31 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v4.1.1.1
. aswMBR v1.0.1.2252
. autoruns v12.03
. ComboFix v15.2.16.1
. gmer v2.1.19357
. Junkware Removal Tool v6.4.2
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v4.8.0 // 2015-02-18 #
########################
tron.bat v4.8.0
+ wrap-up:feature: Add -gsl flag and associated GENERATE_SUMMARY_LOGS variable. Use this to generate separate summary logs in the LOGPATH directory (can help create an invoice).
If EMAIL_REPORT (-er) was used, the summary logs will be attached to the email report. We'll try to enhance this in the next release to also show # of infected items if possible. Thanks to /u/Reverent and /u/upsurper
! stage_3_disinfect: Critical bug fix; script was failing after MBAM due to getting out of step with directory structure from a missing popd statement. Thanks to /u/oromeo
! stage_6_wrap-up: Fix bug where email report was sent even if DRY_RUN was set
! misc:bugfix: Fix many bugs and syntax errors
/ stage_0_prep:log: Clear log file at each run instead of appending to it
/ misc: Reduce default AUTO_REBOOT_DELAY from 30 to 15 seconds
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.02.5101
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.4.0.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v16.0.0.305 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u31 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.1.1
. aswMBR v1.0.1.2252
. autoruns v12.03
* ComboFix v15.2.16.1
. gmer v2.1.19357
. Junkware Removal Tool v6.4.2
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v4.7.4 // 2015-02-16 #
########################
STAGE 0: Prep
! TDSS Killer v3.0.0.42 // revert to previous version due to many reports of script stalling at this point
########################
# v4.7.3 // 2015-02-11 #
########################
STAGE 4: Patch
! Fix missing Flash installers. Thanks to /u/KindOne and /u/techniforus
########################
# v4.7.2 // 2015-02-10 #
########################
tron.bat v4.7.2
+ stage_0_prep:sleep: Add disabling of system sleep when laptop lid closes (Vista and up). Thanks to /u/ComputersByte
* stage_0_prep:sleep: Remove redundant code block which tested for Windows XP and Server 2003 separately. Now test for both SKUs in one block
/ stage_0_prep:wmi: Move WMI repair four jobs earlier since so much depends on it functioning correctly. May pull it out of Stage 0 at some point and place it in pre-run prep and checks
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.44
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.02.5101
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
* \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
. RogueKiller v10.2.0.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
* Adobe Flash Player v16.0.0.305 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u31 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945