-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathShadesToolbox.bat
2980 lines (2819 loc) · 293 KB
/
ShadesToolbox.bat
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
echo off
cls
set version=2.5
title Shades Toolbox - %version%
echo off
cls
chcp 65001 > NUL
cd /d "%~dp0"
for /f %%a in ('"cd"') do set Location=%%a
if C:\Shades-Toolbox NEQ %Location% (echo Move Shades-Toolbox Folder to Local Disk C !
echo.
echo Shades-Toolbox Closing...
timeout /t 3 /nobreak > NUL
exit
)
chcp 65001 > NUL
if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b)
SET webhook=
cd /d "%~dp0"
for /f %%a in ('"cd"') do set Location=%%a
set NSudo="%Location%\Files\NSudo.exe" -U:T -P:E -Wait -ShowWindowMode:hide cmd /c
:variables
set g=[92m
set r=[91m
set red=[04m
set l=[1m
set w=[0m
set b=[94m
set m=[95m
set p=[35m
set c=[35m
set d=[96m
set u=[0m
set z=[91m
set n=[96m
set y=[40;33m
set g2=[102m
set r2=[101m
set t=[40m
:: Webhook
SET webhook=
:loading
cls
chcp 437>nul
chcp 65001 >nul
mode con cols=140 lines=50
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo %c% ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
echo ██░▄▄▄░██░██░█░▄▄▀██░▄▄▀██░▄▄▄██░▄▄▄░███▄▄░▄▄██░▄▄▄░██░▄▄▄░██░█████░▄▄▀██░▄▄▄░█▄▀█▀▄
echo ██▄▄▄▀▀██░▄▄░█░▀▀░██░██░██░▄▄▄██▄▄▄▀▀█████░████░███░██░███░██░█████░▄▄▀██░███░███░██%u%
echo ██░▀▀▀░██░██░█░██░██░▀▀░██░▀▀▀██░▀▀▀░█████░████░▀▀▀░██░▀▀▀░██░▀▀░██░▀▀░██░▀▀▀░█▀▄█▄▀
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo.
echo Version: %version% User : %username% Date :%date%
echo.
echo Press any key to start...
echo.
echo.
pause >nul
:legit
cls
color a
echo.
echo %u%[%g%+%u%] %g%Successful!
echo.
echo %u%Developed by: %g%ShadesOfDeath
echo %u%Github: %g%https://github.com/shadesofdeath
echo.
echo.
echo.
echo.
timeout /t 5 >nul & cls & goto Presets
:Presets
cls
chcp 437>nul
echo Choose a Colour.
echo %b%Blue%u%, %d%Cyan%u%, %g%Green%u%, %y%Yellow%u% or %r%Red%u%.
set /p preset=
if /i %preset%==Blue goto Blue
if /i %preset%==Cyan goto Cyan
if /i %preset%==Yellow goto Yellow
if /i %preset%==Green goto Green
if /i %preset%==Red goto Red
echo %c%Please enter a valid option.
timeout /t 2 /nobreak >nul
goto Presets
:Blue
set c=%b%
set u=%u%
set d=%n%
goto menu
:Yellow
set c=%y%
set u=%u%
set d=%n%
goto menu
:Green
set c=%g%
set u=%u%
set d=%n%
goto menu
:Cyan
set c=%d%
set u=%u%
set d=%d%
goto menu
:Red
set c=%r%
set u=%u%
set d=%r%
goto menu
:menu
cls
chcp 437>nul
chcp 65001 >nul
mode con cols=140 lines=50
echo.
echo.
echo.
echo.
echo.
echo.
echo %c% ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
echo ██░▄▄▄░██░██░█░▄▄▀██░▄▄▀██░▄▄▄██░▄▄▄░███▄▄░▄▄██░▄▄▄░██░▄▄▄░██░█████░▄▄▀██░▄▄▄░█▄▀█▀▄
echo ██▄▄▄▀▀██░▄▄░█░▀▀░██░██░██░▄▄▄██▄▄▄▀▀█████░████░███░██░███░██░█████░▄▄▀██░███░███░██%u%
echo ██░▀▀▀░██░██░█░██░██░▀▀░██░▀▀▀██░▀▀▀░█████░████░▀▀▀░██░▀▀▀░██░▀▀░██░▀▀░██░▀▀▀░█▀▄█▄▀
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo.
echo Version: %version% User : %username% Date :%date%
echo.
echo [1] Tweaks [2] Download
echo.
echo [X] Exit
echo.
echo.
echo.
set /p v=" Choose an option » "
set choice=%errorlevel%
if %v%==1 goto TweaksMenu
if %v%==2 goto Downloader
if %v%==X goto Finish
if %v%==x goto Finish
pause >nul
goto TweaksMenu
:Downloader
cls
chcp 437>nul
chcp 65001 >nul
mode con cols=140 lines=50
echo.
echo.
echo.
echo %c% ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
echo ██░▄▄▄░██░██░█░▄▄▀██░▄▄▀██░▄▄▄██░▄▄▄░███▄▄░▄▄██░▄▄▄░██░▄▄▄░██░█████░▄▄▀██░▄▄▄░█▄▀█▀▄
echo ██▄▄▄▀▀██░▄▄░█░▀▀░██░██░██░▄▄▄██▄▄▄▀▀█████░████░███░██░███░██░█████░▄▄▀██░███░███░██%u%
echo ██░▀▀▀░██░██░█░██░██░▀▀░██░▀▀▀██░▀▀▀░█████░████░▀▀▀░██░▀▀▀░██░▀▀░██░▀▀░██░▀▀▀░█▀▄█▄▀
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo.
echo Version: %version% User : %username% Date :%date%
echo.
echo [Browsers] [Runtimes] [Document] [VPN]
echo 1 Chrome 16 Java 8 31 FoxitReader 46 OpenVPN
echo 2 Opera 17 .Net Framework 4.8 32 LibreOffice 47 MullvadVPN
echo 3 Firefox 18 DirectX Runtime 33 SumatraPDF 48 ExpressVPN
echo 4 Brave 19 Java SE 18 34 OpenOffice 49 NordVPN
echo 5 Tor Browser 20 Visual C++ AIO 2015-2022 35 CutePDFWriter 50 MozillaVPN
echo.
echo [Messaging] [Imaging] [Archive] [Download Manager]
echo 6 Zoom 21 GIMP 36 WinRAR 51 IDM
echo 7 Discord 22 IrfanView8 37 7zip 52 XDM
echo 8 Skype 23 ShareX 38 IZArc 53 JDownloader
echo 9 WhatsApp 24 MyPaint 39 Peazip 54 FreeDownloadManager
echo 10 Telegram 25 Blender 40 Bandizip 55 NeatDownloadManage
echo.
echo [Video / Sound] [Anivirus] [Other] [Torrent]
echo 11 Vlc 26 Malwarebytes 41 Evernote 56 qBittorrent
echo 12 Winamp 27 EsetNod32 42 Google Earth Pro 57 PicoTorrent
echo 13 Gom Player 28 IObit Malware Fighter 43 Steam 58 Deluge Torrent
echo 14 Handbrake 29 SUPERAntiSpyware 44 OneDrive 59 BiglyB
echo 15 Spotify 30 Webroot 45 Notepad++ 60 Electorrent
echo.
echo ╔════════════════════════════════════════════════════════════════════════════════════╗
echo ║ [M] Menu [F] Exit [C] Shades ISO Downlaoder ║
echo ╚════════════════════════════════════════════════════════════════════════════════════╝
echo.
set /p menu=" Choose an option » "
set choice=%errorlevel%
if %menu% EQU 1 (Call :Winget "Google.Chrome")
if %menu% EQU 2 (Call :Winget "Opera.Opera")
if %menu% EQU 3 (Call :Winget "Mozilla.Firefox")
if %menu% EQU 4 (Call :Winget "BraveSoftware.BraveBrowser")
if %menu% EQU 5 (Call :Winget "TorProject.TorBrowser")
if %menu% EQU 6 (Call :Winget "Zoom.Zoom")
if %menu% EQU 7 (Call :Winget "Discord.Discord")
if %menu% EQU 8 (Call :Winget "Microsoft.Skype")
if %menu% EQU 9 (Call :Winget "WhatsApp.WhatsApp")
if %menu% EQU 10 (Call :Winget "Telegram.TelegramDesktop")
if %menu% EQU 11 (Call :Winget "VideoLAN.VLC")
if %menu% EQU 12 (Call :Winget "Radionomy.Winamp")
if %menu% EQU 13 (Call :Winget "GOMLab.GOMPlayer")
if %menu% EQU 14 (Call :Winget "HandBrake.HandBrake")
if %menu% EQU 15 (Call :Winget "Spotify.Spotify")
if %menu% EQU 16 (Call :Winget "Oracle.JavaRuntimeEnvironment")
if %menu% EQU 17 (Call :Winget "Microsoft.dotNetFramework")
if %menu% EQU 18 (Call :Winget "Microsoft.DirectX")
if %menu% EQU 19 (Call :Winget "Oracle.JDK.18")
if %menu% EQU 20 (Call :Winget "Microsoft.VC++2015-2022Redist-x64")
if %menu% EQU 21 (Call :Winget "GIMP.GIMP")
if %menu% EQU 22 (Call :Winget "IrfanSkiljan.IrfanView")
if %menu% EQU 23 (Call :Winget "ShareX.ShareX")
if %menu% EQU 24 (Call :Winget "MyPaint.MyPaint")
if %menu% EQU 25 (Call :Winget "BlenderFoundation.Blender")
if %menu% EQU 26 (Call :Winget "Malwarebytes.Malwarebytes")
if %menu% EQU 27 (Call :Winget "ESET.Nod32")
if %menu% EQU 28 (Call :Winget "IObit.MalwareFighter")
if %menu% EQU 29 (Call :Winget "SUPERAntiSpyware.SUPERAntiSpyware")
if %menu% EQU 30 (Call :Winget "Webroot.SecureAnywhere")
if %menu% EQU 31 (Call :Winget "Foxit.FoxitReader")
if %menu% EQU 32 (Call :Winget "TheDocumentFoundation.LibreOffice")
if %menu% EQU 33 (Call :Winget "SumatraPDF.SumatraPDF")
if %menu% EQU 34 (Call :Winget "Apache.OpenOffice")
if %menu% EQU 35 (Call :Winget "AcroSoftware.CutePDFWriter")
if %menu% EQU 36 (Call :Winget "RARLab.WinRAR")
if %menu% EQU 37 (Call :Winget "mcmilk.7zip-zstd")
if %menu% EQU 38 (Call :Winget "IZArc.IZArc")
if %menu% EQU 39 (Call :Winget "Giorgiotani.Peazip")
if %menu% EQU 40 (Call :Winget "Bandisoft.Bandizip")
if %menu% EQU 41 (Call :Winget "evernote.evernote")
if %menu% EQU 42 (Call :Winget "Google.EarthPro")
if %menu% EQU 43 (Call :Winget "Valve.Steam")
if %menu% EQU 44 (Call :Winget "Microsoft.OneDrive")
if %menu% EQU 45 (Call :Winget "Notepad++.Notepad++")
if %menu% EQU 46 (Call :Winget "OpenVPNTechnologies.OpenVPNConnect")
if %menu% EQU 47 (Call :Winget "MullvadVPN.MullvadVPN")
if %menu% EQU 48 (Call :Winget "ExpressVPN.ExpressVPN")
if %menu% EQU 49 (Call :Winget "NordVPN.NordVPN")
if %menu% EQU 50 (Call :Winget "Mozilla.VPN")
if %menu% EQU 51 (Call :Winget "Tonec.InternetDownloadManager")
if %menu% EQU 52 (Call :Winget "subhra74.XtremeDownloadManager")
if %menu% EQU 53 (Call :Winget "AppWork.JDownloader")
if %menu% EQU 54 (Call :Winget "SoftDeluxe.FreeDownloadManager")
if %menu% EQU 55 (Call :Winget "JavadMotallebi.NeatDownloadManager")
if %menu% EQU 56 (Call :Winget "qBittorrent.qBittorrent")
if %menu% EQU 57 (Call :Winget "PicoTorrent.PicoTorrent")
if %menu% EQU 58 (Call :Winget "DelugeTeam.Deluge")
if %menu% EQU 59 (Call :Winget "BiglySoftware.BiglyBT")
if %menu% EQU 60 (Call :Winget "Tympanix.Electorrent")
if %menu% EQU M goto menu
if %menu% EQU m goto menu
if %menu% EQU F goto Finish
if %menu% EQU f goto Finish
goto Downloader
:Winget
winget install -e --id %~1
goto :Eof
:TweaksMenu
cls
mode con cols=140 lines=50
chcp 437>nul
chcp 65001 >nul
echo.
echo.
echo.
echo.
echo %c% ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
echo ██░▄▄▄░██░██░█░▄▄▀██░▄▄▀██░▄▄▄██░▄▄▄░███▄▄░▄▄██░▄▄▄░██░▄▄▄░██░█████░▄▄▀██░▄▄▄░█▄▀█▀▄
echo ██▄▄▄▀▀██░▄▄░█░▀▀░██░██░██░▄▄▄██▄▄▄▀▀█████░████░███░██░███░██░█████░▄▄▀██░███░███░██%u%
echo ██░▀▀▀░██░██░█░██░██░▀▀░██░▀▀▀██░▀▀▀░█████░████░▀▀▀░██░▀▀▀░██░▀▀░██░▀▀░██░▀▀▀░█▀▄█▄▀
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo.
echo Version: %version% User : %username% Date :%date%
echo.
echo [1] Remove logs and Caches [21] Clear previous Windows installations
echo [2] Full Debloat [22] Disable Windows Features
echo [3] Remove OneDrive [23] Enable Old Volume Bar
echo [4] Remove Microsoft Edge [24] Enable Legacy Boot Menu
echo [5] Remove Taskbar MeetNow Logo [25] Run CompactOS
echo [6] Disable Windows Defender [26] Add Context Menu Take Ownership
echo [7] Stop Windows Updates until 2099 [27] Shades Windows Activator
echo [8] Enable Old Photo Viewer [28] Paging File (Virtual Memory)
echo [9] Disable Windows Driver Updates [29] Windows Version Switcher
echo [10] Ram Optimization [30] Enable Old Alt+Tab Menu
echo [11] Network Optimization [31] Disable Widgets
echo [12] CPU Optimization [32] Enable Old Context Menu
echo [13] Mouse/Keyboard Optimization [33] Disable Startup Delay
echo [14] Disable SmartScreen [34] File Explorer Classic Ribbon
echo [15] Run Disk Defrag [35] 8.1 Style Wifi Menu(Only Win10
echo [16] Disable Windows Update [36] Add Personalize (Old) ContextMenu
echo [17] Disable Telemetry Services [37] NetFramework 3.5 Online Install
echo [18] Uninstall provisioned Windows apps [38] Soon..
echo [19] Uninstall installed Windows apps [39] Soon..
echo [20] Unninstall System Apps [40] Soon..
echo.
echo ╔════════════════════════════════════════════════════════════════════════════════════╗
echo ║ [M] Menu [F] Exit [C] Shades ISO Downlaoder ║
echo ╚════════════════════════════════════════════════════════════════════════════════════╝
echo.
echo.
set /p M=" Choose an option » "
set choice=%errorlevel%
if %M%==1 goto A
if %M%==2 goto B
if %M%==3 goto C
if %M%==4 goto D
if %M%==5 goto E
if %M%==6 goto F
if %M%==7 goto G
if %M%==8 goto OldPhotoViewer
if %M%==9 goto I
if %M%==10 goto J
if %M%==11 goto K
if %M%==12 goto CO
if %M%==13 goto MKT
if %M%==14 goto SmartScreen
if %M%==15 goto Defrag
if %M%==16 goto DisableWindowsUpdates
if %M%==17 goto DisableTelemetry
if %M%==18 goto UninstallprovisionedWindowsapps
if %M%==19 goto UninstallinstalledWindowsapps
if %M%==20 goto UnninstallSystemApps
if %M%==21 goto ClearpreviousWindowsinstallations
if %M%==22 goto DisableWindowsFeatures
if %M%==23 goto oldvolumebar
if %M%==24 goto legacyboot
if %M%==25 goto compactos
if %M%==26 goto takeownership
if %M%==27 goto activator
if %M%==28 goto pagingfile
if %M%==29 goto WindowsVersionSwither
if %M%==30 goto oldalttab
if %M%==31 goto disablewidget
if %M%==32 goto oldcontext
if %M%==33 goto DisableStartupDelay
if %M%==34 goto FileExplorerClassicRibbon
if %M%==35 goto 8.1StyleWifiMenu
if %M%==36 goto oldPersonalize
if %M%==37 goto netframework3.5
if %M%==C goto ISO
if %M%==c goto ISO
if %M%==M goto menu
if %M%==m goto menu
if %M%==L goto Finish
if %M%==l goto Finish
goto TweaksMenu
:ISO
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo %c% ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
echo ██░▄▄▄░██░██░█░▄▄▀██░▄▄▀██░▄▄▄██░▄▄▄░███▄▄░▄▄██░▄▄▄░██░▄▄▄░██░█████░▄▄▀██░▄▄▄░█▄▀█▀▄
echo ██▄▄▄▀▀██░▄▄░█░▀▀░██░██░██░▄▄▄██▄▄▄▀▀█████░████░███░██░███░██░█████░▄▄▀██░███░███░██%u%
echo ██░▀▀▀░██░██░█░██░██░▀▀░██░▀▀▀██░▀▀▀░█████░████░▀▀▀░██░▀▀▀░██░▀▀░██░▀▀░██░▀▀▀░█▀▄█▄▀
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo.
echo Version: %version% User : %username% Date :%date%
echo.
echo [1] Windows ISO [2] Office Downloader
echo.
echo [X] Exit
echo.
echo.
echo.
set v=Hata%random%
set /p v=" Choose an option » "
if %v%==1 goto edition
if %v%==2 goto Office
if %v%==X goto Finish
if %v%==x goto Finish
goto ISO
:edition
cls
title Shades Windows ISO Downloader
echo %c% ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
echo ██░▄▄▄░██░██░█░▄▄▀██░▄▄▀██░▄▄▄██░▄▄▄░███▄▄░▄▄██░▄▄▄░██░▄▄▄░██░█████░▄▄▀██░▄▄▄░█▄▀█▀▄
echo ██▄▄▄▀▀██░▄▄░█░▀▀░██░██░██░▄▄▄██▄▄▄▀▀█████░████░███░██░███░██░█████░▄▄▀██░███░███░██%u%
echo ██░▀▀▀░██░██░█░██░██░▀▀░██░▀▀▀██░▀▀▀░█████░████░▀▀▀░██░▀▀▀░██░▀▀░██░▀▀░██░▀▀▀░█▀▄█▄▀
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo.
echo Version: %version% User : %username% Date :%date%
echo -------------------------------------------------------------------------------------------------------
echo NOTE: After the download is finished, the file will be saved in the ISO-FOLDER folder in Local Disk C.
echo -------------------------------------------------------------------------------------------------------
echo.
echo [1] Windows 11 [22H2] [22621.525]
echo [2] Windows 11 [22H2] [22621.382]
echo [3] Windows 11 [21H2] [22000.318]
echo [4] Windows 11 [21H2] [22000.194]
echo [5] Windows 10 22H2 (build 19045.XXXX) (x64)
echo [6] Windows 10 22H2 (build 19045.XXXX) (x86)
echo [7] Windows 10 21H2 (build 19044.1288)(x64)
echo [8] Windows 10 21H2 (build 19044.1288)(x86)
echo [9] Windows 10 21H1 (build 19043.928)(x64)
echo [10] Windows 10 21H1 (build 19043.928)(x86)
echo [11] Windows 10 2009 - 20H2 (build 19042.631)(x64)
echo [12] Windows 10 2009 - 20H2 (build 19042.631)(x86)
echo [13] Windows 10 2009 - 20H2 (build 19042.508)(x64)
echo [14] Windows 10 2009 - 20H2 (build 19042.508)(x86)
echo [15] Windows 10 2004 - 20H1 (build 19041.264)(x86)
echo [16] Windows 10 2004 - 20H1 (build 19041.264)(x64)
echo [17] Windows 10 1909 - 19H2 (build 18363.418)(x86)
echo [18] Windows 10 1909 - 19H2 (build 18363.418)(x64)
echo [19] Windows 10 1903 - 19H1 (build 18362.356)(x86)
echo [20] Windows 10 1903 - 19H1 (build 18362.356)(x64)
echo [21] Windows 10 1903 - 19H1 (build 18362.30)(x86)
echo [22] Windows 10 1903 - 19H1 (build 18362.30)(x64)
echo [23] Windows 10 1809 - Redstone 5 [Sept 2018] (build 17763.1)(x86)
echo [24] Windows 10 1809 - Redstone 5 [Sept 2018] (build 17763.1)(x64)
echo [25] Windows 10 1809 - Redstone 5 [Oct 2018] (build 17763.107)(x86)
echo [26] Windows 10 1809 - Redstone 5 [Oct 2018] (build 17763.107)(x64)
echo [27] Windows 10 1809 - Redstone 5 [March 2019] (build 17763.379)(x86)
echo [28] Windows 10 1809 - Redstone 5 [March 2019] (build 17763.379)(x64)
echo.
set /P c= Version Select :
echo.
if /I "%c%" EQU "1" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=3a6db98a")
if /I "%c%" EQU "2" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=8283125c")
if /I "%c%" EQU "3" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=55a5f243")
if /I "%c%" EQU "4" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=3f1c444c")
if /I "%c%" EQU "5" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=616522ae")
if /I "%c%" EQU "6" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=b2f4376f")
if /I "%c%" EQU "7" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=35782c91")
if /I "%c%" EQU "8" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=15949c3e")
if /I "%c%" EQU "9" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=8c764d2e")
if /I "%c%" EQU "10" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=d61c63b5")
if /I "%c%" EQU "11" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=3dd1ce66")
if /I "%c%" EQU "12" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=7e583fea")
if /I "%c%" EQU "13" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=73ffea7e")
if /I "%c%" EQU "14" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=b2e49665")
if /I "%c%" EQU "15" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=a621ee85")
if /I "%c%" EQU "16" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=272d35a7")
if /I "%c%" EQU "17" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=9e4157f9")
if /I "%c%" EQU "18" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=1211334a")
if /I "%c%" EQU "19" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=b648eb36")
if /I "%c%" EQU "20" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=d5f2775e")
if /I "%c%" EQU "21" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=f33a92d3")
if /I "%c%" EQU "22" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=cba31cfe")
if /I "%c%" EQU "23" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=3dfcf438")
if /I "%c%" EQU "24" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=a1dfdc28")
if /I "%c%" EQU "25" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=5fd3e266")
if /I "%c%" EQU "26" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=aefedb54")
if /I "%c%" EQU "27" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=226faa91")
if /I "%c%" EQU "28" (call :Download-ISO "https://tb.rg-adguard.net/dl.php?go=37edc5ff")
goto edition
:Office
cls
title Shades Office Downloader
echo %c% ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
echo ██░▄▄▄░██░██░█░▄▄▀██░▄▄▀██░▄▄▄██░▄▄▄░███▄▄░▄▄██░▄▄▄░██░▄▄▄░██░█████░▄▄▀██░▄▄▄░█▄▀█▀▄
echo ██▄▄▄▀▀██░▄▄░█░▀▀░██░██░██░▄▄▄██▄▄▄▀▀█████░████░███░██░███░██░█████░▄▄▀██░███░███░██%u%
echo ██░▀▀▀░██░██░█░██░██░▀▀░██░▀▀▀██░▀▀▀░█████░████░▀▀▀░██░▀▀▀░██░▀▀░██░▀▀░██░▀▀▀░█▀▄█▄▀
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo.
echo Version: %version% User : %username% Date :%date%
echo -------------------------------------------------------------------------------------------------------
echo NOTE: After the download is finished, the file will be saved in the OFFICE-FOLDER folder in Local Disk C.
echo -------------------------------------------------------------------------------------------------------
echo.
echo [1] Microsoft Office 2021
echo [2] Microsoft Office 2019
echo [3] Microsoft Office 2016
echo [4] Microsoft Office 2013
echo [5] Microsoft Office 365 Pro Plus
echo. [6] Office Activator
echo.
set /P c= Version Select :
echo.
if /P "%c%" EQU "1" (call :Download-OFFICE "https://tb.rg-adguard.net/dl.php?go=7713396f")
if /P "%c%" EQU "2" (call :Download-OFFICE "https://tb.rg-adguard.net/dl.php?go=56b3c333")
if /P "%c%" EQU "3" (call :Download-OFFICE "https://tb.rg-adguard.net/dl.php?go=3e814823")
if /P "%c%" EQU "4" (call :Download-OFFICE "https://tb.rg-adguard.net/dl.php?go=eec9cb96")
if /P "%c%" EQU "5" (call :Download-OFFICE "https://tb.rg-adguard.net/dl.php?go=287bd637")
if /P "%c%" EQU "6" (call :Download-OFFICE "https://github.com/massgravel/Microsoft-Activation-Scripts/releases/download/1.6/MAS_1.6_Password_1234.7z")
goto edition
:Download-OFFICE
echo -------------------------------------------------------------------------------------------------------
echo NOTE: After the download is finished, the file will be saved in the OFFICE-FOLDER folder in Local Disk C.
echo -------------------------------------------------------------------------------------------------------
aria2c.exe -d, --dir=C:\OFFICE-FOLDER\ %~1
echo -------------------------------------------------------------------------------------------------------
echo SUCCES: Check ISO ( C:\OFFICE-FOLDER )
echo -------------------------------------------------------------------------------------------------------
pause
goto done
:Download-ISO
echo -------------------------------------------------------------------------------------------------------
echo NOTE: After the download is finished, the file will be saved in the ISO-FOLDER folder in Local Disk C.
echo -------------------------------------------------------------------------------------------------------
aria2c.exe -d, --dir=C:\ISO-FOLDER\ %~1
echo -------------------------------------------------------------------------------------------------------
echo SUCCES: Check ISO ( C:\ISO-FOLDER )
echo -------------------------------------------------------------------------------------------------------
pause
goto done
:netframework3.5
chcp 437 > NUL 2>&1
chcp 65001 >nul
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All
timeout /t 2 >nul
goto TweaksMenu
:oldPersonalize
chcp 437>nul
chcp 65001 >nul
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization" /v "Icon" /t REG_SZ /d "themecpl.dll" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization" /v "MUIVerb" /t REG_SZ /d "Personalize (classic)" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization" /v "Position" /t REG_SZ /d "Bottom" /f
Reg.exe delete "HKCR\DesktopBackground\Shell\Personalization" /v "Extended" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization" /v "SubCommands" /t REG_SZ /d "" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\001flyout" /v "MUIVerb" /t REG_SZ /d "Theme Settings" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\001flyout" /v "ControlPanelName" /t REG_SZ /d "Microsoft.Personalization" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\001flyout" /v "Icon" /t REG_SZ /d "themecpl.dll" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\001flyout\command" /ve /t REG_SZ /d "explorer shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921}" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\002flyout" /v "Icon" /t REG_SZ /d "imageres.dll,-110" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\002flyout" /v "MUIVerb" /t REG_SZ /d "Desktop Background" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\002flyout" /v "CommandFlags" /t REG_DWORD /d "32" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\002flyout\command" /ve /t REG_SZ /d "explorer shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921} -Microsoft.Personalization\pageWallpaper" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\003flyout" /v "Icon" /t REG_SZ /d "themecpl.dll" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\003flyout" /v "MUIVerb" /t REG_SZ /d "Color and Appearance" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\003flyout\command" /ve /t REG_SZ /d "explorer shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921} -Microsoft.Personalization\pageColorization" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\004flyout" /v "Icon" /t REG_SZ /d "SndVol.exe,-101" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\004flyout" /v "MUIVerb" /t REG_SZ /d "Sounds" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\004flyout\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,2" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\005flyout" /v "Icon" /t REG_SZ /d "PhotoScreensaver.scr" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\005flyout" /v "MUIVerb" /t REG_SZ /d "Screen Saver Settings" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\005flyout\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\006flyout" /v "Icon" /t REG_SZ /d "desk.cpl" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\006flyout" /v "MUIVerb" /t REG_SZ /d "Desktop Icon Settings" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\006flyout" /v "CommandFlags" /t REG_DWORD /d "32" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\006flyout\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\007flyout" /v "Icon" /t REG_SZ /d "main.cpl" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\007flyout" /v "MUIVerb" /t REG_SZ /d "Mouse Pointers" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\007flyout\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL main.cpl,,1" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\008flyout" /v "Icon" /t REG_SZ /d "taskbarcpl.dll,-1" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\008flyout" /v "MUIVerb" /t REG_SZ /d "Notification Area Icons" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\008flyout" /v "CommandFlags" /t REG_DWORD /d "32" /f
Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\008flyout\command" /ve /t REG_SZ /d "explorer shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}" /f
echo Explorer.exe Resarting.. Please Wait..
timeout /t 2 >nul
echo Succesfully..
timeout /t 2 >nul
taskkill /im explorer.exe /f
start explorer
goto TweaksMenu
:8.1StyleWifiMenu
chcp 437 > NUL 2>&1
chcp 65001 >nul
%NSudo% reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\Settings\Network" /v "ReplaceVan" /t REG_DWORD /d 2 /f
echo Succesfully..
timeout /t 2 >nul
goto TweaksMenu
:FileExplorerClassicRibbon
chcp 437 > NUL 2>&1
chcp 65001 >nul
Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked" /v "{e2bf9676-5f8f-435c-97eb-11607a5bedf7}" /t REG_SZ /d "" /f
echo Succesfully..
timeout /t 2 >nul
taskkill /im explorer.exe /f
start explorer
goto TweaksMenu
:oldcontext
chcp 437 > NUL 2>&1
chcp 65001 >nul
Reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /ve /t REG_SZ /d "" /f
Reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /ve /t REG_SZ /d "" /f
echo Succesfully..
timeout /t 2 >nul
taskkill /im explorer.exe /f
start explorer
goto TweaksMenu
:disablewidget
chcp 437 > NUL 2>&1
chcp 65001 >nul
Reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Dsh" /v "AllowNewsAndInterests" /t REG_DWORD /d "0" /f
echo Succesfully..
taskkill /im explorer.exe /f
start explorer
timeout /t 2 >nul
goto TweaksMenu
:oldalttab
chcp 437 > NUL 2>&1
chcp 65001 >nul
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v "AltTabSettings" /t REG_DWORD /d 1 /f
echo Succesfully..
timeout /t 2 >nul
taskkill /im explorer.exe /f
start explorer
goto TweaksMenu
:G
chcp 437 > NUL 2>&1
chcp 65001 >nul
Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" /v "PauseUpdatesExpiryTime" /t REG_SZ /d "2099-12-29T23:59Z" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" /v "PauseFeatureUpdatesEndTime" /t REG_SZ /d "2099-12-29T23:59Z" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" /v "PauseQualityUpdatesEndTime" /t REG_SZ /d "2099-12-29T23:59Z" /f
echo Succesfully..
timeout /t 2 >nul
goto TweaksMenu
:WindowsVersionSwither
chcp 437 > NUL 2>&1
chcp 65001 >nul
@echo off
:start
cls
echo *****************************************
echo * Shades Windows 10/11 Version Switcher *
echo *****************************************
echo 1. Windows 10/11 Pro
echo 2. Windows 10/11 Pro VL
echo 3. Windows 10/11 Education VL
echo 4. Windows 10/11 Enterprise VL
echo 5. Windows 10/11 Home
echo 6. Exit
echo.
set choice=
set /p choice= Select Version:
if not '%choice%'=='' set choice=%choice:~0,1%
if '%choice%'=='1' goto to_pro
if '%choice%'=='2' goto to_pro_vl
if '%choice%'=='3' goto to_edu_vl
if '%choice%'=='4' goto to_ent_vl
if '%choice%'=='5' goto end
goto start
:to_pro
changepk /ProductKey VK7JG-NPHTM-C97JM-9MPGT-3V66T
goto finish
:to_pro_vl
changepk /ProductKey W269N-WFGWX-YVC9B-4J6C9-T83GX
goto finish
:to_edu_vl
changepk /ProductKey NW6C2-QMPVW-D7KKK-3GKT6-VCFB2
goto finish
:to_ent_vl
changepk /ProductKey NPPR9-FWDCX-D2C8J-H872K-2YT43
goto finish
:finish
echo Switched Successfully..
timeout /t 2 >nul
goto TweaksMenu
:end
goto TweaksMenu
:pagingfile
chcp 437 > NUL 2>&1
chcp 65001 >nul
cls
echo -----------------------------------------------------------------------------------------------------------
echo Paging file (virtual memory)
echo -----------------------------------------------------------------------------------------------------------
echo [1] Disable : Pagefile.sys
echo [2] Enable : Pagefile.sys [set to 256MB]
echo [3] Enable : Pagefile.sys [set to 3.0GB]
echo [4] Enable : Pagefile.sys [set to 4.0GB]
echo [5] Enable : Pagefile.sys [set to 8.0GB]
echo [6] Enable : Pagefile.sys [set to 16.0GB]
echo [7] Enable : Pagefile.sys [Default System managed]
echo ------------------------------------------------------------------------------------------------------------
echo [0] Back to menu
echo ------------------------------------------------------------------------------------------------------------
echo ------------------------------------------------------------------------------------------------------------
echo NOTE: Default System managed ex. 4GB of ram Pagefile.sys be using 4GB of size on your drives.
echo ------------------------------------------------------------------------------------------------------------
set /p op= Type option:
if "%op%"=="1" goto m1
if "%op%"=="2" goto m2
if "%op%"=="3" goto m3
if "%op%"=="4" goto m4
if "%op%"=="5" goto m5
if "%op%"=="6" goto m6
if "%op%"=="7" goto m7
if "%op%"=="0" goto TweaksMenu
echo This function not available yet!
echo Succesfully!
timeout /t 3 >nul
goto TweaksMenu
:m1
REG add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "PagingFiles" /t REG_MULTI_SZ /d "C:\pagefile.sys 1 1" /f
Reg Add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "ClearPageFileAtShutdown" /t REG_DWORD /d 0 /f
wmic pagefileset where name="C:\\pagefile.sys" delete
echo Restart the computer for the changes to take effect.
timeout /t 3 >nul
call TweaksMenu
:m2
Reg Add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "ClearPageFileAtShutdown" /t REG_DWORD /d 0 /f
REG add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "PagingFiles" /t REG_MULTI_SZ /d "C:\pagefile.sys 256 256" /f
echo Restart the computer for the changes to take effect.
echo Succesfully!
timeout /t 3 >nul
goto TweaksMenu
:m3
Reg Add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "ClearPageFileAtShutdown" /t REG_DWORD /d 0 /f
REG add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "PagingFiles" /t REG_MULTI_SZ /d "C:\pagefile.sys 3000 3000" /f
echo Restart the computer for the changes to take effect.
echo Succesfully!
timeout /t 3 >nul
goto TweaksMenu
:m4
Reg Add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "ClearPageFileAtShutdown" /t REG_DWORD /d 0 /f
REG add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "PagingFiles" /t REG_MULTI_SZ /d "C:\pagefile.sys 4000 4000" /f
echo Restart the computer for the changes to take effect.
echo Succesfully!
timeout /t 3 >nul
goto TweaksMenu
:m5
Reg Add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "ClearPageFileAtShutdown" /t REG_DWORD /d 0 /f
REG add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "PagingFiles" /t REG_MULTI_SZ /d "C:\pagefile.sys 8000 8000" /f
echo Restart the computer for the changes to take effect.
echo Succesfully!
timeout /t 3 >nul
goto TweaksMenu
:m6
Reg Add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "ClearPageFileAtShutdown" /t REG_DWORD /d 0 /f
REG add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "PagingFiles" /t REG_MULTI_SZ /d "C:\pagefile.sys 16000 16000" /f
echo Restart the computer for the changes to take effect.
echo Succesfully!
timeout /t 3 >nul
goto TweaksMenu
:m7
Reg Add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "ClearPageFileAtShutdown" /t REG_DWORD /d 0 /f
REG add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "PagingFiles" /t REG_MULTI_SZ /d "C:\pagefile.sys 0 0" /f
echo Restart the computer for the changes to take effect.
echo Succesfully!
timeout /t 3 >nul
goto TweaksMenu
:activator
chcp 437 > NUL 2>&1
chcp 65001 >nul
@setlocal DisableDelayedExpansion
@echo off
mode con cols=140 lines=50
chcp 437>nul
chcp 65001 >nul
set _acti=0
set _gent=0
set _lock=0
set _chan=1
set "_cmdf=%~f0"
for %%# in (%*) do (
if /i "%%#"=="r1" set r1=1
if /i "%%#"=="r2" set r2=1
)
if exist %SystemRoot%\Sysnative\cmd.exe if not defined r1 (
setlocal EnableDelayedExpansion
start %SystemRoot%\Sysnative\cmd.exe /c ""!_cmdf!" %* r1"
exit /b
)
if exist %SystemRoot%\SysArm32\cmd.exe if %PROCESSOR_ARCHITECTURE%==AMD64 if not defined r2 (
setlocal EnableDelayedExpansion
start %SystemRoot%\SysArm32\cmd.exe /c ""!_cmdf!" %* r2"
exit /b
)
set "PATH=%SystemRoot%\System32;%SystemRoot%\System32\wbem;%SystemRoot%\System32\WindowsPowerShell\v1.0\"
if exist "%SystemRoot%\Sysnative\reg.exe" (
set "PATH=%SystemRoot%\Sysnative;%SystemRoot%\Sysnative\wbem;%SystemRoot%\Sysnative\WindowsPowerShell\v1.0\;%PATH%"
)
pushd "%~dp0"
>nul findstr /rxc:".*" "%~nx0"
if not %errorlevel%==0 (
echo:
echo Error: This is not a correct file. It has LF line ending issue.
echo:
echo Press any key to exit...
pause >nul
popd
exit /b
)
popd
cls
color 07
title Shades HWID Activation
set _args=
set _elev=
set _unattended=0
set _args=%*
if defined _args set _args=%_args:"=%
if defined _args (
for %%A in (%_args%) do (
if /i "%%A"=="/a" set _acti=1
if /i "%%A"=="/g" set _gent=1
if /i "%%A"=="/k" set _lock=1
if /i "%%A"=="/c" set _chan=0
if /i "%%A"=="-el" set _elev=1
)
)
chcp 437 > NUL 2>&1
chcp 65001 >nul
for %%A in (%_acti% %_gent% %_lock%) do (if "%%A"=="1" set _unattended=1)
set winbuild=1
set "nul=>nul 2>&1"
set psc=powershell.exe
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
set _NCS=1
if %winbuild% LSS 10586 set _NCS=0
if %winbuild% GEQ 10586 reg query "HKCU\Console" /v ForceV2 2>nul | find /i "0x0" 1>nul && (set _NCS=0)
if %_NCS% EQU 1 (
for /F %%a in ('echo prompt $E ^| cmd') do set "esc=%%a"
set "Red="41;97m""
set "Gray="100;97m""
set "Green="42;97m""
set "Magenta="45;97m""
set "_White="40;37m""
set "_Green="40;92m""
set "_Yellow="40;93m""
) else (
set "Red="Red" "white""
set "Gray="Darkgray" "white""
set "Green="DarkGreen" "white""
set "Magenta="Darkmagenta" "white""
set "_White="Black" "Gray""
set "_Green="Black" "Green""
set "_Yellow="Black" "Yellow""
)
set "nceline=echo: &echo ==== ERROR ==== &echo:"
set "eline=echo: &call :dk_color %Red% "==== ERROR ====" &echo:"
if %~z0 GEQ 500000 (set "_exitmsg=Go back") else (set "_exitmsg=Exit")
if %winbuild% LSS 10240 (
%eline%
echo Unsupported OS version detected.
echo Project is supported for Windows 10/11.
goto dk_done
)
chcp 437 > NUL 2>&1
chcp 65001 >nul
for %%# in (powershell.exe) do @if "%%~$PATH:#"=="" (
%nceline%
echo Unable to find powershell.exe in the system.
goto dk_done
)
set "_work=%~dp0"
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
set "_batf=%~f0"
set "_batp=%_batf:'=''%"
set _PSarg="""%~f0""" -el %_args%
set "_ttemp=%temp%"
setlocal EnableDelayedExpansion
echo "!_batf!" | find /i "!_ttemp!" 1>nul && (
if /i not "!_work!"=="!_ttemp!" (
%eline%
echo Script is launched from the temp folder,
echo Most likely you are running the script directly from the archive file.
echo:
echo Extract the archive file and launch the script from the extracted folder.
goto dk_done
)
)
%nul% reg query HKU\S-1-5-19 || (
if not defined _elev %nul% %psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && exit /b
%eline%
echo This script require administrator privileges.
echo To do so, right click on this script and select 'Run as administrator'.
goto dk_done
)
:dl_menu
chcp 437 > NUL 2>&1
chcp 65001 >nul
:dl_menu2
chcp 437 > NUL 2>&1
chcp 65001 >nul
cls
mode 102, 34
if %_gent%==1 (set _title=title Generate HWID GenuineTicket.xml) else (set _title=title HWID Activation)
if %_lock%==0 (%_title%) else (%_title% [Lockbox Method])
if %_gent%==1 if exist %Systemdrive%\GenuineTicket.xml (
set _gent=0
%eline%
echo File '%Systemdrive%\GenuineTicket.xml' already exist.
if %_unattended%==0 (
echo:
call :dk_color %_Yellow% "Press any key to go back..."
pause >nul
goto dl_menu
) else (
goto dk_done
)
)
call :dk_initial
cls
chcp 437 > NUL 2>&1
chcp 65001 >nul
call :dk_product
call :dk_checkperm
if defined _perm if not %_gent%==1 (
chcp 437 > NUL 2>&1
chcp 65001 >nul
echo.
chcp 437 > NUL 2>&1
chcp 65001 >nul
echo %c% ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
echo ██░▄▄▄░██░██░█░▄▄▀██░▄▄▀██░▄▄▄██░▄▄▄░███▄▄░▄▄██░▄▄▄░██░▄▄▄░██░█████░▄▄▀██░▄▄▄░█▄▀█▀▄
echo ██▄▄▄▀▀██░▄▄░█░▀▀░██░██░██░▄▄▄██▄▄▄▀▀█████░████░███░██░███░██░█████░▄▄▀██░███░███░██%u%
echo ██░▀▀▀░██░██░█░██░██░▀▀░██░▀▀▀██░▀▀▀░█████░████░▀▀▀░██░▀▀▀░██░▀▀░██░▀▀░██░▀▀▀░█▀▄█▄▀
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo.
echo Version: %version% User : %username% Date :%date%
echo ___________________________________________________________________________________________
echo:
call :dk_color2 %_White% " " %Green% "Checking: %winos% is Permanently Activated."
call :dk_color2 %_White% " " %Gray% "Activation is not required."
echo ___________________________________________________________________________________________
if %_unattended%==1 goto dk_done
echo:
choice /C:12 /N /M "> [1] Activate [2] %_exitmsg% : "
if errorlevel 2 exit /b
)
cls
set _eval=
set _evalserv=
if exist "%SystemRoot%\Servicing\Packages\Microsoft-Windows-*EvalEdition~*.mum" set _eval=1
if exist "%SystemRoot%\Servicing\Packages\Microsoft-Windows-Server*EvalEdition~*.mum" set _evalserv=1
if exist "%SystemRoot%\Servicing\Packages\Microsoft-Windows-Server*EvalCorEdition~*.mum" set _eval=1 & set _evalserv=1
if defined _eval (
reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v EditionID 2>nul | find /i "Eval" 1>nul && (
%eline%
echo [%winos% ^| %winbuild%]
if defined _evalserv (
echo Server Evaluation cannot be activated. Convert it to full Server OS.
echo:
echo Check 'Change Edition Option' in Extras section in MAS.
) else (
echo Evaluation Editions cannot be activated. Download ^& Install full version of Windows OS.
echo:
echo Succesfuly..
)
goto dk_done
)
)
set osSKU=
set regSKU=
set wmiSKU=
for /f "tokens=3 delims=." %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions" /v OSProductPfn 2^>nul') do set "regSKU=%%a"
if %_wmic% EQU 1 for /f "tokens=2 delims==" %%a in ('"wmic Path Win32_OperatingSystem Get OperatingSystemSKU /format:LIST" 2^>nul') do if not errorlevel 1 set "wmiSKU=%%a"
if %_wmic% EQU 0 for /f "tokens=1" %%a in ('%psc% "([WMI]'Win32_OperatingSystem=@').OperatingSystemSKU" 2^>nul') do if not errorlevel 1 set "wmiSKU=%%a"
set osSKU=%wmiSKU%
if not defined osSKU set osSKU=%regSKU%
if not defined osSKU (
%eline%
echo SKU value was not detected properly. Aborting...
goto dk_done
)
set _hwidk=
call :dk_channel
for %%A in (Retail OEM:SLP OEM:NONSLP OEM:DM Volume:MAK) do (if /i "%%A"=="%_channel%" set _hwidk=1)
set app=
set key=