-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathwindows-exes-list.txt
2261 lines (2261 loc) · 193 KB
/
windows-exes-list.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
C:\Windows\assembly\GAC_32\MSBuild\3.5.0.0__b03f5f7f11d50a3a\MSBuild.exe
C:\Windows\assembly\GAC_64\MSBuild\3.5.0.0__b03f5f7f11d50a3a\MSBuild.exe
C:\Windows\assembly\GAC_MSIL\ComSvcConfig\3.0.0.0__b03f5f7f11d50a3a\ComSvcConfig.exe
C:\Windows\assembly\GAC_MSIL\dfsvc\2.0.0.0__b03f5f7f11d50a3a\dfsvc.exe
C:\Windows\assembly\GAC_MSIL\Narrator\6.1.0.0__31bf3856ad364e35\Narrator.exe
C:\Windows\assembly\GAC_MSIL\PresentationFontCache\3.0.0.0__31bf3856ad364e35\PresentationFontCache.exe
C:\Windows\assembly\GAC_MSIL\SMSvcHost\3.0.0.0__b03f5f7f11d50a3a\SMSvcHost.exe
C:\Windows\assembly\GAC_MSIL\WsatConfig\3.0.0.0__b03f5f7f11d50a3a\WsatConfig.exe
C:\Windows\bfsvc.exe
C:\Windows\Boot\PCAT\memtest.exe
C:\Windows\DAODx.exe
C:\Windows\Downloaded Program Files\Manager.exe
C:\Windows\Downloaded Program Files\TransferMgr.exe
C:\Windows\explorer.exe
C:\Windows\fveupdate.exe
C:\Windows\HelpPane.exe
C:\Windows\hh.exe
C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.Workflow.Compiler\v4.0_4.0.0.0__31bf3856ad364e35\Microsoft.Workflow.Compiler.exe
C:\Windows\Microsoft.NET\assembly\GAC_MSIL\WcfSvcHost\v4.0_10.0.0.0__31bf3856ad364e35\WcfSvcHost.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\AppLaunch.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_compiler.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_regbrowsers.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_regiis.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_regsql.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_state.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_wp.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\CasPol.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\csc.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\cvtres.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\dfsvc.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\dw20.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\IEExec.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\ilasm.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\InstallUtil.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\jsc.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Ldr64.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\MSBuild.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorsvw.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\ngen.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\RegAsm.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\RegSvcs.exe
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\vbc.exe
C:\Windows\Microsoft.NET\Framework64\v3.0\Windows Communication Foundation\ComSvcConfig.exe
C:\Windows\Microsoft.NET\Framework64\v3.0\Windows Communication Foundation\infocard.exe
C:\Windows\Microsoft.NET\Framework64\v3.0\Windows Communication Foundation\ServiceModelReg.exe
C:\Windows\Microsoft.NET\Framework64\v3.0\Windows Communication Foundation\SMConfigInstaller.exe
C:\Windows\Microsoft.NET\Framework64\v3.0\Windows Communication Foundation\SMSvcHost.exe
C:\Windows\Microsoft.NET\Framework64\v3.0\Windows Communication Foundation\WsatConfig.exe
C:\Windows\Microsoft.NET\Framework64\v3.0\WPF\PresentationFontCache.exe
C:\Windows\Microsoft.NET\Framework64\v3.0\WPF\XamlViewer\XamlViewer_v0300.exe
C:\Windows\Microsoft.NET\Framework64\v3.5\AddInProcess32.exe
C:\Windows\Microsoft.NET\Framework64\v3.5\AddInProcess.exe
C:\Windows\Microsoft.NET\Framework64\v3.5\AddInUtil.exe
C:\Windows\Microsoft.NET\Framework64\v3.5\csc.exe
C:\Windows\Microsoft.NET\Framework64\v3.5\DataSvcUtil.exe
C:\Windows\Microsoft.NET\Framework64\v3.5\EdmGen.exe
C:\Windows\Microsoft.NET\Framework64\v3.5\MSBuild.exe
C:\Windows\Microsoft.NET\Framework64\v3.5\vbc.exe
C:\Windows\Microsoft.NET\Framework64\v3.5\WFServicesReg.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\AddInProcess32.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\AddInProcess.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\AddInUtil.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\AppLaunch.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_compiler.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regbrowsers.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regsql.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_state.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_wp.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\CasPol.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ComSvcConfig.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\cvtres.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\DataSvcUtil.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\dfsvc.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\EdmGen.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ilasm.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\InstallUtil.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\jsc.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Microsoft.Workflow.Compiler.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\RegAsm.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\RegSvcs.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\regtlibv12.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ServiceModelReg.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\Setup.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\SetupUtility.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SMSvcHost.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\vbc.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\WsatConfig.exe
C:\Windows\Microsoft.NET\Framework\NETFXSBS10.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\AppLaunch.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regbrowsers.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regsql.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_wp.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\CasPol.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\cvtres.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\dfsvc.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\dw20.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\IEExec.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\ilasm.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\jsc.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorsvw.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\ngen.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegSvcs.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\vbc.exe
C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\ComSvcConfig.exe
C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\infocard.exe
C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\ServiceModelReg.exe
C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\SMConfigInstaller.exe
C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\SMSvcHost.exe
C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\WsatConfig.exe
C:\Windows\Microsoft.NET\Framework\v3.0\WPF\XamlViewer\XamlViewer_v0300.exe
C:\Windows\Microsoft.NET\Framework\v3.5\AddInProcess32.exe
C:\Windows\Microsoft.NET\Framework\v3.5\AddInProcess.exe
C:\Windows\Microsoft.NET\Framework\v3.5\AddInUtil.exe
C:\Windows\Microsoft.NET\Framework\v3.5\csc.exe
C:\Windows\Microsoft.NET\Framework\v3.5\DataSvcUtil.exe
C:\Windows\Microsoft.NET\Framework\v3.5\EdmGen.exe
C:\Windows\Microsoft.NET\Framework\v3.5\MSBuild.exe
C:\Windows\Microsoft.NET\Framework\v3.5\vbc.exe
C:\Windows\Microsoft.NET\Framework\v3.5\WFServicesReg.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\AddInProcess32.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\AddInProcess.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\AddInUtil.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\AppLaunch.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_compiler.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regbrowsers.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regsql.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_state.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_wp.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\CasPol.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\ComSvcConfig.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\cvtres.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\DataSvcUtil.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\dfsvc.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\EdmGen.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\ilasm.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\jsc.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Workflow.Compiler.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorsvw.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\RegSvcs.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\regtlibv12.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\ServiceModelReg.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\SMSvcHost.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\vbc.exe
C:\Windows\Microsoft.NET\Framework\v4.0.30319\WsatConfig.exe
C:\Windows\Microsoft.NET\NETFXRepair.exe
C:\Windows\notepad.exe
C:\Windows\Panther\setup.exe
C:\Windows\regedit.exe
C:\Windows\servicing\GC64\tzupd.exe
C:\Windows\servicing\TrustedInstaller.exe
C:\Windows\SoftwareDistribution\Download\Install\AM_Delta.exe
C:\Windows\Speech\Common\sapisvr.exe
C:\Windows\splwow64.exe
C:\Windows\System32\AdapterTroubleshooter.exe
C:\Windows\System32\aitagent.exe
C:\Windows\System32\alg.exe
C:\Windows\System32\appidcertstorecheck.exe
C:\Windows\System32\appidpolicyconverter.exe
C:\Windows\System32\appverif.exe
C:\Windows\System32\ARP.EXE
C:\Windows\System32\AtBroker.exe
C:\Windows\System32\at.exe
C:\Windows\System32\atiapfxx.exe
C:\Windows\System32\atibtmon.exe
C:\Windows\System32\atieclxx.exe
C:\Windows\System32\atiesrxx.exe
C:\Windows\System32\ATIODCLI.exe
C:\Windows\System32\ATIODE.exe
C:\Windows\System32\attrib.exe
C:\Windows\System32\audiodg.exe
C:\Windows\System32\auditpol.exe
C:\Windows\System32\autochk.exe
C:\Windows\System32\autoconv.exe
C:\Windows\System32\autofmt.exe
C:\Windows\System32\AxInstUI.exe
C:\Windows\System32\bcdboot.exe
C:\Windows\System32\bcdedit.exe
C:\Windows\System32\BdeUISrv.exe
C:\Windows\System32\BdeUnlockWizard.exe
C:\Windows\System32\bitsadmin.exe
C:\Windows\System32\bootcfg.exe
C:\Windows\System32\Boot\winload.exe
C:\Windows\System32\Boot\winresume.exe
C:\Windows\System32\bridgeunattend.exe
C:\Windows\System32\bthudtask.exe
C:\Windows\System32\cacls.exe
C:\Windows\System32\calc.exe
C:\Windows\System32\CertEnrollCtrl.exe
C:\Windows\System32\certreq.exe
C:\Windows\System32\certutil.exe
C:\Windows\System32\charmap.exe
C:\Windows\System32\chkdsk.exe
C:\Windows\System32\chkntfs.exe
C:\Windows\System32\choice.exe
C:\Windows\System32\CIDAEMON.EXE
C:\Windows\System32\cipher.exe
C:\Windows\System32\CISVC.EXE
C:\Windows\System32\cleanmgr.exe
C:\Windows\System32\cliconfg.exe
C:\Windows\System32\clinfo.exe
C:\Windows\System32\clip.exe
C:\Windows\System32\cmd.exe
C:\Windows\System32\cmdkey.exe
C:\Windows\System32\cmdl32.exe
C:\Windows\System32\cmmon32.exe
C:\Windows\System32\cmstp.exe
C:\Windows\System32\cofire.exe
C:\Windows\System32\colorcpl.exe
C:\Windows\System32\com\comrepl.exe
C:\Windows\System32\com\MigRegDB.exe
C:\Windows\System32\compact.exe
C:\Windows\System32\comp.exe
C:\Windows\System32\CompMgmtLauncher.exe
C:\Windows\System32\ComputerDefaults.exe
C:\Windows\System32\conhost.exe
C:\Windows\System32\consent.exe
C:\Windows\System32\control.exe
C:\Windows\System32\convert.exe
C:\Windows\System32\credwiz.exe
C:\Windows\System32\cscript.exe
C:\Windows\System32\csrss.exe
C:\Windows\System32\ctfmon.exe
C:\Windows\System32\cttune.exe
C:\Windows\System32\cttunesvr.exe
C:\Windows\System32\dccw.exe
C:\Windows\System32\dcomcnfg.exe
C:\Windows\System32\ddodiag.exe
C:\Windows\System32\Defrag.exe
C:\Windows\System32\DeviceDisplayObjectProvider.exe
C:\Windows\System32\DeviceEject.exe
C:\Windows\System32\DevicePairingWizard.exe
C:\Windows\System32\DeviceProperties.exe
C:\Windows\System32\DFDWiz.exe
C:\Windows\System32\dfrgui.exe
C:\Windows\System32\dialer.exe
C:\Windows\System32\diantz.exe
C:\Windows\System32\dinotify.exe
C:\Windows\System32\diskpart.exe
C:\Windows\System32\diskperf.exe
C:\Windows\System32\diskraid.exe
C:\Windows\System32\Dism\DismHost.exe
C:\Windows\System32\Dism.exe
C:\Windows\System32\dispdiag.exe
C:\Windows\System32\DisplaySwitch.exe
C:\Windows\System32\djoin.exe
C:\Windows\System32\dllhost.exe
C:\Windows\System32\dllhst3g.exe
C:\Windows\System32\dnscacheugc.exe
C:\Windows\System32\doskey.exe
C:\Windows\System32\dpapimig.exe
C:\Windows\System32\DpiScaling.exe
C:\Windows\System32\dpnsvr.exe
C:\Windows\System32\driverquery.exe
C:\Windows\System32\DriverStore\FileRepository\brmfcmf.inf_amd64_neutral_67b5984f8e8ff717\BrmfRsmg.exe
C:\Windows\System32\DriverStore\FileRepository\brmfcwia.inf_amd64_neutral_817b8835aed3d6b7\BrmfRsmg.exe
C:\Windows\System32\DriverStore\FileRepository\bth.inf_amd64_neutral_ca26c6da62d71ca8\fsquirt.exe
C:\Windows\System32\DriverStore\FileRepository\bth.inf_amd64_neutral_de0494b6391d872c\fsquirt.exe
C:\Windows\System32\DriverStore\FileRepository\bth.inf_amd64_neutral_e54666f6a3e5af91\fsquirt.exe
C:\Windows\System32\DriverStore\FileRepository\c7113815.inf_amd64_neutral_a02a0fbbc7ab7319\B111904\atiapfxx.exe
C:\Windows\System32\DriverStore\FileRepository\c7113815.inf_amd64_neutral_a02a0fbbc7ab7319\B111904\atibtmon.exe
C:\Windows\System32\DriverStore\FileRepository\c7113815.inf_amd64_neutral_a02a0fbbc7ab7319\B111904\atieclxx.exe
C:\Windows\System32\DriverStore\FileRepository\c7113815.inf_amd64_neutral_a02a0fbbc7ab7319\B111904\atiesrxx.exe
C:\Windows\System32\DriverStore\FileRepository\c7113815.inf_amd64_neutral_a02a0fbbc7ab7319\B111904\ATIODCLI.exe
C:\Windows\System32\DriverStore\FileRepository\c7113815.inf_amd64_neutral_a02a0fbbc7ab7319\B111904\ATIODE.exe
C:\Windows\System32\DriverStore\FileRepository\c7118908.inf_amd64_neutral_8dc4ff304e4afff6\B117547\atiapfxx.exe
C:\Windows\System32\DriverStore\FileRepository\c7118908.inf_amd64_neutral_8dc4ff304e4afff6\B117547\atibtmon.exe
C:\Windows\System32\DriverStore\FileRepository\c7118908.inf_amd64_neutral_8dc4ff304e4afff6\B117547\atieclxx.exe
C:\Windows\System32\DriverStore\FileRepository\c7118908.inf_amd64_neutral_8dc4ff304e4afff6\B117547\atiesrxx.exe
C:\Windows\System32\DriverStore\FileRepository\c7118908.inf_amd64_neutral_8dc4ff304e4afff6\B117547\ATIODCLI.exe
C:\Windows\System32\DriverStore\FileRepository\c7118908.inf_amd64_neutral_8dc4ff304e4afff6\B117547\ATIODE.exe
C:\Windows\System32\DriverStore\FileRepository\c7145315.inf_amd64_neutral_f55a38a2f9d6726c\B143900\atiapfxx.exe
C:\Windows\System32\DriverStore\FileRepository\c7145315.inf_amd64_neutral_f55a38a2f9d6726c\B143900\atibtmon.exe
C:\Windows\System32\DriverStore\FileRepository\c7145315.inf_amd64_neutral_f55a38a2f9d6726c\B143900\atieclxx.exe
C:\Windows\System32\DriverStore\FileRepository\c7145315.inf_amd64_neutral_f55a38a2f9d6726c\B143900\atiesrxx.exe
C:\Windows\System32\DriverStore\FileRepository\c7145315.inf_amd64_neutral_f55a38a2f9d6726c\B143900\ATIODCLI.exe
C:\Windows\System32\DriverStore\FileRepository\c7145315.inf_amd64_neutral_f55a38a2f9d6726c\B143900\ATIODE.exe
C:\Windows\System32\DriverStore\FileRepository\divacx64.inf_amd64_neutral_fa0f82f024789743\ditrace.exe
C:\Windows\System32\DriverStore\FileRepository\divacx64.inf_amd64_neutral_fa0f82f024789743\xlog.exe
C:\Windows\System32\DriverStore\FileRepository\hdxrt.inf_amd64_neutral_2f70e3e14c4006d8\AERTSr64.exe
C:\Windows\System32\DriverStore\FileRepository\hdxrt.inf_amd64_neutral_2f70e3e14c4006d8\FMAPP.exe
C:\Windows\System32\DriverStore\FileRepository\hdxrt.inf_amd64_neutral_2f70e3e14c4006d8\RAVBg64.exe
C:\Windows\System32\DriverStore\FileRepository\hdxrt.inf_amd64_neutral_2f70e3e14c4006d8\RAVCpl64.exe
C:\Windows\System32\DriverStore\FileRepository\hdxrt.inf_amd64_neutral_2f70e3e14c4006d8\RtkAudioService64.exe
C:\Windows\System32\DriverStore\FileRepository\hdxrt.inf_amd64_neutral_2f70e3e14c4006d8\RtlUpd64.exe
C:\Windows\System32\DriverStore\FileRepository\hdxrt.inf_amd64_neutral_2f70e3e14c4006d8\SkyTel.exe
C:\Windows\System32\DriverStore\FileRepository\hdxrt.inf_amd64_neutral_2f70e3e14c4006d8\vncutil64.exe
C:\Windows\System32\drvinst.exe
C:\Windows\System32\dvdplay.exe
C:\Windows\System32\dvdupgrd.exe
C:\Windows\System32\dwm.exe
C:\Windows\System32\DWWIN.EXE
C:\Windows\System32\dxcpl.exe
C:\Windows\System32\dxdiag.exe
C:\Windows\System32\Dxpserver.exe
C:\Windows\System32\Eap3Host.exe
C:\Windows\System32\efsui.exe
C:\Windows\System32\EhStorAuthn.exe
C:\Windows\System32\esentutl.exe
C:\Windows\System32\eudcedit.exe
C:\Windows\System32\eventcreate.exe
C:\Windows\System32\eventvwr.exe
C:\Windows\System32\expand.exe
C:\Windows\System32\extrac32.exe
C:\Windows\System32\fc.exe
C:\Windows\System32\find.exe
C:\Windows\System32\findstr.exe
C:\Windows\System32\finger.exe
C:\Windows\System32\fixmapi.exe
C:\Windows\System32\fltMC.exe
C:\Windows\System32\fontview.exe
C:\Windows\System32\forfiles.exe
C:\Windows\System32\fsutil.exe
C:\Windows\System32\ftp.exe
C:\Windows\System32\fvenotify.exe
C:\Windows\System32\fveprompt.exe
C:\Windows\System32\getmac.exe
C:\Windows\System32\GettingStarted.exe
C:\Windows\System32\gpresult.exe
C:\Windows\System32\gpupdate.exe
C:\Windows\System32\grpconv.exe
C:\Windows\System32\hdwwiz.exe
C:\Windows\System32\help.exe
C:\Windows\System32\HOSTNAME.EXE
C:\Windows\System32\icacls.exe
C:\Windows\System32\icardagt.exe
C:\Windows\System32\icsunattend.exe
C:\Windows\System32\ie4uinit.exe
C:\Windows\System32\ieUnatt.exe
C:\Windows\System32\iexpress.exe
C:\Windows\System32\iisreset.exe
C:\Windows\System32\IME\IMEJP10\IMJPDADM.EXE
C:\Windows\System32\IME\IMEJP10\IMJPDCT.EXE
C:\Windows\System32\IME\IMEJP10\IMJPDSVR.EXE
C:\Windows\System32\IME\IMEJP10\IMJPMGR.EXE
C:\Windows\System32\IME\IMEJP10\imjppdmg.exe
C:\Windows\System32\IME\IMEJP10\imjpuexc.exe
C:\Windows\System32\IME\IMEJP10\IMJPUEX.EXE
C:\Windows\System32\IME\IMESC5\IMSCPROP.exe
C:\Windows\System32\IME\IMETC10\IMTCPROP.exe
C:\Windows\System32\IME\shared\IMCCPHR.exe
C:\Windows\System32\IME\shared\IMEPADSV.EXE
C:\Windows\System32\inetsrv\appcmd.exe
C:\Windows\System32\inetsrv\aspnetca.exe
C:\Windows\System32\inetsrv\iisrstas.exe
C:\Windows\System32\inetsrv\iissetup.exe
C:\Windows\System32\inetsrv\inetinfo.exe
C:\Windows\System32\inetsrv\InetMgr6.exe
C:\Windows\System32\inetsrv\InetMgr.exe
C:\Windows\System32\inetsrv\w3wp.exe
C:\Windows\System32\inetsrv\WMSvc.exe
C:\Windows\System32\InfDefaultInstall.exe
C:\Windows\System32\ipconfig.exe
C:\Windows\System32\irftp.exe
C:\Windows\System32\iscsicli.exe
C:\Windows\System32\iscsicpl.exe
C:\Windows\System32\isintsup.exe
C:\Windows\System32\isoburn.exe
C:\Windows\System32\klist.exe
C:\Windows\System32\ksetup.exe
C:\Windows\System32\ktmutil.exe
C:\Windows\System32\label.exe
C:\Windows\System32\LocationNotifications.exe
C:\Windows\System32\Locator.exe
C:\Windows\System32\lodctr.exe
C:\Windows\System32\logagent.exe
C:\Windows\System32\logman.exe
C:\Windows\System32\LogonUI.exe
C:\Windows\System32\lpksetup.exe
C:\Windows\System32\lpremove.exe
C:\Windows\System32\lsass.exe
C:\Windows\System32\lsm.exe
C:\Windows\System32\Macromed\Flash\FlashUtil64_11_4_402_287_ActiveX.exe
C:\Windows\System32\Magnify.exe
C:\Windows\System32\makecab.exe
C:\Windows\System32\manage-bde.exe
C:\Windows\System32\mblctr.exe
C:\Windows\System32\mcbuilder.exe
C:\Windows\System32\mctadmin.exe
C:\Windows\System32\MdRes.exe
C:\Windows\System32\MdSched.exe
C:\Windows\System32\mfpmp.exe
C:\Windows\System32\microsoft.windows.softwarelogo.showdesktop.exe
C:\Windows\System32\MigAutoPlay.exe
C:\Windows\System32\migwiz\mighost.exe
C:\Windows\System32\migwiz\MigSetup.exe
C:\Windows\System32\migwiz\migwiz.exe
C:\Windows\System32\migwiz\PostMig.exe
C:\Windows\System32\mmc.exe
C:\Windows\System32\mobsync.exe
C:\Windows\System32\mountvol.exe
C:\Windows\System32\mpnotify.exe
C:\Windows\System32\MpSigStub.exe
C:\Windows\System32\MRINFO.EXE
C:\Windows\System32\MRT.exe
C:\Windows\System32\msconfig.exe
C:\Windows\System32\msdtc.exe
C:\Windows\System32\msdt.exe
C:\Windows\System32\msfeedssync.exe
C:\Windows\System32\mshta.exe
C:\Windows\System32\msiexec.exe
C:\Windows\System32\msinfo32.exe
C:\Windows\System32\mspaint.exe
C:\Windows\System32\msra.exe
C:\Windows\System32\mstsc.exe
C:\Windows\System32\mtstocom.exe
C:\Windows\System32\MuiUnattend.exe
C:\Windows\System32\MultiDigiMon.exe
C:\Windows\System32\NAPSTAT.EXE
C:\Windows\System32\Narrator.exe
C:\Windows\System32\nbtstat.exe
C:\Windows\System32\ndadmin.exe
C:\Windows\System32\net1.exe
C:\Windows\System32\netbtugc.exe
C:\Windows\System32\netcfg.exe
C:\Windows\System32\net.exe
C:\Windows\System32\netiougc.exe
C:\Windows\System32\Netplwiz.exe
C:\Windows\System32\netsh.exe
C:\Windows\System32\NETSTAT.EXE
C:\Windows\System32\newdev.exe
C:\Windows\System32\nltest.exe
C:\Windows\System32\notepad.exe
C:\Windows\System32\nslookup.exe
C:\Windows\System32\ntoskrnl.exe
C:\Windows\System32\ntprint.exe
C:\Windows\System32\ocsetup.exe
C:\Windows\System32\odbcad32.exe
C:\Windows\System32\odbcconf.exe
C:\Windows\System32\oobe\audit.exe
C:\Windows\System32\oobe\msoobe.exe
C:\Windows\System32\oobe\oobeldr.exe
C:\Windows\System32\oobe\Setup.exe
C:\Windows\System32\oobe\setupsqm.exe
C:\Windows\System32\oobe\windeploy.exe
C:\Windows\System32\openfiles.exe
C:\Windows\System32\OptionalFeatures.exe
C:\Windows\System32\osk.exe
C:\Windows\System32\OxpsConverter.exe
C:\Windows\System32\p2phost.exe
C:\Windows\System32\PATHPING.EXE
C:\Windows\System32\pcalua.exe
C:\Windows\System32\pcaui.exe
C:\Windows\System32\pcawrk.exe
C:\Windows\System32\pcwrun.exe
C:\Windows\System32\perfmon.exe
C:\Windows\System32\PING.EXE
C:\Windows\System32\PkgMgr.exe
C:\Windows\System32\plasrv.exe
C:\Windows\System32\PnPUnattend.exe
C:\Windows\System32\PnPutil.exe
C:\Windows\System32\poqexec.exe
C:\Windows\System32\powercfg.exe
C:\Windows\System32\PresentationHost.exe
C:\Windows\System32\prevhost.exe
C:\Windows\System32\print.exe
C:\Windows\System32\printfilterpipelinesvc.exe
C:\Windows\System32\PrintIsolationHost.exe
C:\Windows\System32\printui.exe
C:\Windows\System32\proquota.exe
C:\Windows\System32\psr.exe
C:\Windows\System32\rasautou.exe
C:\Windows\System32\rasdial.exe
C:\Windows\System32\raserver.exe
C:\Windows\System32\rasphone.exe
C:\Windows\System32\rdrleakdiag.exe
C:\Windows\System32\rdrmemptylst.exe
C:\Windows\System32\ReAgentc.exe
C:\Windows\System32\recdisc.exe
C:\Windows\System32\recover.exe
C:\Windows\System32\regedt32.exe
C:\Windows\System32\reg.exe
C:\Windows\System32\RegisterIEPKEYs.exe
C:\Windows\System32\regsvr32.exe
C:\Windows\System32\rekeywiz.exe
C:\Windows\System32\relog.exe
C:\Windows\System32\RelPost.exe
C:\Windows\System32\repair-bde.exe
C:\Windows\System32\replace.exe
C:\Windows\System32\resmon.exe
C:\Windows\System32\RMActivate.exe
C:\Windows\System32\RMActivate_isv.exe
C:\Windows\System32\RMActivate_ssp.exe
C:\Windows\System32\RMActivate_ssp_isv.exe
C:\Windows\System32\RmClient.exe
C:\Windows\System32\Robocopy.exe
C:\Windows\System32\ROUTE.EXE
C:\Windows\System32\RpcPing.exe
C:\Windows\System32\rrinstaller.exe
C:\Windows\System32\rstrui.exe
C:\Windows\System32\runas.exe
C:\Windows\System32\rundll32.exe
C:\Windows\System32\RunLegacyCPLElevated.exe
C:\Windows\System32\runonce.exe
C:\Windows\System32\sc.exe
C:\Windows\System32\schtasks.exe
C:\Windows\System32\sdbinst.exe
C:\Windows\System32\sdchange.exe
C:\Windows\System32\sdclt.exe
C:\Windows\System32\sdiagnhost.exe
C:\Windows\System32\SearchFilterHost.exe
C:\Windows\System32\SearchIndexer.exe
C:\Windows\System32\SearchProtocolHost.exe
C:\Windows\System32\SecEdit.exe
C:\Windows\System32\secinit.exe
C:\Windows\System32\services.exe
C:\Windows\System32\sethc.exe
C:\Windows\System32\SetIEInstalledDate.exe
C:\Windows\System32\setspn.exe
C:\Windows\System32\setupcl.exe
C:\Windows\System32\setupugc.exe
C:\Windows\System32\setx.exe
C:\Windows\System32\sfc.exe
C:\Windows\System32\shrpubw.exe
C:\Windows\System32\shutdown.exe
C:\Windows\System32\sigverif.exe
C:\Windows\System32\slui.exe
C:\Windows\System32\smss.exe
C:\Windows\System32\SndVol.exe
C:\Windows\System32\SnippingTool.exe
C:\Windows\System32\snmptrap.exe
C:\Windows\System32\sort.exe
C:\Windows\System32\SoundRecorder.exe
C:\Windows\System32\Speech\SpeechUX\SpeechUXTutorial.exe
C:\Windows\System32\Speech\SpeechUX\SpeechUXWiz.exe
C:\Windows\System32\spinstall.exe
C:\Windows\System32\spoolsv.exe
C:\Windows\System32\sppsvc.exe
C:\Windows\System32\spreview.exe
C:\Windows\System32\srdelayed.exe
C:\Windows\System32\StikyNot.exe
C:\Windows\System32\subst.exe
C:\Windows\System32\svchost.exe
C:\Windows\System32\sxstrace.exe
C:\Windows\System32\SyncHost.exe
C:\Windows\System32\syskey.exe
C:\Windows\System32\sysprep\sysprep.exe
C:\Windows\System32\systeminfo.exe
C:\Windows\System32\SystemPropertiesAdvanced.exe
C:\Windows\System32\SystemPropertiesComputerName.exe
C:\Windows\System32\SystemPropertiesDataExecutionPrevention.exe
C:\Windows\System32\SystemPropertiesHardware.exe
C:\Windows\System32\SystemPropertiesPerformance.exe
C:\Windows\System32\SystemPropertiesProtection.exe
C:\Windows\System32\SystemPropertiesRemote.exe
C:\Windows\System32\systray.exe
C:\Windows\System32\tabcal.exe
C:\Windows\System32\takeown.exe
C:\Windows\System32\TapiUnattend.exe
C:\Windows\System32\taskeng.exe
C:\Windows\System32\taskhost.exe
C:\Windows\System32\taskkill.exe
C:\Windows\System32\tasklist.exe
C:\Windows\System32\taskmgr.exe
C:\Windows\System32\tcmsetup.exe
C:\Windows\System32\TCPSVCS.EXE
C:\Windows\System32\telnet.exe
C:\Windows\System32\TFTP.EXE
C:\Windows\System32\timeout.exe
C:\Windows\System32\TpmInit.exe
C:\Windows\System32\tracerpt.exe
C:\Windows\System32\TRACERT.EXE
C:\Windows\System32\TSTheme.exe
C:\Windows\System32\TsUsbRedirectionGroupPolicyControl.exe
C:\Windows\System32\TSWbPrxy.exe
C:\Windows\System32\TsWpfWrp.exe
C:\Windows\System32\typeperf.exe
C:\Windows\System32\tzutil.exe
C:\Windows\System32\ucsvc.exe
C:\Windows\System32\UI0Detect.exe
C:\Windows\System32\unlodctr.exe
C:\Windows\System32\unregmp2.exe
C:\Windows\System32\upnpcont.exe
C:\Windows\System32\UserAccountControlSettings.exe
C:\Windows\System32\userinit.exe
C:\Windows\System32\Utilman.exe
C:\Windows\System32\VaultCmd.exe
C:\Windows\System32\VaultSysUi.exe
C:\Windows\System32\vds.exe
C:\Windows\System32\vdsldr.exe
C:\Windows\System32\verclsid.exe
C:\Windows\System32\verifier.exe
C:\Windows\System32\vsjitdebugger.exe
C:\Windows\System32\vssadmin.exe
C:\Windows\System32\VSSVC.exe
C:\Windows\System32\w32tm.exe
C:\Windows\System32\waitfor.exe
C:\Windows\System32\Wat\WatAdminSvc.exe
C:\Windows\System32\Wat\WatUX.exe
C:\Windows\System32\wbadmin.exe
C:\Windows\System32\wbem\mofcomp.exe
C:\Windows\System32\wbem\scrcons.exe
C:\Windows\System32\wbem\unsecapp.exe
C:\Windows\System32\wbem\wbemtest.exe
C:\Windows\System32\wbem\WinMgmt.exe
C:\Windows\System32\wbem\WMIADAP.exe
C:\Windows\System32\wbem\WmiApSrv.exe
C:\Windows\System32\wbem\WMIC.exe
C:\Windows\System32\wbem\WmiPrvSE.exe
C:\Windows\System32\wbengine.exe
C:\Windows\System32\wecutil.exe
C:\Windows\System32\WerFault.exe
C:\Windows\System32\WerFaultSecure.exe
C:\Windows\System32\wermgr.exe
C:\Windows\System32\wevtutil.exe
C:\Windows\System32\wextract.exe
C:\Windows\System32\where.exe
C:\Windows\System32\whoami.exe
C:\Windows\System32\wiaacmgr.exe
C:\Windows\System32\wiawow64.exe
C:\Windows\System32\wimserv.exe
C:\Windows\System32\WindowsAnytimeUpgrade.exe
C:\Windows\System32\WindowsAnytimeUpgradeResults.exe
C:\Windows\System32\WindowsAnytimeUpgradeui.exe
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
C:\Windows\System32\WindowsPowerShell\v1.0\powershell_ise.exe
C:\Windows\System32\wininit.exe
C:\Windows\System32\winload.exe
C:\Windows\System32\winlogon.exe
C:\Windows\System32\winresume.exe
C:\Windows\System32\winrs.exe
C:\Windows\System32\winrshost.exe
C:\Windows\System32\WinSAT.exe
C:\Windows\System32\winver.exe
C:\Windows\System32\wisptis.exe
C:\Windows\System32\wksprt.exe
C:\Windows\System32\wlanext.exe
C:\Windows\System32\wlrmdr.exe
C:\Windows\System32\wowreg32.exe
C:\Windows\System32\WPDShextAutoplay.exe
C:\Windows\System32\wpnpinst.exe
C:\Windows\System32\write.exe
C:\Windows\System32\wscript.exe
C:\Windows\System32\WSManHTTPConfig.exe
C:\Windows\System32\wsmprovhost.exe
C:\Windows\System32\wsqmcons.exe
C:\Windows\System32\wuapp.exe
C:\Windows\System32\wuauclt.exe
C:\Windows\System32\WUDFHost.exe
C:\Windows\System32\wusa.exe
C:\Windows\System32\xcopy.exe
C:\Windows\System32\xpsrchvw.exe
C:\Windows\System32\xwizard.exe
C:\Windows\SysWOW64\AdapterTroubleshooter.exe
C:\Windows\SysWOW64\appverif.exe
C:\Windows\SysWOW64\ARP.EXE
C:\Windows\SysWOW64\AtBroker.exe
C:\Windows\SysWOW64\at.exe
C:\Windows\SysWOW64\attrib.exe
C:\Windows\SysWOW64\auditpol.exe
C:\Windows\SysWOW64\autochk.exe
C:\Windows\SysWOW64\autoconv.exe
C:\Windows\SysWOW64\autofmt.exe
C:\Windows\SysWOW64\bitsadmin.exe
C:\Windows\SysWOW64\bootcfg.exe
C:\Windows\SysWOW64\bthudtask.exe
C:\Windows\SysWOW64\cacls.exe
C:\Windows\SysWOW64\calc.exe
C:\Windows\SysWOW64\CertEnrollCtrl.exe
C:\Windows\SysWOW64\certreq.exe
C:\Windows\SysWOW64\certutil.exe
C:\Windows\SysWOW64\charmap.exe
C:\Windows\SysWOW64\chkdsk.exe
C:\Windows\SysWOW64\chkntfs.exe
C:\Windows\SysWOW64\choice.exe
C:\Windows\SysWOW64\cipher.exe
C:\Windows\SysWOW64\cleanmgr.exe
C:\Windows\SysWOW64\cliconfg.exe
C:\Windows\SysWOW64\clip.exe
C:\Windows\SysWOW64\cmd.exe
C:\Windows\SysWOW64\cmdkey.exe
C:\Windows\SysWOW64\cmdl32.exe
C:\Windows\SysWOW64\cmmon32.exe
C:\Windows\SysWOW64\cmstp.exe
C:\Windows\SysWOW64\colorcpl.exe
C:\Windows\SysWOW64\com\comrepl.exe
C:\Windows\SysWOW64\com\MigRegDB.exe
C:\Windows\SysWOW64\compact.exe
C:\Windows\SysWOW64\comp.exe
C:\Windows\SysWOW64\ComputerDefaults.exe
C:\Windows\SysWOW64\control.exe
C:\Windows\SysWOW64\convert.exe
C:\Windows\SysWOW64\credwiz.exe
C:\Windows\SysWOW64\cscript.exe
C:\Windows\SysWOW64\ctfmon.exe
C:\Windows\SysWOW64\cttune.exe
C:\Windows\SysWOW64\cttunesvr.exe
C:\Windows\SysWOW64\dccw.exe
C:\Windows\SysWOW64\dcomcnfg.exe
C:\Windows\SysWOW64\ddodiag.exe
C:\Windows\SysWOW64\DevicePairingWizard.exe
C:\Windows\SysWOW64\DeviceProperties.exe
C:\Windows\SysWOW64\dfrgui.exe
C:\Windows\SysWOW64\dialer.exe
C:\Windows\SysWOW64\diantz.exe
C:\Windows\SysWOW64\diskpart.exe
C:\Windows\SysWOW64\diskperf.exe
C:\Windows\SysWOW64\diskraid.exe
C:\Windows\SysWOW64\Dism\DismHost.exe
C:\Windows\SysWOW64\Dism.exe
C:\Windows\SysWOW64\DisplaySwitch.exe
C:\Windows\SysWOW64\dllhost.exe
C:\Windows\SysWOW64\dllhst3g.exe
C:\Windows\SysWOW64\dnscacheugc.exe
C:\Windows\SysWOW64\doskey.exe
C:\Windows\SysWOW64\dpapimig.exe
C:\Windows\SysWOW64\DpiScaling.exe
C:\Windows\SysWOW64\dplaysvr.exe
C:\Windows\SysWOW64\dpnsvr.exe
C:\Windows\SysWOW64\driverquery.exe
C:\Windows\SysWOW64\drvinst.exe
C:\Windows\SysWOW64\dvdplay.exe
C:\Windows\SysWOW64\dvdupgrd.exe
C:\Windows\SysWOW64\DWWIN.EXE
C:\Windows\SysWOW64\dxcpl.exe
C:\Windows\SysWOW64\dxdiag.exe
C:\Windows\SysWOW64\efsui.exe
C:\Windows\SysWOW64\EhStorAuthn.exe
C:\Windows\SysWOW64\esentutl.exe
C:\Windows\SysWOW64\eudcedit.exe
C:\Windows\SysWOW64\eventcreate.exe
C:\Windows\SysWOW64\eventvwr.exe
C:\Windows\SysWOW64\expand.exe
C:\Windows\SysWOW64\explorer.exe
C:\Windows\SysWOW64\extrac32.exe
C:\Windows\SysWOW64\fc.exe
C:\Windows\SysWOW64\find.exe
C:\Windows\SysWOW64\findstr.exe
C:\Windows\SysWOW64\finger.exe
C:\Windows\SysWOW64\fixmapi.exe
C:\Windows\SysWOW64\FlashPlayerApp.exe
C:\Windows\SysWOW64\fltMC.exe
C:\Windows\SysWOW64\fontview.exe
C:\Windows\SysWOW64\forfiles.exe
C:\Windows\SysWOW64\fsutil.exe
C:\Windows\SysWOW64\ftp.exe
C:\Windows\SysWOW64\getmac.exe
C:\Windows\SysWOW64\gpresult.exe
C:\Windows\SysWOW64\gpupdate.exe
C:\Windows\SysWOW64\grpconv.exe
C:\Windows\SysWOW64\hdwwiz.exe
C:\Windows\SysWOW64\help.exe
C:\Windows\SysWOW64\hh.exe
C:\Windows\SysWOW64\HOSTNAME.EXE
C:\Windows\SysWOW64\icacls.exe
C:\Windows\SysWOW64\icardagt.exe
C:\Windows\SysWOW64\icsunattend.exe
C:\Windows\SysWOW64\ie4uinit.exe
C:\Windows\SysWOW64\ieUnatt.exe
C:\Windows\SysWOW64\iexpress.exe
C:\Windows\SysWOW64\iisreset.exe
C:\Windows\SysWOW64\IME\IMEJP10\IMJPDADM.EXE
C:\Windows\SysWOW64\IME\IMEJP10\IMJPDCT.EXE
C:\Windows\SysWOW64\IME\IMEJP10\IMJPDSVR.EXE
C:\Windows\SysWOW64\IME\IMEJP10\IMJPMGR.EXE
C:\Windows\SysWOW64\IME\IMEJP10\imjppdmg.exe
C:\Windows\SysWOW64\IME\IMEJP10\imjpuexc.exe
C:\Windows\SysWOW64\IME\IMEJP10\IMJPUEX.EXE
C:\Windows\SysWOW64\IME\IMESC5\IMSCPROP.exe
C:\Windows\SysWOW64\IME\IMETC10\IMTCPROP.exe
C:\Windows\SysWOW64\IME\shared\IMCCPHR.exe
C:\Windows\SysWOW64\IME\shared\IMEPADSV.EXE
C:\Windows\SysWOW64\inetsrv\appcmd.exe
C:\Windows\SysWOW64\inetsrv\aspnetca.exe
C:\Windows\SysWOW64\inetsrv\iissetup.exe
C:\Windows\SysWOW64\inetsrv\InetMgr6.exe
C:\Windows\SysWOW64\inetsrv\w3wp.exe
C:\Windows\SysWOW64\InfDefaultInstall.exe
C:\Windows\SysWOW64\InstallShield\_isdel.exe
C:\Windows\SysWOW64\InstallShield\setup.exe
C:\Windows\SysWOW64\instnm.exe
C:\Windows\SysWOW64\ipconfig.exe
C:\Windows\SysWOW64\iscsicli.exe
C:\Windows\SysWOW64\iscsicpl.exe
C:\Windows\SysWOW64\isoburn.exe
C:\Windows\SysWOW64\java.exe
C:\Windows\SysWOW64\javaw.exe
C:\Windows\SysWOW64\ktmutil.exe
C:\Windows\SysWOW64\label.exe
C:\Windows\SysWOW64\LocationNotifications.exe
C:\Windows\SysWOW64\lodctr.exe
C:\Windows\SysWOW64\logagent.exe
C:\Windows\SysWOW64\logman.exe
C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_4_402_287_ActiveX.exe
C:\Windows\SysWOW64\Magnify.exe
C:\Windows\SysWOW64\makecab.exe
C:\Windows\SysWOW64\mcbuilder.exe
C:\Windows\SysWOW64\mfpmp.exe
C:\Windows\SysWOW64\MigAutoPlay.exe
C:\Windows\SysWOW64\migwiz\mighost.exe
C:\Windows\SysWOW64\migwiz\MigSetup.exe
C:\Windows\SysWOW64\migwiz\migwiz.exe
C:\Windows\SysWOW64\migwiz\PostMig.exe
C:\Windows\SysWOW64\mmc.exe
C:\Windows\SysWOW64\mobsync.exe
C:\Windows\SysWOW64\mountvol.exe
C:\Windows\SysWOW64\MRINFO.EXE
C:\Windows\SysWOW64\msdt.exe
C:\Windows\SysWOW64\msfeedssync.exe
C:\Windows\SysWOW64\mshta.exe
C:\Windows\SysWOW64\msiexec.exe
C:\Windows\SysWOW64\msinfo32.exe
C:\Windows\SysWOW64\mspaint.exe
C:\Windows\SysWOW64\msra.exe
C:\Windows\SysWOW64\mstsc.exe
C:\Windows\SysWOW64\mtstocom.exe
C:\Windows\SysWOW64\MuiUnattend.exe
C:\Windows\SysWOW64\NAPSTAT.EXE
C:\Windows\SysWOW64\ndadmin.exe
C:\Windows\SysWOW64\net1.exe
C:\Windows\SysWOW64\netbtugc.exe
C:\Windows\SysWOW64\net.exe
C:\Windows\SysWOW64\netiougc.exe
C:\Windows\SysWOW64\Netplwiz.exe
C:\Windows\SysWOW64\netsh.exe
C:\Windows\SysWOW64\NETSTAT.EXE
C:\Windows\SysWOW64\newdev.exe
C:\Windows\SysWOW64\notepad.exe
C:\Windows\SysWOW64\nslookup.exe
C:\Windows\SysWOW64\ntkrnlpa.exe
C:\Windows\SysWOW64\ntoskrnl.exe
C:\Windows\SysWOW64\ntprint.exe
C:\Windows\SysWOW64\ocsetup.exe
C:\Windows\SysWOW64\odbcad32.exe
C:\Windows\SysWOW64\odbcconf.exe
C:\Windows\SysWOW64\openfiles.exe
C:\Windows\SysWOW64\OptionalFeatures.exe
C:\Windows\SysWOW64\osk.exe
C:\Windows\SysWOW64\PATHPING.EXE
C:\Windows\SysWOW64\pcaui.exe
C:\Windows\SysWOW64\perfhost.exe
C:\Windows\SysWOW64\perfmon.exe
C:\Windows\SysWOW64\PING.EXE
C:\Windows\SysWOW64\PkgMgr.exe
C:\Windows\SysWOW64\poqexec.exe
C:\Windows\SysWOW64\powercfg.exe
C:\Windows\SysWOW64\PresentationHost.exe
C:\Windows\SysWOW64\prevhost.exe
C:\Windows\SysWOW64\print.exe
C:\Windows\SysWOW64\printui.exe
C:\Windows\SysWOW64\proquota.exe
C:\Windows\SysWOW64\psr.exe
C:\Windows\SysWOW64\rasautou.exe
C:\Windows\SysWOW64\rasdial.exe
C:\Windows\SysWOW64\raserver.exe
C:\Windows\SysWOW64\rasphone.exe
C:\Windows\SysWOW64\rdrleakdiag.exe
C:\Windows\SysWOW64\ReAgentc.exe
C:\Windows\SysWOW64\recover.exe
C:\Windows\SysWOW64\regedit.exe
C:\Windows\SysWOW64\regedt32.exe
C:\Windows\SysWOW64\reg.exe
C:\Windows\SysWOW64\RegisterIEPKEYs.exe
C:\Windows\SysWOW64\regsvr32.exe
C:\Windows\SysWOW64\rekeywiz.exe
C:\Windows\SysWOW64\relog.exe
C:\Windows\SysWOW64\replace.exe
C:\Windows\SysWOW64\resmon.exe
C:\Windows\SysWOW64\RMActivate.exe
C:\Windows\SysWOW64\RMActivate_isv.exe
C:\Windows\SysWOW64\RMActivate_ssp.exe
C:\Windows\SysWOW64\RMActivate_ssp_isv.exe
C:\Windows\SysWOW64\RmClient.exe
C:\Windows\SysWOW64\Robocopy.exe
C:\Windows\SysWOW64\ROUTE.EXE
C:\Windows\SysWOW64\RpcPing.exe
C:\Windows\SysWOW64\rrinstaller.exe
C:\Windows\SysWOW64\runas.exe
C:\Windows\SysWOW64\rundll32.exe
C:\Windows\SysWOW64\RunLegacyCPLElevated.exe
C:\Windows\SysWOW64\runonce.exe
C:\Windows\SysWOW64\sc.exe
C:\Windows\SysWOW64\schtasks.exe
C:\Windows\SysWOW64\sdbinst.exe
C:\Windows\SysWOW64\sdchange.exe
C:\Windows\SysWOW64\sdiagnhost.exe
C:\Windows\SysWOW64\SearchFilterHost.exe
C:\Windows\SysWOW64\SearchIndexer.exe
C:\Windows\SysWOW64\SearchProtocolHost.exe
C:\Windows\SysWOW64\SecEdit.exe
C:\Windows\SysWOW64\secinit.exe
C:\Windows\SysWOW64\sethc.exe
C:\Windows\SysWOW64\SetIEInstalledDate.exe
C:\Windows\SysWOW64\setup16.exe
C:\Windows\SysWOW64\setupSNK.exe
C:\Windows\SysWOW64\setupugc.exe
C:\Windows\SysWOW64\setx.exe
C:\Windows\SysWOW64\sfc.exe
C:\Windows\SysWOW64\shrpubw.exe
C:\Windows\SysWOW64\shutdown.exe
C:\Windows\SysWOW64\SndVol.exe
C:\Windows\SysWOW64\sort.exe
C:\Windows\SysWOW64\srdelayed.exe
C:\Windows\SysWOW64\subst.exe
C:\Windows\SysWOW64\svchost.exe
C:\Windows\SysWOW64\sxstrace.exe
C:\Windows\SysWOW64\SyncHost.exe
C:\Windows\SysWOW64\syskey.exe
C:\Windows\SysWOW64\systeminfo.exe
C:\Windows\SysWOW64\SystemPropertiesAdvanced.exe
C:\Windows\SysWOW64\SystemPropertiesComputerName.exe
C:\Windows\SysWOW64\SystemPropertiesDataExecutionPrevention.exe
C:\Windows\SysWOW64\SystemPropertiesHardware.exe
C:\Windows\SysWOW64\SystemPropertiesPerformance.exe
C:\Windows\SysWOW64\SystemPropertiesProtection.exe
C:\Windows\SysWOW64\SystemPropertiesRemote.exe
C:\Windows\SysWOW64\systray.exe
C:\Windows\SysWOW64\takeown.exe
C:\Windows\SysWOW64\TapiUnattend.exe
C:\Windows\SysWOW64\taskeng.exe
C:\Windows\SysWOW64\taskkill.exe
C:\Windows\SysWOW64\tasklist.exe
C:\Windows\SysWOW64\taskmgr.exe
C:\Windows\SysWOW64\tcmsetup.exe
C:\Windows\SysWOW64\TCPSVCS.EXE
C:\Windows\SysWOW64\timeout.exe
C:\Windows\SysWOW64\TpmInit.exe
C:\Windows\SysWOW64\tracerpt.exe
C:\Windows\SysWOW64\TRACERT.EXE
C:\Windows\SysWOW64\TSTheme.exe
C:\Windows\SysWOW64\TsWpfWrp.exe
C:\Windows\SysWOW64\typeperf.exe
C:\Windows\SysWOW64\tzutil.exe
C:\Windows\SysWOW64\unlodctr.exe
C:\Windows\SysWOW64\unregmp2.exe
C:\Windows\SysWOW64\upnpcont.exe
C:\Windows\SysWOW64\UserAccountControlSettings.exe
C:\Windows\SysWOW64\user.exe
C:\Windows\SysWOW64\userinit.exe
C:\Windows\SysWOW64\Utilman.exe
C:\Windows\SysWOW64\verclsid.exe
C:\Windows\SysWOW64\verifier.exe
C:\Windows\SysWOW64\vsjitdebugger.exe
C:\Windows\SysWOW64\vssadmin.exe
C:\Windows\SysWOW64\w32tm.exe
C:\Windows\SysWOW64\waitfor.exe
C:\Windows\SysWOW64\wbem\mofcomp.exe
C:\Windows\SysWOW64\wbem\WinMgmt.exe
C:\Windows\SysWOW64\wbem\WMIADAP.exe
C:\Windows\SysWOW64\wbem\WMIC.exe
C:\Windows\SysWOW64\wbem\WmiPrvSE.exe
C:\Windows\SysWOW64\wecutil.exe
C:\Windows\SysWOW64\WerFault.exe
C:\Windows\SysWOW64\WerFaultSecure.exe
C:\Windows\SysWOW64\wermgr.exe
C:\Windows\SysWOW64\wevtutil.exe
C:\Windows\SysWOW64\wextract.exe
C:\Windows\SysWOW64\where.exe
C:\Windows\SysWOW64\whoami.exe
C:\Windows\SysWOW64\wiaacmgr.exe
C:\Windows\SysWOW64\wimserv.exe
C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe
C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell_ise.exe
C:\Windows\SysWOW64\wininit.exe
C:\Windows\SysWOW64\winrs.exe
C:\Windows\SysWOW64\winrshost.exe
C:\Windows\SysWOW64\winver.exe
C:\Windows\SysWOW64\wlanext.exe
C:\Windows\SysWOW64\wowreg32.exe
C:\Windows\SysWOW64\WPDShextAutoplay.exe
C:\Windows\SysWOW64\write.exe
C:\Windows\SysWOW64\wscript.exe
C:\Windows\SysWOW64\WSManHTTPConfig.exe
C:\Windows\SysWOW64\wsmprovhost.exe
C:\Windows\SysWOW64\wuapp.exe
C:\Windows\SysWOW64\wusa.exe
C:\Windows\SysWOW64\xcopy.exe
C:\Windows\SysWOW64\xpsrchvw.exe
C:\Windows\SysWOW64\xwizard.exe
C:\Windows\twunk_16.exe
C:\Windows\twunk_32.exe
C:\Windows\winhlp32.exe
C:\Windows\winsxs\amd64_addinprocess32_b77a5c561934e089_6.1.7601.17514_none_df35b5ac03866e22\AddInProcess32.exe
C:\Windows\winsxs\amd64_aspnet_compiler_b03f5f7f11d50a3a_6.1.7600.16385_none_a5a135380060b978\aspnet_compiler.exe
C:\Windows\winsxs\amd64_aspnet_regbrowsers_b03f5f7f11d50a3a_6.1.7600.16385_none_96421d40c0e2903e\aspnet_regbrowsers.exe
C:\Windows\winsxs\amd64_aspnet_regsql_b03f5f7f11d50a3a_6.1.7600.16385_none_dcb42ec76404494f\aspnet_regsql.exe
C:\Windows\winsxs\amd64_brmfcmf.inf_31bf3856ad364e35_6.1.7600.16385_none_6f8740b92fea8e01\BrmfRsmg.exe
C:\Windows\winsxs\amd64_brmfcwia.inf_31bf3856ad364e35_6.1.7600.16385_none_11493a3982b640b7\BrmfRsmg.exe
C:\Windows\winsxs\amd64_bth.inf_31bf3856ad364e35_6.1.7601.17514_none_d06ac9aad230c1d6\fsquirt.exe
C:\Windows\winsxs\amd64_bth.inf_31bf3856ad364e35_6.1.7601.17607_none_d0789c5ad225ef11\fsquirt.exe
C:\Windows\winsxs\amd64_bth.inf_31bf3856ad364e35_6.1.7601.17889_none_d024215ad264fb95\fsquirt.exe
C:\Windows\winsxs\amd64_bth.inf_31bf3856ad364e35_6.1.7601.21716_none_d0f668efeb4c9175\fsquirt.exe
C:\Windows\winsxs\amd64_bth.inf_31bf3856ad364e35_6.1.7601.22046_none_d0d5d519eb6512d8\fsquirt.exe