-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathToggle Tweaker.bat
5120 lines (3603 loc) · 241 KB
/
Toggle Tweaker.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
SetLocal EnableDelayedExpansion
:: define current version
set CurV=4.0
Title Windows 10 Toggle Tweaker v%CurV%
Color 1F
::::::::::::::::::::::::::::::::::::::==============================================================================================================================================================================
:: get admininstrative privileges ::::==============================================================================================================================================================================
::::::::::::::::::::::::::::::::::::::==============================================================================================================================================================================
mode con:cols=55 lines=2
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
exit /b
:gotAdmin
if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
pushd "%CD%"
CD /D "%~dp0"
::::::::::::::::::::::::::::==============================================================================================================================================================================
:: set global variables ::::==============================================================================================================================================================================
::::::::::::::::::::::::::::==============================================================================================================================================================================
::Set Default Input Mode
set "SelectMode=Mouse"
::set Reg key path to use to store Script configs
set "Main_Script_Reg_key=HKLM\SOFTWARE\ToggleTweaker"
:: create dependencies
call :batbox
rem replacement variables for dependencies
set BB="%temp%\batbox.exe"
:: change window size
mode con:cols=119 lines=33
:: define known builds, new ones will be added as they come along
set "knownBuilds=10240 10586 14393"
:: Define the current windows build number
for /f "tokens=4-7 delims=[.] " %%i in ('ver') do @(if %%i==Version (set "windowsBuild=%%i.%%j.%%k") else (set "windowsBuild=%%k"))
set "WAaction=1"
:: Define color for all Back buttons in sub-menus
set BackButtonColor=8F
::Define Supprted apps in removing sections
set "AppStrings=3DBuilder_8wekyb3d8bbwe WindowsAlarms_8wekyb3d8bbwe WindowsCalculator_8wekyb3d8bbwe windowscommunicationsapps_8wekyb3d8bbwe WindowsCamera_8wekyb3d8bbwe MicrosoftOfficeHub_8wekyb3d8bbwe SkypeApp_kzf8qxf38zg5c Getstarted_8wekyb3d8bbwe ZuneMusic_8wekyb3d8bbwe WindowsMaps_8wekyb3d8bbwe MicrosoftSolitaireCollection_8wekyb3d8bbwe BingFinance_8wekyb3d8bbwe ZuneVideo_8wekyb3d8bbwe BingNews_8wekyb3d8bbwe Office.OneNote_8wekyb3d8bbwe People_8wekyb3d8bbwe WindowsPhone_8wekyb3d8bbwe Windows.Photos_8wekyb3d8bbwe BingSports_8wekyb3d8bbwe WindowsSoundRecorder_8wekyb3d8bbwe BingWeather_8wekyb3d8bbwe XboxApp_8wekyb3d8bbwe Messaging_8wekyb3d8bbwe ConnectivityStore_8wekyb3d8bbwe CommsPhone_8wekyb3d8bbwe Office.Sway_8wekyb3d8bbwe oneconnect_8wekyb3d8bbwe microsoftstickynotes_8wekyb3d8bbwe Microsoft3DViewer_8wekyb3d8bbwe MSPaint_8wekyb3d8bbwe WindowsStore_8wekyb3d8bbwe"
rem LineFeed variable, requires 2 empty lines below
set LF=^
:: Disable Quickedit in CMD (To make Mouse Work)
Reg.exe add "HKCU\Console" /v "QuickEdit" /t REG_DWORD /d "0" /f >nul 2>&1
Reg.exe add "HKCU\Console\%%SystemRoot%%_System32_cmd.exe" /v "QuickEdit" /t REG_DWORD /d "0" /f >nul 2>&1
::Show What's NEW PAge if running current version for the first time
reg query "HKLM\SOFTWARE\ToggleTweaker" /v Version | find "%CurV%" >nul
if "%errorlevel%"=="0" (goto Versioncheck) else ((Reg.exe add "HKLM\SOFTWARE\ToggleTweaker" /v "Version" /t REG_SZ /d "%CurV%" /f >nul ) & call :WhatsNEW)
:::::::::::::::::::::::::::::==============================================================================================================================================================================
:: check for new version ::::==============================================================================================================================================================================
:::::::::::::::::::::::::::::==============================================================================================================================================================================
:Versioncheck
cls
echo Checking For Updates ...
echo.
if exist "%~dp0\Updater.bat" ( del "%~dp0\Updater.bat" )
call :Servercheck dl.dropbox.com MainMenu
call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiNkU3VUJkYlh0aGc" TWV.TXT
set content=
for /F "delims=" %%i in (TWV.TXT) do set content=!content! %%i
set NewV=%content%
del TWV.txt
if %NewV% GTR %CurV% (Goto New)
if %CurV% == %NewV% (Goto MainMenu)
:New
call :msgBox NewVersion
if /i "!buttonClicked!"=="NO" GOto :Startintro
if /i "!buttonClicked!"=="YES" (
::AUTOUpdate
call :Infomsgbox "Downloading and installing The New version..." 9F 900
cd %Temp%
call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiXzdKLTVzUkk0SGs" "Toggle Tweaker.bat"
CD /D %~dp0
call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiekQtaFJwUzFVYm8" "Updater.bat"
start Updater.bat
start https://goo.gl/KZqoyt
exit
)
::==============================================================================================================================================================================
::==============================================================================================================================================================================
::==============================================================================================================================================================================
::==============================================================================================================================================================================
::==============================================================================================================================================================================
::==============================================================================================================================================================================
:Startintro
cls
:: Skip the Intro
call :verify-SkipIntro >nul 2>&1
If "%SkipIntro%"=="YES" goto MainMenu
:: generate random number between 1 and 3 because there are 3 intro animations :)
SET /a rand=%random% %%4 +1
:: "play" intro
call :intro %rand%
::::::::::::::
:: MainMenu ::
::::::::::::::
:MainMenu
cls
call :ClearButtons
call :verify-Updates 5
set "Title1= _______________________________________________________________________________________"
set "Title2= ^| ____ __ ___ ___ __ ____ ____ _ _ ____ __ __ _ ____ ____ ^|"
set "Title3= ^| (_ _) / \ / __) / __)( ) ( __) (_ _)/ )( \( __) / _\ ( / )( __)( _ \ ^|"
set "Title4= ^| )( ( O )( (_ \( (_ \/ (_/\ ) _) )( \ /\ / ) _) / \ ) ( ) _) ) / ^|"
set "Title5= ^| (__) \__/ \___/ \___/\____/(____) (__) (_/\_)(____)\_/\_/(__\_)(____)(__\_) ^|"
set "Title6= ^|_______________________________________________________________________________________^|"
set "button1=Windows / Office KMS activation"
set "button2=Manage Built-in apps and restore old ones"
set "button3=Enable/Disable stuff In Windows10"
set "button4=User Interface Tweaks"
set "button5=Toggle Windows Update status (%Updates%) [O]"
set "button6=Manage Windows Features"
set "button7=Manage User Accounts "
set "button8=Speed Up PC Performance"
set "button9=Manage Microsoft Edge browser"
set "button10=Internet Tweaks and Fixes"
set "button11=Convert Pro/Home version to LTSB [O]"
set "button12=TELEMETRY and Data collection Settings ^!^!"
set "button13=TWEAKER SETTINGS" & set Button13Color=37
set "button14=EXIT TOGGLE TWEAKER" & set Button14Color=4F
call :drawMenu
call :readInput
if "%buttonClicked%"=="1" (cls & goto KMSActivation )
if "%buttonClicked%"=="2" (cls & goto WinAppsmenu )
if "%buttonClicked%"=="3" (cls & goto Enable/Disable )
if "%buttonClicked%"=="4" (cls & goto UI )
if "%buttonClicked%"=="5" (if /i "%Updates%"=="Disabled" (Call :Enable-Updates) else (Call :Disable-Updates) & Goto MainMenu )
if "%buttonClicked%"=="6" (cls & goto Features )
if "%buttonClicked%"=="7" (cls & goto Users )
if "%buttonClicked%"=="8" (cls & goto Performance )
if "%buttonClicked%"=="9" (cls & goto Edge )
if "%buttonClicked%"=="10" (cls & goto NETWORK )
if "%buttonClicked%"=="11" (cls & goto LTSB )
if "%buttonClicked%"=="12" (cls & goto TELEMETRY )
if "%buttonClicked%"=="13" (goto :settingsMenu )
if "%buttonClicked%"=="14" (Exit)
goto MainMenu
:TELEMETRY
Call :GetActiveButton 9 1
Call :GetActiveButton 10 2
cls
call :ClearButtons
set "Title1= _______________________________________________________________________________________"
set "Title2= ^| ____ __ ___ ___ __ ____ ____ _ _ ____ __ __ _ ____ ____ ^|"
set "Title3= ^| (_ _) / \ / __) / __)( ) ( __) (_ _)/ )( \( __) / _\ ( / )( __)( _ \ ^|"
set "Title4= ^| )( ( O )( (_ \( (_ \/ (_/\ ) _) )( \ /\ / ) _) / \ ) ( ) _) ) / ^|"
set "Title5= ^| (__) \__/ \___/ \___/\____/(____) (__) (_/\_)(____)\_/\_/(__\_)(____)(__\_) ^|"
set "Title6= ^|_______________________________________________________________________________________^|"
set "button9=[REPO] Windows 10 TELEMETRY REPOSITORY" & set Button3Color=9F
set "button10=[Guide] Way to Disable Keylogger/ Telemetry" & set Button2Color=9F
set "button14=Go Back" & set Button14Color=%BackButtonColor%
call :drawMenu
%BB% /c 0x1F /g 0 12
echo Telemetry is not Built inside WIndows 10, BUT Windows 10 is Built on TELEMETRY.
echo.
echo The point here is that anyway you try it to disable Telemetry it will be enabled by something else later
echo And if you go far in disabling it you will find yourself using a system that is worse than Win 8
echo.
echo.
echo.
echo But if you insist here are some links that may help you
%BB% /c 0x1F /g 59 21
call :readInput
if "%buttonClicked%"=="%ActiveButton9%" (cls & Start https://forums.mydigitallife.info/threads/63874-REPO-Windows-10-TELEMETRY-REPOSITORY)
if "%buttonClicked%"=="%ActiveButton10%" (cls & Start https://forums.mydigitallife.info/threads/57339-Guide-Way-to-Disable-Keylogger-Telemetry-v3-53)
if "%buttonClicked%"=="14" (Goto MainMenu)
goto TELEMETRY
::==============================================================================================================================================================================
::==============================================================================================================================================================================
:KMSActivation
call :ClearButtons
set "Title1= _______________________________________________________________________________________"
set "Title2= ^| ____ __ ___ ___ __ ____ ____ _ _ ____ __ __ _ ____ ____ ^|"
set "Title3= ^| (_ _) / \ / __) / __)( ) ( __) (_ _)/ )( \( __) / _\ ( / )( __)( _ \ ^|"
set "Title4= ^| )( ( O )( (_ \( (_ \/ (_/\ ) _) )( \ /\ / ) _) / \ ) ( ) _) ) / ^|"
set "Title5= ^| (__) \__/ \___/ \___/\____/(____) (__) (_/\_)(____)\_/\_/(__\_)(____)(__\_) ^|"
set "Title6= ^|_______________________________________________________________________________________^|"
set "button1=Check Windows Activation Status"
set "button2=Check Office Activation Status"
set "button3=Activate Windows/Office Using KMSPico"
set "button14=Go Back" & set Button14Color=%BackButtonColor%
call :drawMenu
call :readInput
if "%buttonClicked%"=="1" ( cls & call :CheckWindowsactivation )
if "%buttonClicked%"=="2" ( cls & call :CheckOfficeactivation )
if "%buttonClicked%"=="3" ( cls & call :ActivateWindows/office )
if "%buttonClicked%"=="14" goto MainMenu
goto KMSActivation
::==============================================================================================================================================================================
::==============================================================================================================================================================================
:WinAppsmenu
call :ClearButtons
call :verify-photoviewer 2
set "Title1= _______________________________________________________________________________________"
set "Title2= ^| _ _ __ _ _ ___ __ _ _ ___ __ ___ ___ ___ ^|"
set "Title3= ^| ( \/\/ )( )( \( )( \ / \( \/\/ )/ __) ( ) ( ,\( ,\/ __) ^|"
set "Title4= ^| \ / )( ) ( ) ) )( () )\ / \__ \ /__\ ) _/ ) _/\__ \ ^|"
set "Title5= ^| \/\/ (__)(_)\_)(___/ \__/ \/\/ (___/ (_)(_)(_) (_) (___/ ^|"
set "Title6= ^|_______________________________________________________________________________________^|"
set "button1=Remove/restore Windows built-in apps from Users"
set "button3=Uninstall/restore Cortana [O]"
set "button5=Uninstall/restore Microsoft Edge [O]"
set "button7=Uninstall/restore Internet Explorer 11 [O]"
set "button9=Uninstall, Disable and reenable Onedrive"
set "button11=Uninstall Contact Support (Get Help) App [O]"
set "button13=Uninstall WindowsFeedback App [O]"
set "button2=Restore Old Windows photo viewer (%photoviewer%)"
set "button4=Restore Legacy Calculator (Classic Win32) [O]"
set "button6=Restore Win 7 Task manager [O]"
set "button8=Restore Classic MSConfig [O]"
set "button10=Install Windows DVD Player app [O]"
set "button12=Restore Classic Paint app [B:14986] [O]"
set "button14=Go Back" & set Button14Color=%BackButtonColor%
call :drawMenu
call :readInput
if "%buttonClicked%"=="1" ( cls & call :Awamenu )
if "%buttonClicked%"=="2" ( Call :Enable-photoviewer )
if "%buttonClicked%"=="3" ( cls & call :UninstallCortana )
if "%buttonClicked%"=="4" ( cls & call :CALC32 )
if "%buttonClicked%"=="5" ( cls & call :UninstallEdge )
if "%buttonClicked%"=="6" ( cls & call :Win7Taskmanager )
if "%buttonClicked%"=="7" ( cls & call :UninstallIE11 )
if "%buttonClicked%"=="8" ( cls & call :OLDMSConfig )
if "%buttonClicked%"=="9" ( cls & call :Onedrive )
if "%buttonClicked%"=="10" ( cls & call :InstallDVDapp )
if "%buttonClicked%"=="11" ( cls & call :ContactSuppo )
if "%buttonClicked%"=="12" ( cls & call :Paint32 )
if "%buttonClicked%"=="13" ( cls & call :WFeedbackApp )
if "%buttonClicked%"=="14" goto MainMenu
goto WinAppsmenu
::==============================================================================================================================================================================
::==============================================================================================================================================================================
:Enable/Disable
call :ClearButtons
call :verify-WindowsDefender 1 >nul 2>&1
call :verify-QuickAccess 2 >nul 2>&1
call :verify-Firewall 3 >nul 2>&1
call :verify-BSOD 4 >nul 2>&1
call :verify-PSWRDReveal 6 >nul 2>&1
call :verify-Lockscreen 7 >nul 2>&1
call :verify-HardwareICon 8 >nul 2>&1
call :verify-SmartScreen 9 >nul 2>&1
call :verify-CMDinWinX 10 >nul 2>&1
set "Title1= _______________________________________________________________________________________"
set "Title2= ^| ___ _ _ __ ___ __ ___ _ ___ __ ___ __ ___ __ ___ ^|"
set "Title3= ^| ( _)( \( ) ( ) ( ,)( ) ( _) / ) ( \ ( )/ __) ( ) ( ,)( ) ( _) ^|"
set "Title4= ^| ) _) ) ( /__\ ) ,\ )(__ ) _) / / ) ) ) )( \__ \ /__\ ) ,\ )(__ ) _) ^|"
set "Title5= ^| (___)(_)\_)(_)(_)(___)(____)(___) /_/ (___) (__)(___)(_)(_)(___)(____)(___) ^|"
set "Title6= ^|_______________________________________________________________________________________^|"
set "button1=Windows Defender (%WindowsDefender%)"
set "button3=Windows Firewall (%Firewall%)"
set "button5=Manage Folders In 'This PC'"
set "button7=Lockscreen (%Lockscreen%)"
set "button9=Windows/Store Smart Screen Filter (%SmartScreen%)"
//set "button11=** Hibernation & Fast Startup" & set Button11Color=4F
set "button2=Default Quick Access view in Explorer (%QuickAccess%)"
set "button4=Show BSOD details instead of the sad smiley (%BSOD%)"
set "button6=Password Reveal Button (%PSWRDReveal%)"
set "button8=Safely Remove Hardware Tray Icon (%HardwareICon%)"
set "button10=Replace PowerShell with CMD in Win X menu (%CMDinWinX%)"
set "button14=Go Back" & set Button14Color=%BackButtonColor%
call :drawMenu
call :readInput
if "%buttonClicked%"=="1" (if /i "%WindowsDefender%"=="Disabled" (Call :Enable-WindowsDefender) else (Call :Disable-WindowsDefender) & Goto Enable/Disable )
if "%buttonClicked%"=="2" (if /i "%QuickAccess%"=="Disabled" (Call :Enable-QuickAccess) else (Call :Disable-QuickAccess) & Goto Enable/Disable )
if "%buttonClicked%"=="3" (if /i "%Firewall%"=="Disabled" (Call :Enable-Firewall) else (Call :Disable-Firewall) & Goto Enable/Disable )
if "%buttonClicked%"=="4" (if /i "%BSOD%"=="Disabled" (Call :Enable-BSOD) else (Call :Disable-BSOD) & Goto Enable/Disable )
if "%buttonClicked%"=="5" (Goto This-PC)
if "%buttonClicked%"=="6" (if /i "%PSWRDReveal%"=="Disabled" (Call :Enable-PSWRDReveal) else (Call :Disable-PSWRDReveal) & Goto Enable/Disable )
if "%buttonClicked%"=="7" (if /i "%Lockscreen%"=="Disabled" (Call :Enable-Lockscreen) else (Call :Disable-Lockscreen) & Goto Enable/Disable )
if "%buttonClicked%"=="8" (if /i "%HardwareICon%"=="Disabled" (Call :Enable-HardwareICon) else (Call :Disable-HardwareICon) & Goto Enable/Disable )
if "%buttonClicked%"=="9" (if /i "%SmartScreen%"=="Disabled" (Call :Enable-SmartScreen) else (Call :Disable-SmartScreen) & Goto Enable/Disable )
if "%buttonClicked%"=="10" (if /i "%CMDinWinX%"=="Disabled" (Call :Enable-CMDinWinX) else (Call :Disable-CMDinWinX) & Goto Enable/Disable )
if "%buttonClicked%"=="11" ( cls )
if "%buttonClicked%"=="14" goto MainMenu
goto Enable/Disable
::==============================================================================================================================================================================
::==============================================================================================================================================================================
:UI
call :ClearButtons
call :verify-Darkmode 1 >nul 2>&1
call :verify-Thumbnails 2 >nul 2>&1
call :verify-VolumeControlUI 3 >nul 2>&1
call :verify-TaskViewBTN 4 >nul 2>&1
call :verify-BatteryStatusUI 5 >nul 2>&1
call :verify-DeleteDialogDetails 6 >nul 2>&1
call :verify-AltTabUI 7 >nul 2>&1
call :verify-TransparencyBlur 8 >nul 2>&1
call :verify-Logonscreen 10 >nul 2>&1
call :verify-Thumbnailsize 13 >nul 2>&1
set "Title1= _______________________________________________________________________________________"
set "Title2= ^| _ _ ___ ___ ___ __ _ _ ____ ___ ___ ___ __ __ ___ ^|"
set "Title3= ^| ( )( )/ __)( _)( ,) ( )( \( )(_ _)( _)( ,) ( _) ( ) / _)( _) ^|"
set "Title4= ^| )()( \__ \ ) _) ) \ )( ) ( )( ) _) ) \ ) _) /__\ ( (_ ) _) ^|"
set "Title5= ^| \__/ (___/(___)(_)\_) (__)(_)\_) (__) (___)(_)\_)(_) (_)(_) \__)(___) ^|"
set "Title6= ^|_______________________________________________________________________________________^|"
set "button1=Dark Theme For Apps (%Darkmode%)"
set "button3=Volume Control UI (%VolumeControlUI%)"
set "button5=Battery Status UI (%BatteryStatusUI%)"
set "button7=Alt-Tab Screen UI (%AltTabUI%) [FE]"
set "button9=Context Menu Tweaks"
set "button11=Change OEM Information"
set "button13=Taskbar Thumbnail size ( %Thumbnailsize%) [FE]"
set "button2=Thumbnail Previews in File explorer (%Thumbnails%) [FE]"
set "button4=Taskview button in Taskbar (%TaskViewBTN%) [FE]"
set "button6=Show Delete-Confirmation-Dialog Prompt Details (%DeleteDialogDetails%)"
set "button8=Transparency and Blur in: Taskbar-Clock... (%TransparencyBlur%)"
set "button10=Change Logon Background Image/accent-color (%Logonscreen%)"
set "button12=Colourise/Decolourise Start Me,Taskbar and Title bars"
set "button14=Go Back" & set Button14Color=%BackButtonColor%
call :drawMenu
call :readInput
if "%buttonClicked%"=="1" ((if /i "%Darkmode%"=="Disabled" (Call :Enable-Darkmode )) & (if /i "%Darkmode%"=="Enabled" (Call :Disable-Darkmode )) & goto UI ) >nul 2>&1
if "%buttonClicked%"=="2" ((if /i "%Thumbnails%"=="Disabled" (Call :Enable-Thumbnails )) & (if /i "%Thumbnails%"=="Enabled" (Call :Disable-Thumbnails )) & goto UI ) >nul 2>&1
if "%buttonClicked%"=="3" ((if /i "%VolumeControlUI%"=="OLD" (Call :NEW-VolumeControlUI )) & (if /i "%VolumeControlUI%"=="NEW" (Call :OLD-VolumeControlUI )) & goto UI ) >nul 2>&1
if "%buttonClicked%"=="4" ((if /i "%TaskViewBTN%"=="Disabled" (Call :Enable-TaskViewBTN )) & (if /i "%TaskViewBTN%"=="Enabled" (Call :Disable-TaskViewBTN )) & goto UI ) >nul 2>&1
if "%buttonClicked%"=="5" ((if /i "%BatteryStatusUI%"=="OLD" (Call :NEW-BatteryStatusUI )) & (if /i "%BatteryStatusUI%"=="NEW" (Call :OLD-BatteryStatusUI )) & goto UI ) >nul 2>&1
if "%buttonClicked%"=="6" ((if /i "%DeleteDialogDetails%"=="Yes" (Call :NO-DeleteDialogDetails )) & (if /i "%DeleteDialogDetails%"==" No" (Call :Yes-DeleteDialogDetails )) & goto UI ) >nul 2>&1
if "%buttonClicked%"=="7" ((if /i "%AltTabUI%"=="OLD" (Call :NEW-AltTabUI )) & (if /i "%AltTabUI%"=="NEW" (Call :OLD-AltTabUI )) & goto UI ) >nul 2>&1
if "%buttonClicked%"=="8" ((if /i "%TransparencyBlur%"=="Disabled" (Call :Enable-TransparencyBlur )) & (if /i "%TransparencyBlur%"=="Enabled" (Call :Disable-TransparencyBlur )) & goto UI ) >nul 2>&1
if "%buttonClicked%"=="9" ( cls & call :ContextMenu)
if "%buttonClicked%"=="10" ((if /i "%Logonscreen%"=="Color" (Call :Image-Logonscreen )) & (if /i "%Logonscreen%"=="Image" (Call :Color-Logonscreen )) & goto UI ) >nul 2>&1
if "%buttonClicked%"=="11" ( cls & call :OEMInfo )
if "%buttonClicked%"=="12" ( cls & call :ColouriseStartmenu )
if "%buttonClicked%"=="13" ((if /i "%Thumbnailsize%"=="Default" (Call :400-Thumbnailsize )) & (if /i "%Thumbnailsize%"=="190/400" (Call :Default-Thumbnailsize )) & goto UI ) >nul 2>&1
if "%buttonClicked%"=="14" goto MainMenu
goto UI
::==============================================================================================================================================================================
::==============================================================================================================================================================================
:Features
cls
call :ClearButtons
set "buttonClicked= "
Call :GetActiveButton 5 3
Call :GetActiveButton 6 4
Call :GetActiveButton 9 5
set "Title1= _______________________________________________________________________________________"
set "Title2= ^| ____ ____ __ ____ _ _ ____ ____ ____ ^|"
set "Title3= ^| ( __)( __) / _\(_ _)/ )( \( _ )( __)/ ___) ^|"
set "Title4= ^| ) _) ) _) / \ )( ) \/ ( ) / ) _) \___ \ ^|"
set "Title5= ^| (__) (____)\_/\_/(__) \____/(__\_)(____)(____) ^|"
set "Title6= ^|_______________________________________________________________________________________^|"
set "button1=Show Windows features list"
set "button5=Enable a feature"
set "button9=Disable and Remove feature Payload (clean feature files)"
set "button2=Show 'Turn Windows features on or off' window"
set "button6=Disable a feature"
set "button14=Go Back" & set Button14Color=%BackButtonColor%
call :drawMenu
call :readInput
if "%buttonClicked%"=="1" ( cls & dism /online /get-features | more )
if "%buttonClicked%"=="2" ( start OptionalFeatures.exe )
if "%buttonClicked%"=="%ActiveButton5%" ( call :Features-Input & cls & DISM /online /enable-feature /featurename:!input! & pause )
if "%buttonClicked%"=="%ActiveButton6%" ( call :Features-Input & cls & dism /online /disable-feature /featurename:!input! & pause )
if "%buttonClicked%"=="%ActiveButton9%" ( call :Features-Input & cls & dism /online /disable-feature /featurename:!input! /remove & pause )
if "%buttonClicked%"=="14" goto MainMenu
goto Features
:Features-Input
call :ClearButton 14
%BB% ^
/c 0x1F /g 2 27 /d " ________________________________________________________" ^
/c 0x2F /g 2 28 /d "| |"^
/g 2 29 /d "| Input : |"^
/g 2 30 /d "|________________________________________________________|"^
/c 0xF1 /g 12 29 /d " " ^
/g 13 29
)
set /p Input=
%BB% /c 0x1F
If "%Input%"=="" Goto Features
If "%Input%"==" " Goto Features
If "%Input%"=="0" Goto Features
exit /b
::==============================================================================================================================================================================
::==============================================================================================================================================================================
:Users
call :ClearButtons
call :verify-AdminAccount
set "Title1= _______________________________________________________________________________________"
set "Title2= ^| _ _ ____ ____ ____ ____ _ _ __ __ _ __ ___ ____ ____ ^|"
set "Title3= ^| / )( \/ ___)( __)( _ \/ ___) ( \/ ) / _\ ( ( \ / _\ / __)( __)( _ \ ^|"
set "Title4= ^| ) \/ (\___ \ ) _) ) /\___ \ / \/ \/ \/ // \( (_ \ ) _) ) / ^|"
set "Title5= ^| \____/(____/(____)(__\_)(____/ \_)(_/\_/\_/\_)__)\_/\_/ \___/(____)(__\_) ^|"
set "Title6= ^|_______________________________________________________________________________________^|"
set "button1=Show me my User accounts"
set "button3=Add NEW user account"
set "button5=Change specific user account Password"
set "button4=Delete a user account"
set "button2=Built-in Administrator Account (%AdminAccount%)"
set "button14=Go Back" & set Button14Color=%BackButtonColor%
call :drawMenu
call :readInput
if "%buttonClicked%"=="1" ( %BB% /g 1 21 & net user & pause & goto Users )
if "%buttonClicked%"=="2" ((if /i "%AdminAccount%"=="Disabled" (net user administrator /active:yes & reg add "%Main_Script_Reg_key%" /v "AdminAccount" /t REG_DWORD /d 1 /f )) & (if /i "%AdminAccount%"=="Enabled" (net user administrator /active:no & reg add "%Main_Script_Reg_key%" /v "AdminAccount" /t REG_DWORD /d 0 /f )) & goto Users ) >nul 2>&1
reg query "%Main_Script_Reg_key%" /v AdminAccount | find "0x1" >nul
if "%buttonClicked%"=="3" ( call :Users-Input
net user "!Input!" /add
PAUSE
goto Users
)
if "%buttonClicked%"=="4" ( call :Users-Input
net user "!Input!" /delete
PAUSE
goto Users
)
if "%buttonClicked%"=="5" (%BB% /g 0 22
set /p name=* Write the name of the desired account:
set /p PWD=* Write the new password:
set /p PWDC=* Confirm the new password:
if "!PWD!"=="!PWDC!" (net user "!name!" "!PWD!" & call :msgbox ok & goto Users) Else (echo something Happend & pause & goto Users) )
if "%buttonClicked%"=="14" goto MainMenu
goto Users
:Users-Input
call :ClearButton 14
%BB% ^
/c 0x1F /g 1 22 /d " _________________________________________________________" ^
/c 0x2F /g 1 23 /d "| |"^
/g 1 24 /d "| Input : |"^
/g 1 25 /d "|_________________________________________________________|"^
/c 0xF1 /g 12 24 /d " " ^
/g 13 24
)
set /p Input=
%BB% /c 0x1F
If "%Input%"=="" Goto Users
If "%Input%"==" " Goto Users
If "%Input%"=="0" Goto Users
%BB% /g 0 25
exit /b
:verify-AdminAccount
reg query "%Main_Script_Reg_key%" /v AdminAccount | find "0x1" >nul
if "%errorlevel%"=="0" (set "AdminAccount=Enabled") else (set "AdminAccount=Disabled")
exit/b
::==============================================================================================================================================================================
::==============================================================================================================================================================================
:Performance
call :ClearButtons
call :FolderSize "%Windir%\SoftwareDistribution\Download" 2
call :FolderSize "%Temp%" 3
call :FolderSize "%Windir%\Prefetch" 4
call :verify-GameMode 7
set "Title1= _______________________________________________________________________________________"
set "Title2= ^| ____ ___ ____ ____ ____ ____ __ ____ _ _ __ __ _ ___ ____ ^|"
set "Title3= ^| ( _ \ / __) ( _ \( __)( _ \( __)/ \( _ \( \/ ) / _\ ( ( \ / __)( __) ^|"
set "Title4= ^| ) __/( (__ ) __/ ) _) ) / ) _)( O )) // \/ \/ \/ /( (__ ) _) ^|"
set "Title5= ^| (__) \___) (__) (____)(__\_)(__) \__/(__\_)\_)(_/\_/\_/\_)__) \___)(____) ^|"
set "Title6= ^|_______________________________________________________________________________________^|"
set "button1=Calculate Restart Time"
set "button3=Clean TEMP Folder {'%FolderSize3%' Can be cleaned}"
set "button5=Start Disk Cleanup (Not automatic)"
set "button7=Game Mode (%GameMode%)"
set "button2=Clean Update Junk {'%FolderSize2%' Can be cleaned}"
set "button4=Clean Prefetch Folder {'%FolderSize4%' Can be cleaned}"
set "button6=Disable : Unnecessary services,BitLocker,Encrypting..."
set "button14=Go Back" & set Button14Color=%BackButtonColor%
call :drawMenu
call :readInput
if "%buttonClicked%"=="1" goto Restart_time
if "%buttonClicked%"=="2" goto CleanUpdatefiles
if "%buttonClicked%"=="3" (cls & del %TEMP%\*.* /f /s /q & call :batbox)
if "%buttonClicked%"=="4" (cls & del %Windir%\Prefetch\*.* /f /s /q)
if "%buttonClicked%"=="5" cleanmgr.exe /LOWDISK
if "%buttonClicked%"=="6" cls & call :Services
if "%buttonClicked%"=="7" (if /i "%GameMode%"=="Disabled" (Call :Enable-GameMode) else (Call :Disable-GameMode) & Goto Performance )
if "%buttonClicked%"=="14" goto MainMenu
goto Performance
if "%buttonClicked%"=="" goto
::==============================================================================================================================================================================
::==============================================================================================================================================================================
:NETWORK
call :ClearButtons
set "Title1= _______________________________________________________________________________________"
set "Title2= ^| __ __ _ ____ ____ ____ __ _ ____ ____ ____ __ _ _ ____ ____ ^|"
set "Title3= ^| ( )( ( \(_ _)( __)( _ \( ( \( __)(_ _) ( __)( )( \/ )( __)/ ___) ^|"
set "Title4= ^| )( / / )( ) _) ) // / ) _) )( ) _) )( ) ( ) _) \___ \ ^|"
set "Title5= ^| (__)\_)__) (__) (____)(__\_)\_)__)(____) (__) (__) (__)(_/\_)(____)(____/ ^|"
set "Title6= ^|_______________________________________________________________________________________^|"
set "button1=Fix Empty 'Network Connections'Folder {Network Adapters}"
set "button3=Restore 'Windows Firewall'+'Network Adapter' settings"
set "button5=Release and renew the IP address from DHCP server"
set "button2=Disable Limit Reservable Bandwidth (kind of)network"
set "button4=Flush Windows DNS Cache {ipconfig /flushdns}"
set "button14=Go Back" & set Button14Color=%BackButtonColor%
call :drawMenu
call :readInput
if "%buttonClicked%"=="1" Reg.exe delete "HKLM\SYSTEM\CurrentControlSet\Control\Network" /v "Config" /f
if "%buttonClicked%"=="2" Reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Psched" /v "Psched" /t REG_DWORD /d "0" /f
if "%buttonClicked%"=="3" netsh int ip reset reset.txt & netsh winsock reset & netsh advfirewall reset
if "%buttonClicked%"=="4" ipconfig /flushdns
if "%buttonClicked%"=="5" ipconfig /release & ipconfig /renew
if "%buttonClicked%"=="14" goto MainMenu
goto NETWORK
::==============================================================================================================================================================================
::==============================================================================================================================================================================
:Edge
call :ClearButtons
call :verify-EdgeAds 1 >nul 2>&1
call :verify-EdgeTheme 2 >nul 2>&1
call :verify-closeTabs 5 >nul 2>&1
call :verify-CoratnainEdge 6 >nul 2>&1
call :verify-EdgeFlashPlayer 7 >nul 2>&1
call :verify-FavoritesBar 8 >nul 2>&1
call :verify-NewTabPage 10 >nul 2>&1
set "Title1= _______________________________________________________________________________________"
set "Title2= ^| _ _ __ ___ ____ __ ____ __ ____ ____ ____ ____ ___ ____ ^|"
set "Title3= ^| ( \/ )( )/ __)( _ \ / \ / ___) / \( __)(_ _) ( __)( \ / __)( __) ^|"
set "Title4= ^| / \/ \ )(( (__ ) /( O )\___ \( O )) _) )( ) _) ) D (( (_ \ ) _) ^|"
set "Title5= ^| \_)(_/(__)\___)(__\_) \__/ (____/ \__/(__) (__) (____)(____/ \___/(____) ^|"
set "Title6= ^|_______________________________________________________________________________________^|"
set "button1=Disable Ads (using Hosts File) [O] (%EdgeAds%) "
set "button3=Change Browser Home Button page"
set "button5=Ask to close all tabs ? (%closeTabs%)"
set "button7=Adobe Flash Player In Edge (%EdgeFlashPlayer%)"
set "button9=Uninstall/restore Microsoft Edge [O]"
set "button2=Dark Theme (%EdgeTheme%)"
set "button4=Change default download directory"
set "button6=Cortana inside the browser (%CoratnainEdge%)"
set "button8=Favorites Bar (%FavoritesBar%)"
set "button10=NewTab Page : %NewTabPage% "
set "button14=Go Back" & set Button14Color=%BackButtonColor%
call :drawMenu
call :readInput
if "%buttonClicked%"=="1" ((if /i "%EdgeAds%"=="Disabled" (Call :Enable-EdgeAds )) & (if /i "%EdgeAds%"=="Enabled" (Call :Disable-EdgeAds )) & goto Edge )
if "%buttonClicked%"=="2" ((if /i "%EdgeTheme%"=="Disabled" (Call :Enable-EdgeTheme )) & (if /i "%EdgeTheme%"=="Enabled" (Call :Disable-EdgeTheme )) & goto Edge ) >nul 2>&1
if "%buttonClicked%"=="3" (call :Edge-Input & Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "HomeButtonPage" /t REG_SZ /d "%Input%" /f & goto Edge ) >nul 2>&1
if "%buttonClicked%"=="4" (call :Edge-Input & Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "Default Download Directory" /t REG_SZ /d "%Input%" /f & goto Edge ) >nul 2>&1
if "%buttonClicked%"=="5" ((if /i "%closeTabs%"=="Disabled" (Call :Enable-closeTabs )) & (if /i "%closeTabs%"=="Enabled" (Call :Disable-closeTabs )) & goto Edge ) >nul 2>&1
if "%buttonClicked%"=="6" ((if /i "%CoratnainEdge%"=="Disabled" (Call :Enable-CoratnainEdge )) & (if /i "%CoratnainEdge%"=="Enabled" (Call :Disable-CoratnainEdge )) & goto Edge ) >nul 2>&1
if "%buttonClicked%"=="7" ((if /i "%EdgeFlashPlayer%"=="Disabled" (Call :Enable-EdgeFlashPlayer )) & (if /i "%EdgeFlashPlayer%"=="Enabled" (Call :Disable-EdgeFlashPlayer )) & goto Edge ) >nul 2>&1
if "%buttonClicked%"=="8" ((if /i "%FavoritesBar%"=="Disabled" (Call :Enable-FavoritesBar )) & (if /i "%FavoritesBar%"=="Enabled" (Call :Disable-FavoritesBar )) & goto Edge ) >nul 2>&1
if "%buttonClicked%"=="9" ( cls & call :UninstallEdge)
if "%buttonClicked%"=="10" ((if /i "%NewTabPage%"=="Suggested" (Call :NewTabPage-Blank )) & (if /i "%NewTabPage%"=="Blank" (Call :NewTabPage-Topsites )) & (if /i "%NewTabPage%"=="Topsites" (Call :NewTabPage-Suggested )) & goto Edge ) >nul 2>&1
if "%buttonClicked%"=="14" goto MainMenu
goto Edge
:Edge-Input
call :ClearButton 14
%BB% ^
/c 0x1F /g 1 27 /d " _________________________________________________________" ^
/c 0x2F /g 1 28 /d "| |"^
/g 1 29 /d "| Input : |"^
/g 1 30 /d "|_________________________________________________________|"^
/c 0xF1 /g 12 29 /d " " ^
/g 13 29
)
set /p Input=
%BB% /c 0x1F
exit/b
::==============================================================================================================================================================================
:CheckWindowsactivation
cls
cd /d %~dp0
setLocal EnableDelayedExpansion
if exist "%Windir%\Sysnative\sppsvc.exe" set SysPath=%Windir%\Sysnative
if exist "%Windir%\System32\sppsvc.exe" set SysPath=%Windir%\System32
echo Windows Status:
echo =================
ver
cscript //nologo %SysPath%\slmgr.vbs /dli
cscript //nologo %SysPath%\slmgr.vbs /xpr
echo.
echo.
call :msgBox ok
exit /b
::==============================================================================================================================================================================
:CheckOfficeactivation
cls
cd /d %~dp0
setLocal EnableDelayedExpansion
if exist "%Windir%\Sysnative\sppsvc.exe" set SysPath=%Windir%\Sysnative
if exist "%Windir%\System32\sppsvc.exe" set SysPath=%Windir%\System32
echo Office 2016 Status:
echo =====================
set office=
set installed=0
FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\16.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b)
if exist "%office%\OSPP.VBS" (
set installed=1
cd /d "%office%"
cscript //nologo ospp.vbs /dstatus
cd /d %~dp0
)
set office=
FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\16.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b)
if exist "%office%\OSPP.VBS" (
set installed=1
cd /d "%office%"
cscript //nologo ospp.vbs /dstatus
cd /d %~dp0
)
if %installed%==1 goto end2016
if exist "C:\Program Files\Microsoft Office\Office16\OSPP.VBS" (
set installed=1
cd /d "C:\Program Files\Microsoft Office\Office16"
cscript //nologo ospp.vbs /dstatus
cd /d %~dp0
)
if exist "C:\Program Files (x86)\Microsoft Office\Office16\OSPP.VBS" (
set installed=1
cd /d "C:\Program Files (x86)\Microsoft Office\Office16"
cscript //nologo ospp.vbs /dstatus
cd /d %~dp0
)
:end2016
if %installed%==0 echo Not installed
echo.
echo Office 2013 Status:
echo =====================
set office=
set installed=0
FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\15.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b)
if exist "%office%\OSPP.VBS" (
set installed=1
cd /d "%office%"
cscript //nologo ospp.vbs /dstatus
cd /d %~dp0
)
set office=
FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b)
if exist "%office%\OSPP.VBS" (
set installed=1
cd /d "%office%"
cscript //nologo ospp.vbs /dstatus
cd /d %~dp0
)
if %installed%==0 echo Not installed
echo.
echo Office 2010 Status:
echo =====================
set office=
set installed=0
FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\14.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b)
if exist "%office%\OSPP.VBS" (
set installed=1
cd /d "%office%"
cscript //nologo ospp.vbs /dstatus
cd /d %~dp0
)
set office=
FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\14.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b)
if exist "%office%\OSPP.VBS" (
set installed=1
cd /d "%office%"
cscript //nologo ospp.vbs /dstatus
cd /d %~dp0
)
if %installed%==0 echo Not installed
call :msgBox ok
exit /b
::==============================================================================================================================================================================
:ActivateWindows/office
Set CurCD=%CD%
cd %temp%
Del TWKMS.ZIP
Del TWKMS.exe
cls
echo Downloading KMSpico ...
echo.
Call :Servercheck drive.google.com MainMenu
call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfibDZ1RWRtUzViMGc" TWKMS.ZIP
echo Installing KMSpico ...
call :UnZip TWKMS.ZIP
start /HIGH TWKMS.exe
CD %CurCD%
call :msgBox ok
exit /b
::==============================================================================================================================================================================
::==============================================================================================================================================================================
::==============================================================================================================================================================================
:Awamenu
set MainInput=
set appDisplayName1= 1.3D Builder
set appDisplayName2= 2.Alarms and Clocks
set appDisplayName3= 3.Calculator
set appDisplayName4= 4.Calendar and Mail
set appDisplayName5= 5.Camera
set appDisplayName6= 6.Get Office
set appDisplayName7= 7.Skype Preview
set appDisplayName8= 8.Get Started
set appDisplayName9= 9.Groove Music
set appDisplayName10=10.Maps
set appDisplayName11=11.Microsoft Solitaire
set appDisplayName12=12.Money (Finance)
set appDisplayName13=13.Movies and TV
set appDisplayName14=14.MSN News
set appDisplayName15=15.OneNote
set appDisplayName16=16.People
set appDisplayName17=17.Phone Companion
set appDisplayName18=18.Photos
set appDisplayName19=19.Sports
set appDisplayName20=20.Voice Recorder
set appDisplayName21=21.Weather
set appDisplayName22=22.Xbox
set appDisplayName23=23.Messaging
set appDisplayName24=24.Microsoft Wi-Fi
set appDisplayName25=25.Phone
set appDisplayName26=26.Office Sway
set appDisplayName27=27.Paid Wifi/cellular
set appDisplayName28=28.Sticky notes
set appDisplayName29=29.3D Viewer
set appDisplayName30=30.3D Paint
set appDisplayName31=31.Store (No Restore)