-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
1445 lines (1128 loc) · 135 KB
/
main.cpp
File metadata and controls
1445 lines (1128 loc) · 135 KB
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
#include <Windows.h>
#include <string>
#include <iostream>
#include "xor.h"
#include <urlmon.h>
#include <lmcons.h>
#pragma comment(lib, "urlmon")
// Planned using in kernelmode idk
std::wstring GetCurrentUserName()
{
wchar_t un[256 + 1];
DWORD unLen = 256 + 1;
GetUserNameW(un, &unLen);
return un;
}
namespace util {
void hide()
{
::ShowWindow(::GetConsoleWindow(), SW_HIDE);
}
void show()
{
::ShowWindow(::GetConsoleWindow(), SW_SHOW);
}
}
using namespace std;
void clean_launcher() {
DeleteFileW(L"C:\\Program Files(x86)\\Epic Games\\Launcher\\Engine\\Config\\Base.ini");
DeleteFileW(L"C:\\Program Files(x86)\\Epic Games\\Launcher\\Engine\\Config\\BaseGame.ini");
DeleteFileW(L"C:\\Program Files(x86)\\Epic Games\\Launcher\\Engine\\Config\\Windows\\WindowsGame.ini");
DeleteFileW(L"C:\\Program Files(x86)\\Epic Games\\Launcher\\Engine\\Config\\BaseInput.ini");
DeleteFileW(L"C:\\Program Files(x86)\\Epic Games\\Launcher\\Portal\\Config\\UserLightmass.ini");
DeleteFileW(L"C:\\Program Files(x86)\\Epic Games\\Launcher\\Engine\\Config\\Windows\\BaseWindowsLightmass.ini");
DeleteFileW(L"C:\\Program Files(x86)\Epic Games\\Launcher\\Portal\\Config\\UserScalability.ini");
DeleteFileW(L"C:\\Program Files(x86)\Epic Games\\Launcher\\Engine\\Config\\BaseHardware.ini");
DeleteFileW(L"C:\\Program Files(x86)\Epic Games\\Launcher\\Portal\\Config\\NotForLicensees\\Windows\\WindowsHardware.ini");
}
void clean_net() {
system(_xor_("netsh winsock reset").c_str());
system(_xor_("netsh winsock reset catalog").c_str());
system(_xor_("netsh int ip reset").c_str());
system(_xor_("netsh advfirewall reset").c_str());
system(_xor_("netsh int reset all").c_str());
system(_xor_("netsh int ipv4 reset").c_str());
system(_xor_("netsh int ipv6 reset").c_str());
system(_xor_("ipconfig / release").c_str());
system(_xor_("ipconfig / renew").c_str());
system(_xor_("ipconfig / flushdns").c_str());
}
void clean_anticheat() {
system(_xor_("reg delete HKLM\\SOFTWARE\\WOW6432Node\\EasyAntiCheat /f").c_str());
system(_xor_("reg delete HKLM\\SYSTEM\\ControlSet001\\Services\\EasyAntiCheat /f").c_str());
system(_xor_("reg delete HKLM\\SYSTEM\\ControlSet001\\Services\\BEService /f").c_str());
}
int main()
{
Sleep(500);
Sleep(2000);
util::show();
system("Color 0a");
//LAUNCH CLEAN
SetConsoleTitleA("Cleaner");
printf("Cleaner\n\n");
printf("[+] Searching for tracking files...");
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat.LOCK)").c_str());
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat)").c_str()) != 0)
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat\n");
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(AppData\Local\Microsoft\Windows\UsrClass.dat)").c_str()) != 0)
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat\n");
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\usrclass.dat)").c_str()) != 0)
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\usrclass.dat\n");
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(AppData\Local\Microsoft\Windows\usrclass.dat)").c_str()) != 0)
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Vault\\UserProfileRoaming\\Latest.dat\n");
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Vault\UserProfileRoaming\Latest.dat)").c_str()) != 0)
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat.log1\n");
printf("\nDeleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE\\container.dat");
printf("\n[+] System clean");
printf("\nPress any key to continue . . .");
//END OF LAUNCH CLEAN
system("pause > nul");
Sleep(2000);
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\History\desktop.ini)").c_str());
if (DeleteFileW((LR"(C:\Users\AppData\Local\Microsoft\Windows\History\)" + GetCurrentUserName() + LR"(\desktop.ini)").c_str()) != 0)
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\desktop.ini");
cout << "Deleted C:\\Users\\Gaypple\\ntuser.ini:NTV" << endl;
printf("\nDeleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE\\container.dat");
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat.LOCK)").c_str());
Sleep(2000);
DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat.LOCK)").c_str());
DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat.LOCK)").c_str());
DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat.LOCK)").c_str());
DeleteFileW(L"C:\\Windows\\System32\\catroot2\\dberr.txt");
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat.LOCK)").c_str());
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat)").c_str()) != 0)
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat");
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(AppData\Local\Microsoft\Windows\UsrClass.dat)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat" << endl;
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat");
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\usrclass.dat)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\usrclass.dat" << endl;
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\usrclass.dat");
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(AppData\Local\Microsoft\Windows\usrclass.dat)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\usrclass.dat" << endl;
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\usrclass.dat");
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Vault\UserProfileRoaming\Latest.dat)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Vault\\UserProfileRoaming\\Latest.dat" << endl;
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Vault\\UserProfileRoaming\\Latest.dat");
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat.log1)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat.log1" << endl;
printf("Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat.log1");
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat.LOG2)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat.log2.LOG2)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat.log2" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\UsrClass.dat.log2)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat.log2" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\LMS\Manifest.sav)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\LMS\\Manifest.sav" << endl;
if (DeleteFileW(L"C:\\Users\\Public\\Libraries\\collection.dat") != 0)
cout << "Deleted C:\\Users\\Public\\Libraries\\collection.dat" << endl;
if (DeleteFileW(L"C:$Secure:$SDH:$INDEX_ALLOCATION") != 0)
cout << "Deleted C:$Secure:$SDH:$INDEX_ALLOCATION" << endl;
if (DeleteFileW(L"C:\$Secure:\$SDH:\$INDEX_ALLOCATION") != 0)
cout << "Deleted C:$Secure:$SDH:$INDEX_ALLOCATION" << endl;
if (DeleteFileW(L"C:\\Users\\Public\\Shared Files:VersionCache") != 0)
cout << "Deleted C:\\Users\\Public\\Shared Files:VersionCache" << endl;
if (DeleteFileW(L"C:\\MSOCache\\{71230000-00E2-0000-1000-00000000}\\Setup.dat") != 0)
cout << "Deleted C:\\MSOCache\\{71230000-00E2-0000-1000-00000000}\\Setup.dat" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Temp\04f992c.tmp)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Temp\\04f992c.tmp" << endl;
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\ntuser.pol)").c_str());
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(Videos\Captures\desktop.ini)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\Videos\\Captures\\desktop.ini" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Feeds)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Feeds:KnownSources" << endl;
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Feeds:KnownSources)").c_str());
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Feeds)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Feeds:KnownSources" << endl;
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Feeds:KnownSources)").c_str());
if (DeleteFileW(L"C:\\desktop.ini:CachedTiles") != 0)
cout << "Deleted C:\\desktop.ini:CachedTiles" << endl;
if (DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\Engine\\Config\\NoRedist\\Windows\\ShippableWindowsGameUserSettings.ini") != 0)
cout << "Deleted C:\\Program Files\\Epic Games\\Fortnite\\Engine\\Config\\NoRedist\\Windows\\ShippableWindowsGameUserSettings.ini" << endl;
if (DeleteFileW(L"C:\\Recovery\\ntuser.sys") != 0)
cout << "Deleted C:\\Recovery\\ntuser.sys" << endl;
DeleteFileW(L"C:\\desktop.ini");
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Packages\Microsoft.XboxGamingOverlay_8wekyb3d8bbwe\AC\INetCookies\ESE\container.dat)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\AC\\INetCookies\\ESE\\container.dat" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Packages\Microsoft.XboxGamingOverlay_8wekyb3d8bbwe\Settings\settings.dat)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Packages\\Settings\\settings.dat" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\UnrealEngine\4.23\Saved\Config\WindowsClient\Manifest.ini)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\UnrealEngine\\4.23\\Saved\\Config\\WindowsClient\\Manifest.ini" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\\Config\WindowsClient\GameUserSettings.ini)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Config\\WindowsClient\\GameUserSettings.ini" << endl;
if (DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\CacheAccess.json") != 0)
cout << "Deleted C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\CacheAccess.json" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\ClientSettings.Sav)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\ClientSettings.Sav" << endl;
if (DeleteFileW(L"C:\\Windows\\ServiceState\\EventLog\\Data\\lastalive1.dat") != 0)
cout << "Deleted C:\\Windows\\ServiceState\\EventLog\\Data\\lastalive1.dat" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\\Microsoft\OneDrive\logs\Common\DeviceHealthSummaryConfiguration.ini)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\OneDrive\\logs\\Common\\DeviceHealthSummaryConfiguration.ini" << endl;
if (DeleteFileW(L"C:\\ProgramData\\Microsoft\\Windows\\AppRepository\\Packages\\InputApp_1000.17763.1.0_neutral_neutral_cw5n1h2txyewy\\ActivationStore.dat") != 0)
cout << "Deleted C:\\ProgramData\\Microsoft\\Windows\\AppRepository\\Packages\\ActivationStore.dat" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\Logs\FortniteGame.log)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Logs\\FortniteGame.log" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\INetCache\Content.IE5)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\INetCache\\Content.IE5" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\History\History.IE5)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\History\\History.IE5" << endl;
if (DeleteFileW(L"C:\\ProgramData\\Microsoft\\Windows\\DeviceMetadataCache\\dmrc.idx") != 0)
cout << "Deleted C:\\ProgramData\\Microsoft\\Windows\\DeviceMetadataCache\\dmrc.idx" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\\Local\\Microsoft\\Windows\\SettingSync\\metastore\\edb.log)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\SettingSync\\metastore\\edb.log" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\\Local\\Microsoft\\Windows\\SettingSync\\remotemetastore\\v1\\edb.log)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\SettingSync\\remotemetastore\\v1\\edb.log" << endl;
if (DeleteFileW(L"C:\\Windows\\SoftwareDistribution\\PostRebootEventCache.V2") != 0)
cout << "Deleted C:\\Windows\\SoftwareDistribution\\PostRebootEventCache.V2" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\ntuser.ini)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\ntuser.ini" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\ntuser.pol)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\ntuser.pol" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(ntuser.dat.LOG1)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\ntuser.dat.LOG1" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(ntuser.dat.LOG2)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\ntuser.dat.LOG2" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\INetCache\IE\container.dat)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE\\container.dat" << endl;
if (DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files:VersionCache") != 0)
cout << "Deleted C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files:VersionCache" << endl;
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files");
if (DeleteFileW(L"C:\\Users\\Public\\Documents") != 0)
cout << "Deleted C:\\Users\\Public\\Documents" << endl;
if (DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CryptoKeys\\AssetRegistry.bin") != 0)
cout << "Deleted C:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CryptoKeys\\AssetRegistry.bin" << endl;
if (DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CurveEditorTools\\AssetRegistry.bin") != 0)
cout << "Deleted C:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\CurveEditorTools\\AssetRegistry.bin" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\Documents\Unreal Engine\Engine\Config\UserGameUserSettings.ini)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\Documents\\Unreal Engine\\Engine\\Config\\UserGameUserSettings.ini" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Unreal Engine\Engine\Config\UserGameUserSettings.ini)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\Unreal Engine\\Engine\\Config\\UserGameUserSettings.ini" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\Cloud\bb360279f89647c982d9bc6ab596c2ee\ClientSettings.Sav)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Cloud\\ClientSettings.Sav" << endl;
if (DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\XSettings.Sav") != 0)
cout << "Deleted C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\XSettings.Sav" << endl;
DeleteFileW(L"C:\\Users\\Public\\Shared Files");
if (DeleteFileW(L"C:\\Windows\\System32\\restore\\MachineGuid.txt") != 0)
cout << "Deleted C:\\Windows\\System32\\restore\\MachineGuid.txt" << endl;
if (DeleteFileW(L"C:\\System Volume Information\\tracking.log") != 0)
cout << "Deleted C:\\System Volume Information\\tracking.log" << endl;
if (DeleteFileW(L"C:\\Windows\\System32\\restore\\MachineGuid.txt") != 0)
cout << "Deleted C:\\Windows\\System32\\restore\\MachineGuid.txt" << endl;
if (DeleteFileW(L"C:\\System Volume Information\\WPSettings.dat") != 0)
cout << "Deleted C:\\System Volume Information\\WPSettings.dat" << endl;
if (DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\NTUSER.DAT)").c_str()) != 0)
cout << "Deleted C:\\Users\\Gaypple\\NTUSER.DAT" << endl;
if (DeleteFileW(L"C:\\ProgramData\\ntuser.pol") != 0)
cout << "Deleted C:\\ProgramData\\ntuser.pol" << endl;
if (DeleteFileW(L"C:\\PerfLogs\\collection.dat") != 0)
cout << "Deleted C:\\PerfLogs\\collection.dat" << endl;
if (DeleteFileW(L"C:\\Drivers\\storage.cache") != 0)
cout << "Deleted C:\\Drivers\\storage.cache" << endl;
if (DeleteFileW(L"C:\\Intel\\setup.cache") != 0)
cout << "Deleted C:\\Intel\\setup.cache" << endl;
if (DeleteFileW(L"C:\\MSOCache\\Setup.dat") != 0)
cout << "Deleted C:\\MSOCache\\Setup.dat" << endl;
DeleteFileW(L"D:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files");
DeleteFileW(L"E:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files");
DeleteFileW(L"F:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files");
DeleteFileW(L"E:\\Users\\Public\\Shared Files");
DeleteFileW(L"F:\\Users\\Public\\Shared Files");
// Disk D:
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\History\desktop.ini)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\History\\desktop.ini" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\LMS\Manifest.sav)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\LMS\\Manifest.sav" << endl;
if (DeleteFileW(L"D:\\Users\\Public\\Libraries\\collection.dat") != 0)
cout << "Deleted D:\\Users\\Public\\Libraries\\collection.dat" << endl;
if (DeleteFileW(L"D:\\Users\\Public\\Shared Files:VersionCache") != 0)
cout << "Deleted D:\\Users\\Public\\Shared Files:VersionCache" << endl;
DeleteFileW(L"D:\\Users\\Public\\Shared Files");
if (DeleteFileW(L"D:\\MSOCache\\{71230000-00E2-0000-1000-00000000}\\Setup.dat") != 0)
cout << "Deleted D:\\MSOCache\\{71230000-00E2-0000-1000-00000000}\\Setup.dat" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Temp\0021346.tmp)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\Temp\\0021346.tmp" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(Videos\Captures\desktop.ini)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\Videos\\Captures\\desktop.ini" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Feeds)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Feeds:KnownSources" << endl;
if (DeleteFileW(L"D:\\desktop.ini:CachedTiles") != 0)
cout << "Deleted D:\\desktop.ini:CachedTiles" << endl;
if (DeleteFileW(L"D:\\Recovery\\ntuser.sys") != 0)
cout << "Deleted D:\\Recovery\\ntuser.sys" << endl;
DeleteFileW(L"D:\\desktop.ini");
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Packages\Microsoft.XboxGamingOverlay_8wekyb3d8bbwe\AC\INetCookies\ESE\container.dat)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\AC\\INetCookies\\ESE\\container.dat" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Packages\Microsoft.XboxGamingOverlay_8wekyb3d8bbwe\Settings\settings.dat)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\Packages\\Settings\\settings.dat" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\UnrealEngine\4.23\Saved\Config\WindowsClient\Manifest.ini)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\UnrealEngine\\4.23\\Saved\\Config\\WindowsClient\\Manifest.ini" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\\Config\WindowsClient\GameUserSettings.ini)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Config\\WindowsClient\\GameUserSettings.ini" << endl;
if (DeleteFileW(L"D:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\CacheAccess.json") != 0)
cout << "Deleted D:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\CacheAccess.json" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\ClientSettings.Sav" << endl;
if (DeleteFileW(L"D:\\Windows\\ServiceState\\EventLog\\Data\\lastalive1.dat") != 0)
cout << "Deleted D:\\Windows\\ServiceState\\EventLog\\Data\\lastalive1.dat" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\\Microsoft\OneDrive\logs\Common\DeviceHealthSummaryConfiguration.ini)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\OneDrive\\logs\\Common\\DeviceHealthSummaryConfiguration.ini" << endl;
if (DeleteFileW(L"D:\\ProgramData\\Microsoft\\Windows\\AppRepository\\Packages\\InputApp_1000.17763.1.0_neutral_neutral_cw5n1h2txyewy\\ActivationStore.dat") != 0)
cout << "Deleted D:\\ProgramData\\Microsoft\\Windows\\AppRepository\\Packages\\ActivationStore.dat" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\Logs\FortniteGame.log)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Logs\\FortniteGame.log" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\INetCache\Content.IE5)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\INetCache\\Content.IE5" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\History\History.IE5)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\History\\History.IE5" << endl;
if (DeleteFileW(L"D:\\ProgramData\\Microsoft\\Windows\\DeviceMetadataCache\\dmrc.idx") != 0)
cout << "Deleted D:\\ProgramData\\Microsoft\\Windows\\DeviceMetadataCache\\dmrc.idx" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\\Local\\Microsoft\\Windows\\SettingSync\\metastore\\edb.log)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\SettingSync\\metastore\\edb.log" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\\Local\\Microsoft\\Windows\\SettingSync\\remotemetastore\\v1\\edb.log)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\SettingSync\\remotemetastore\\v1\\edb.log" << endl;
if (DeleteFileW(L"D:\\Windows\\SoftwareDistribution\\PostRebootEventCache.V2") != 0)
cout << "Deleted D:\\Windows\\SoftwareDistribution\\PostRebootEventCache.V2" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\ntuser.ini)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\ntuser.ini" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(ntuser.pol)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\ntuser.pol" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(ntuser.dat.LOG1)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\ntuser.dat.LOG1" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(ntuser.dat.LOG2)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\ntuser.dat.LOG2" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\INetCache\IE\container.dat)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE\\container.dat" << endl;
if (DeleteFileW(L"D:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files:VersionCache") != 0)
cout << "Deleted D:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files:VersionCache" << endl;
if (DeleteFileW(L"D:\\Users\\Public\\Documents") != 0)
cout << "Deleted D:\\Users\\Public\\Documents" << endl;
if (DeleteFileW(L"D:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CryptoKeys\\AssetRegistry.bin") != 0)
cout << "Deleted D:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CryptoKeys\\AssetRegistry.bin" << endl;
if (DeleteFileW(L"D:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CurveEditorTools\\AssetRegistry.bin") != 0)
cout << "Deleted D:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\CurveEditorTools\\AssetRegistry.bin" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(Documents\Unreal Engine\Engine\Config\UserGameUserSettings.ini)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\Documents\\Unreal Engine\\Engine\\Config\\UserGameUserSettings.ini" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Unreal Engine\Engine\Config\UserGameUserSettings.ini)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\Unreal Engine\\Engine\\Config\\UserGameUserSettings.ini" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\Cloud\bb360279f89647c982d9bc6ab596c2ee\ClientSettings.Sav)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Cloud\\ClientSettings.Sav" << endl;
if (DeleteFileW(L"D:\\Windows\\System32\\restore\\MachineGuid.txt") != 0)
cout << "Deleted D:\\Windows\\System32\\restore\\MachineGuid.txt" << endl;
if (DeleteFileW(L"D:\\System Volume Information\\tracking.log") != 0)
cout << "Deleted D:\\System Volume Information\\tracking.log" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\ntuser.ini)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\ntuser.ini" << endl;
if (DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\ntuser.pol)").c_str()) != 0)
cout << "Deleted D:\\Users\\Gaypple\\ntuser.pol" << endl;
if (DeleteFileW(L"D:\\PerfLogs\\collection.dat") != 0)
cout << "Deleted D:\\PerfLogs\\collection.dat" << endl;
if (DeleteFileW(L"D:\\Drivers\\storage.cache") != 0)
cout << "Deleted D:\\Drivers\\storage.cache" << endl;
if (DeleteFileW(L"D:\\Intel\\setup.cache") != 0)
cout << "Deleted D:\\Intel\\setup.cache" << endl;
if (DeleteFileW(L"D:\\MSOCache\\Setup.dat") != 0)
cout << "Deleted D:\\MSOCache\\Setup.dat" << endl;
// Disk E:
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\History\desktop.ini)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\History\\desktop.ini" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\LMS\Manifest.sav)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\LMS\\Manifest.sav" << endl;
if (DeleteFileW(L"E:\\Users\\Public\\Libraries\\collection.dat") != 0)
cout << "Deleted E:\\Users\\Public\\Libraries\\collection.dat" << endl;
if (DeleteFileW(L"E:\\Users\\Public\\Shared Files:VersionCache") != 0)
cout << "Deleted E:\\Users\\Public\\Shared Files:VersionCache" << endl;
if (DeleteFileW(L"E:\\MSOCache\\{71230000-00E2-0000-1000-00000000}\\Setup.dat") != 0)
cout << "Deleted E:\\MSOCache\\{71230000-00E2-0000-1000-00000000}\\Setup.dat" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Temp\0021346.tmp)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\Temp\\0021346.tmp" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(Videos\Captures\desktop.ini)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\Videos\\Captures\\desktop.ini" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Feeds)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Feeds:KnownSources" << endl;
if (DeleteFileW(L"E:\\desktop.ini:CachedTiles") != 0)
cout << "Deleted E:\\desktop.ini:CachedTiles" << endl;
if (DeleteFileW(L"E:\\Recovery\\ntuser.sys") != 0)
cout << "Deleted E:\\Recovery\\ntuser.sys" << endl;
DeleteFileW(L"E:\\desktop.ini");
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Packages\Microsoft.XboxGamingOverlay_8wekyb3d8bbwe\AC\INetCookies\ESE\container.dat)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\AC\\INetCookies\\ESE\\container.dat" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Packages\Microsoft.XboxGamingOverlay_8wekyb3d8bbwe\Settings\settings.dat)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\Packages\\Settings\\settings.dat" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\UnrealEngine\4.23\Saved\Config\WindowsClient\Manifest.ini)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\UnrealEngine\\4.23\\Saved\\Config\\WindowsClient\\Manifest.ini" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\\Config\WindowsClient\GameUserSettings.ini)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Config\\WindowsClient\\GameUserSettings.ini" << endl;
if (DeleteFileW(L"E:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\CacheAccess.json") != 0)
cout << "Deleted E:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\CacheAccess.json" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\ClientSettings.Sav" << endl;
if (DeleteFileW(L"E:\\Windows\\ServiceState\\EventLog\\Data\\lastalive1.dat") != 0)
cout << "Deleted E:\\Windows\\ServiceState\\EventLog\\Data\\lastalive1.dat" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\\Microsoft\OneDrive\logs\Common\DeviceHealthSummaryConfiguration.ini)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\OneDrive\\logs\\Common\\DeviceHealthSummaryConfiguration.ini" << endl;
if (DeleteFileW(L"E:\\ProgramData\\Microsoft\\Windows\\AppRepository\\Packages\\InputApp_1000.17763.1.0_neutral_neutral_cw5n1h2txyewy\\ActivationStore.dat") != 0)
cout << "Deleted E:\\ProgramData\\Microsoft\\Windows\\AppRepository\\Packages\\ActivationStore.dat" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\Logs\FortniteGame.log)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Logs\\FortniteGame.log" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\INetCache\Content.IE5)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\INetCache\\Content.IE5" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\History\History.IE5)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\History\\History.IE5" << endl;
if (DeleteFileW(L"E:\\ProgramData\\Microsoft\\Windows\\DeviceMetadataCache\\dmrc.idx") != 0)
cout << "Deleted E:\\ProgramData\\Microsoft\\Windows\\DeviceMetadataCache\\dmrc.idx" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\\Local\\Microsoft\\Windows\\SettingSync\\metastore\\edb.log)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\SettingSync\\metastore\\edb.log" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\\Local\\Microsoft\\Windows\\SettingSync\\remotemetastore\\v1\\edb.log)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\SettingSync\\remotemetastore\\v1\\edb.log" << endl;
if (DeleteFileW(L"E:\\Windows\\SoftwareDistribution\\PostRebootEventCache.V2") != 0)
cout << "Deleted E:\\Windows\\SoftwareDistribution\\PostRebootEventCache.V2" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\ntuser.ini)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\ntuser.ini" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(ntuser.pol)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\ntuser.pol" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(ntuser.dat.LOG1)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\ntuser.dat.LOG1" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(ntuser.dat.LOG2)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\ntuser.dat.LOG2" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\INetCache\IE\container.dat)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE\\container.dat" << endl;
if (DeleteFileW(L"E:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files:VersionCache") != 0)
cout << "Deleted E:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files:VersionCache" << endl;
if (DeleteFileW(L"E:\\Users\\Public\\Documents") != 0)
cout << "Deleted E:\\Users\\Public\\Documents" << endl;
if (DeleteFileW(L"E:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CryptoKeys\\AssetRegistry.bin") != 0)
cout << "Deleted E:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CryptoKeys\\AssetRegistry.bin" << endl;
if (DeleteFileW(L"E:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CurveEditorTools\\AssetRegistry.bin") != 0)
cout << "Deleted E:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\CurveEditorTools\\AssetRegistry.bin" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(Documents\Unreal Engine\Engine\Config\UserGameUserSettings.ini)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\Documents\\Unreal Engine\\Engine\\Config\\UserGameUserSettings.ini" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Unreal Engine\Engine\Config\UserGameUserSettings.ini)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\Unreal Engine\\Engine\\Config\\UserGameUserSettings.ini" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\Cloud\bb360279f89647c982d9bc6ab596c2ee\ClientSettings.Sav)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Cloud\\ClientSettings.Sav" << endl;
if (DeleteFileW(L"E:\\Windows\\System32\\restore\\MachineGuid.txt") != 0)
cout << "Deleted E:\\Windows\\System32\\restore\\MachineGuid.txt" << endl;
if (DeleteFileW(L"E:\\System Volume Information\\tracking.log") != 0)
cout << "Deleted E:\\System Volume Information\\tracking.log" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\ntuser.ini)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\ntuser.ini" << endl;
if (DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\ntuser.pol)").c_str()) != 0)
cout << "Deleted E:\\Users\\Gaypple\\ntuser.pol" << endl;
if (DeleteFileW(L"E:\\PerfLogs\\collection.dat") != 0)
cout << "Deleted E:\\PerfLogs\\collection.dat" << endl;
if (DeleteFileW(L"E:\\Drivers\\storage.cache") != 0)
cout << "Deleted E:\\Drivers\\storage.cache" << endl;
if (DeleteFileW(L"E:\\Intel\\setup.cache") != 0)
cout << "Deleted E:\\Intel\\setup.cache" << endl;
if (DeleteFileW(L"E:\\MSOCache\\Setup.dat") != 0)
cout << "Deleted E:\\MSOCache\\Setup.dat" << endl;
// Disk F:
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\History\desktop.ini)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\History\\desktop.ini" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\LMS\Manifest.sav)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\LMS\\Manifest.sav" << endl;
if (DeleteFileW(L"F:\\Users\\Public\\Libraries\\collection.dat") != 0)
cout << "Deleted F:\\Users\\Public\\Libraries\\collection.dat" << endl;
if (DeleteFileW(L"F:\\Users\\Public\\Shared Files:VersionCache") != 0)
cout << "Deleted F:\\Users\\Public\\Shared Files:VersionCache" << endl;
if (DeleteFileW(L"F:\\MSOCache\\{71230000-00E2-0000-1000-00000000}\\Setup.dat") != 0)
cout << "Deleted F:\\MSOCache\\{71230000-00E2-0000-1000-00000000}\\Setup.dat" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Temp\0021346.tmp)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\Temp\\0021346.tmp" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(Videos\Captures\desktop.ini)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\Videos\\Captures\\desktop.ini" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Feeds)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Feeds:KnownSources" << endl;
if (DeleteFileW(L"F:\\desktop.ini:CachedTiles") != 0)
cout << "Deleted F:\\desktop.ini:CachedTiles" << endl;
if (DeleteFileW(L"F:\\Recovery\\ntuser.sys") != 0)
cout << "Deleted F:\\Recovery\\ntuser.sys" << endl;
DeleteFileW(L"F:\\desktop.ini");
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Packages\Microsoft.XboxGamingOverlay_8wekyb3d8bbwe\AC\INetCookies\ESE\container.dat)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\AC\\INetCookies\\ESE\\container.dat" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Packages\Microsoft.XboxGamingOverlay_8wekyb3d8bbwe\Settings\settings.dat)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\Packages\\Settings\\settings.dat" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\UnrealEngine\4.23\Saved\Config\WindowsClient\Manifest.ini)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\UnrealEngine\\4.23\\Saved\\Config\\WindowsClient\\Manifest.ini" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\\Config\WindowsClient\GameUserSettings.ini)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Config\\WindowsClient\\GameUserSettings.ini" << endl;
if (DeleteFileW(L"F:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\CacheAccess.json") != 0)
cout << "Deleted F:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\CacheAccess.json" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\ClientSettings.Sav" << endl;
if (DeleteFileW(L"F:\\Windows\\ServiceState\\EventLog\\Data\\lastalive1.dat") != 0)
cout << "Deleted F:\\Windows\\ServiceState\\EventLog\\Data\\lastalive1.dat" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\\Microsoft\OneDrive\logs\Common\DeviceHealthSummaryConfiguration.ini)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\OneDrive\\logs\\Common\\DeviceHealthSummaryConfiguration.ini" << endl;
if (DeleteFileW(L"F:\\ProgramData\\Microsoft\\Windows\\AppRepository\\Packages\\InputApp_1000.17763.1.0_neutral_neutral_cw5n1h2txyewy\\ActivationStore.dat") != 0)
cout << "Deleted F:\\ProgramData\\Microsoft\\Windows\\AppRepository\\Packages\\ActivationStore.dat" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\Logs\FortniteGame.log)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Logs\\FortniteGame.log" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\INetCache\Content.IE5)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\INetCache\\Content.IE5" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Microsoft\Windows\History\History.IE5)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\Microsoft\\Windows\\History\\History.IE5" << endl;
if (DeleteFileW(L"F:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files:VersionCache") != 0)
cout << "Deleted C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\Shared Files:VersionCache" << endl;
if (DeleteFileW(L"F:\\Users\\Public\\Documents") != 0)
cout << "Deleted C:\\Users\\Public\\Documents" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\ntuser.ini)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\ntuser.ini" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(ntuser.pol)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\ntuser.pol" << endl;
if (DeleteFileW(L"F:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CryptoKeys\\AssetRegistry.bin") != 0)
cout << "Deleted F:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CryptoKeys\\AssetRegistry.bin" << endl;
if (DeleteFileW(L"F:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\Editor\\CurveEditorTools\\AssetRegistry.bin") != 0)
cout << "Deleted F:\\Program Files\\Epic Games\\Fortnite\\Engine\\Plugins\\CurveEditorTools\\AssetRegistry.bin" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(Documents\Unreal Engine\Engine\Config\UserGameUserSettings.ini)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\Documents\\Unreal Engine\\Engine\\Config\\UserGameUserSettings.ini" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\Unreal Engine\Engine\Config\UserGameUserSettings.ini)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\Unreal Engine\\Engine\\Config\\UserGameUserSettings.ini" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\AppData\Local\FortniteGame\Saved\Cloud\bb360279f89647c982d9bc6ab596c2ee\ClientSettings.Sav)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\AppData\\Local\\FortniteGame\\Saved\\Cloud\\ClientSettings.Sav" << endl;
if (DeleteFileW(L"F:\\Windows\\System32\\restore\\MachineGuid.txt") != 0)
cout << "Deleted F:\\Windows\\System32\\restore\\MachineGuid.txt" << endl;
if (DeleteFileW(L"F:\\System Volume Information\\tracking.log") != 0)
cout << "Deleted F:\\System Volume Information\\tracking.log" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\ntuser.ini)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\ntuser.ini" << endl;
if (DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\ntuser.pol)").c_str()) != 0)
cout << "Deleted F:\\Users\\Gaypple\\ntuser.pol" << endl;
if (DeleteFileW(L"F:\\PerfLogs\\collection.dat") != 0)
cout << "Deleted F:\\PerfLogs\\collection.dat" << endl;
if (DeleteFileW(L"F:\\Drivers\\storage.cache") != 0)
cout << "Deleted F:\\Drivers\\storage.cache" << endl;
if (DeleteFileW(L"F:\\Intel\\setup.cache") != 0)
cout << "Deleted F:\\Intel\\setup.cache" << endl;
if (DeleteFileW(L"F:\\MSOCache\\Setup.dat") != 0)
cout << "Deleted F:\\MSOCache\\Setup.dat" << endl;
if (DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\Engine\\Build\\NotForLicensees\\EpicInternal.txt") != 0)
if (DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\Engine\\Build\\PerforceBuild.txt") != 0)
if (DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\Engine\\Build\\SourceDistribution.txt") != 0)
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\Videos\Captures\desktop.ini)").c_str());
DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\Videos\Captures\desktop.ini)").c_str());
DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\Videos\Captures\desktop.ini)").c_str());
DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\Videos\Captures\desktop.ini)").c_str());
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\OneDrive\desktop.ini)").c_str());
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\Downloads\desktop.ini)").c_str());
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\Videos\desktop.ini)").c_str());
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\Pictures\desktop.ini)").c_str());
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\Music\desktop.ini)").c_str());
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\Documents\desktop.ini)").c_str());
DeleteFileW((LR"(C:\Users\)" + GetCurrentUserName() + LR"(\Desktop\desktop.ini)").c_str());
DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\OneDrive\desktop.ini)").c_str());
DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\Downloads\desktop.ini)").c_str());
DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\Videos\desktop.ini)").c_str());
DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\Pictures\desktop.ini)").c_str());
DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\Music\desktop.ini)").c_str());
DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\Documents\desktop.ini)").c_str());
DeleteFileW((LR"(D:\Users\)" + GetCurrentUserName() + LR"(\Desktop\desktop.ini)").c_str());
DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\OneDrive\desktop.ini)").c_str());
DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\Downloads\desktop.ini)").c_str());
DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\Videos\desktop.ini)").c_str());
DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\Pictures\desktop.ini)").c_str());
DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\Music\desktop.ini)").c_str());
DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\Documents\desktop.ini)").c_str());
DeleteFileW((LR"(E:\Users\)" + GetCurrentUserName() + LR"(\Desktop\desktop.ini)").c_str());
DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\OneDrive\desktop.ini)").c_str());
DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\Downloads\desktop.ini)").c_str());
DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\Videos\desktop.ini)").c_str());
DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\Pictures\desktop.ini)").c_str());
DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\Music\desktop.ini)").c_str());
DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\Documents\desktop.ini)").c_str());
DeleteFileW((LR"(F:\Users\)" + GetCurrentUserName() + LR"(\Desktop\desktop.ini)").c_str());
/*new traces*/
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\CacheAccess.json");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\09_SubgameSelect_Default_StW-512x1024-e47f51e25cbe9943678b9221056a808e81da40e3.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\11BR_BattleLabs_PlaylistTile-(2)-1024x512-ca5f4e84a2941264f787239caa5458d0eabd39e3.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\11BR_In-Game_Launch_Week1_SubgameSelect-512x1024-8b298ddfb13ca218af3f10017e4e989888212e9e.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\11BR_Launch_ModeTiles_Duos-1024x512-b73da22f5ef25695bd78814e0c708253a2cfd66b.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\11BR_Launch_ModeTiles_Solo-1024x512-867508f824d65b998c1e11180306eeb720b1aa11.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\11BR_Launch_ModeTiles_Squad-1024x512-4bca2b25311bd5b8c6bd4a4aa32b2bfa2fadbf78.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\11BR_LTM_Siphon_PlaylistTile-1024x512-712b3caea93ea8df09d1592c88d55913ad296526.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\11BR_LunarNewYear_GanPickaxe_MOTD_1920x1080-1920x1080-7c458359ec91e63c981ae8bae9498a590446c32b.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\BR06_ModeTile_TDM-1024x512-878ba9f92deb153ec85f2bcbce925e185344290e.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\C2CM_Launch_In-Game_Subgame_PropHunt-512x1024-c84b714dc3c2f4ec9dc966074c0c53deef2dc9.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\CM_LobbyTileArt-1024x512-fb48db36552ccb1ab4021b722ea29d515377cc.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\Fortnite%2Ffortnite-game%2Fbattleroyalenews%2F1140+HF%2F8ball_MOTD_1024x512-1024x512-b8690a2ee91e5ccfc2c9ab23561be0dda6ee55.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\Fortnite%2Ffortnite-game%2Ftournaments%2F11BR_Arena_ModeTiles_Duos-1024x512-a431d8587eb87ad5630eada21b60bca9874d116a.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\CMS\\Files\\9A71EB4A90946A4A0D9B7D82F48C55B49D0880\\Fortnite%2Ffortnite-game%2Ftournaments%2F11BR_Arena_ModeTiles_Solo_ModeTile-1024x512-6cee09d7bcf82ce3f32ca7c77ca04948121ce617.jpg");
DeleteFileW(L"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\DMS");
DeleteFileW(L"D:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\0BF0DEAA8A19079E0D347735A2F512415B4D9B14");
DeleteFileW(L"D:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\2895B436A3CE70D8FCBBA971A99D7782F30E1715");
DeleteFileW(L"D:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\2A6A06259337531EA5101E9BD8818AE92450FCE4");
DeleteFileW(L"D:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\2AB442E2E24447F99F9C2F298E583AD6F68AEA9B");
DeleteFileW(L"D:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\392F08F2C63619C978F2076694222ABC3054CFC4");
DeleteFileW(L"D:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\961B1FEC1E2362CF4FD638D26E622DE659AC92E9");
DeleteFileW(L"D:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\AEE16FB402698196FE2ABBC267BB5015D24144EB");
DeleteFileW(L"D:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\E14DAB2F57E4763BB4A8F40F08DD57DC07ADE36C");
DeleteFileW(L"D:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\F005B0C18B5D2B42267BDF297A7FC7C62901554B");
DeleteFileW(L"D:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\F127DEB22E390D0C299F3642BDF2B41D6E2A0B9C");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\0BF0DEAA8A19079E0D347735A2F512415B4D9B14");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\2895B436A3CE70D8FCBBA971A99D7782F30E1715");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\2A6A06259337531EA5101E9BD8818AE92450FCE4");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\2AB442E2E24447F99F9C2F298E583AD6F68AEA9B");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\392F08F2C63619C978F2076694222ABC3054CFC4");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\961B1FEC1E2362CF4FD638D26E622DE659AC92E9");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\AEE16FB402698196FE2ABBC267BB5015D24144EB");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\E14DAB2F57E4763BB4A8F40F08DD57DC07ADE36C");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\F005B0C18B5D2B42267BDF297A7FC7C62901554B");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\CMS\\Files\\C28FF1DE0C661DAF01E118A30B3F21B897A7A6E2\\F127DEB22E390D0C299F3642BDF2B41D6E2A0B9C");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\EMS");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\EMS\\c7dee411e20a44ab930f841e8d206b1b");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\EMS\\a22d837b6a2b46349421259c0a5411bf");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\EMS\\b800b911053c4906a5bd399f46ae0055");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\EMS\\3460cbe1c57d4a838ace32951a4d7171");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\EMS\\c52c1f9246eb48ce9dade87be5a66f29");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\EMS\\7e2a66ce68554814b1bd0aa14351cd71");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\FortniteGame\\Saved\\PersistentDownloadDir\\EMS\\b6c60402a72e4081a6a47c641371c19f");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Data\\Staged\\a1acda587b3e4c7b87df4eb11fece3c0.dat");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Data\\a1acda587b3e4c7b87df4eb11fece3c0.dat");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000067");
DeleteFileW(L"C:\\ProgramData\\Intel\\ShaderCache\\EpicGamesLauncher_1");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\databases\\Databases.db");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Local Storage\\https_ssl.kaptcha.com_0.localstorage");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Local Storage\\https_www.epicgames.com_0.localstorage");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\databases");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Local Storage");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Service Worker\\ScriptCache\\2cc80dabc69f58b6_1");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Service Worker\\ScriptCache\\4cb013792b196a35_1");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Service Worker\\ScriptCache\\f1cdccba37924bda_1");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Service Worker\\ScriptCache\\ba23d8ecda68de77_1");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Service Worker\\ScriptCache\\67a473248953641b_1");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Service Worker\\ScriptCache\\b6c28cea6ed9dfc1_1");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Service Worker\\ScriptCache\\013888a1cda32b90_1");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000001");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00004d");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Service Worker\\CacheStorage");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00004e");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00004f");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000050");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000051");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000052");
DeleteFileW(L"C:\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000053");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Config\\Windows\\EditorPerProjectUserSettings.ini");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Config\\Windows\\Engine.ini");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Config\\Windows\\Game.ini");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Config\\Windows\\GameUserSettings.ini");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Config\\Windows\\Hardware.ini");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Config\\Windows\\Input.ini");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Config\\Windows\\Lightmass.ini");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Config\\Windows\\PortalRegions.ini");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Data\\65f6b08d488442e694b1e23d152d971e.dat");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Data\\b371f0ee15b74eba84bd23830461130c.dat");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Data\\OC_65f6b08d488442e694b1e23d152d971e.dat");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Data\\OC_b371f0ee15b74eba84bd23830461130c.dat");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Logs\\cef3.log");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Logs\\EpicGamesLauncher.log");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\Logs\\EpicGamesLauncher_2.log");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\data_0");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\data_1");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\data_2");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\data_3");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000001");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000002");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000004");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000005");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000006");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000007");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000008");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000009");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00000a");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00000b");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00000c");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00000d");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00000e");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00000f");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000010");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000011");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000012");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000013");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000014");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000015");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000016");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000017");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000018");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000019");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00001a");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00001b");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00001c");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00001d");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00001e");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00001f");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000020");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000021");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000022");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000023");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000024");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000025");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000026");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000027");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000028");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00002b");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00002c");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00002d");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00002e");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00002f");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000030");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000031");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000032");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000033");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000034");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000035");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000036");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000037");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000038");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000039");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00003a");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00003b");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00003c");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00003d");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00003e");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_00003f");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000040");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000041");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000042");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000043");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000044");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000045");
DeleteFileW(L"%systemdrive%\\Users\\%username%\\AppData\\Local\\EpicGamesLauncher\\Saved\\webcache\\Cache\\f_000046");
DeleteFileW(L"%systemdrive%\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\PersistentDownloadDir\\");