-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTuning Pack 3.2 Teil2.bat
12293 lines (11287 loc) · 587 KB
/
Tuning Pack 3.2 Teil2.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
COLOR 1F
SET V=1.7
TITLE Windows 10 Registry tweaks: TGF
ECHO #########################################################
ECHO # #
ECHO # WINDOWS 10 Tweaker #
ECHO # #
ECHO # #
ECHO # AUTOR: TheGeekFreaks - Alexander Zuber #
ECHO # #
ECHO #########################################################
REM ======================= Registry tweaks =======================
ECHO.
:regstart
set /p registry="Apply Registry tweaks? y/n: "
if '%registry%' == 'n' goto servstart
if /i "%registry%" neq "y" goto regstart
:reg0start
set /p reg0="Replace Utilman with CMD? y/n: "
if '%reg0%' == 'n' goto reg1start
if /i "%reg0%" neq "y" goto reg0start
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\utilman.exe" /v "Debugger" /t REG_SZ /d "cmd.exe" /f > NUL 2>&1
:reg1start
set /p reg1="Disable Quick Access as default view in Explorer? y/n: "
if '%reg1%' == 'n' goto reg2start
if /i "%reg1%" neq "y" goto reg1start
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v "LaunchTo" /t REG_DWORD /d 0 > NUL 2>&1
:reg2start
set /p reg2="Show computer shortcut on desktop? y/n: "
if '%reg2%' == 'n' goto reg3start
if /i "%reg2%" neq "y" goto reg2start
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0 /f > NUL 2>&1
:reg3start
set /p reg3="Show file extensions? y/n: "
if '%reg3%' == 'n' goto reg4start
if /i "%reg3%" neq "y" goto reg3start
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f > NUL 2>&1
:reg4start
set /p reg4="Disable lockscreen? y/n: "
if '%reg4%' == 'n' goto reg5start
if /i "%reg4%" neq "y" goto reg4start
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d 1 /f > NUL 2>&1
:reg5start
set /p reg5="Enable classic control panel view? y/n: "
if '%reg5%' == 'n' goto reg6start
if /i "%reg5%" neq "y" goto reg5start
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "ForceClassicControlPanel" /t REG_DWORD /d 1 /f > NUL 2>&1
:reg6start
set /p reg6="Hide indication for compressed NTFS files? y/n: "
if '%reg6%' == 'n' goto reg7start
if /i "%reg6%" neq "y" goto reg6start
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCompColor" /t RED_DWORD /d 0 /f > NUL 2>&1
:reg7start
set /p reg7="Disable Windows Update sharing? y/n: "
if '%reg7%' == 'n' goto reg8start
if /i "%reg7%" neq "y" goto reg7start
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /v "DownloadMode" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /v "DODownloadMode" /t REG_DWORD /d 0 /f > NUL 2>&1
:reg8start
set /p reg8="Remove Pin to start? y/n: "
if '%reg8%' == 'n' goto reg9start
if /i "%reg8%" neq "y" goto reg8start
reg delete "HKEY_CLASSES_ROOT\exefile\shellex\ContextMenuHandlers\PintoStartScreen" /f > NUL 2>&1
reg delete "HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers\PintoStartScreen" /f > NUL 2>&1
reg delete "HKEY_CLASSES_ROOT\mscfile\shellex\ContextMenuHandlers\PintoStartScreen" /f > NUL 2>&1
:reg9start
set /p reg9="Classic vertical icon spacing? y/n: "
if '%reg9%' == 'n' goto reg10start
if /i "%reg9%" neq "y" goto reg9start
reg add "HKCU\Control Panel\Desktop\WindowMetrics" /v "IconVerticalSpacing" /t REG_SZ /d "-1150" /f > NUL 2>&1
:reg10start
set /p reg10="Remove versioning tab from properties? y/n: "
if '%reg10%' == 'n' goto reg11start
if /i "%reg10%" neq "y" goto reg10start
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v NoPreviousVersionsPage /t REG_DWORD /d 1 /f > NUL 2>&1
:reg11start
set /p reg11="Disable jump lists? y/n: "
if '%reg11%' == 'n' goto reg12start
if /i "%reg11%" neq "y" goto reg11start
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Start_TrackDocs" /t REG_DWORD /d 0 /f > NUL 2>&1
:reg12start
set /p reg12="Remove telemetry and data collection? y/n: "
if '%reg12%' == 'n' goto reg13start
if /i "%reg12%" neq "y" goto reg12start
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Metadata" /v PreventDeviceMetadataFromNetwork /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v "AllowTelemetry" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\MRT" /v DontOfferThroughWUAU /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\SQMClient\Windows" /v "CEIPEnable" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v "AITEnable" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v "DisableUAR" /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKLM\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-c..lemetry.lib.cortana_31bf3856ad364e35_10.0.10240.16384_none_40ba2ec3d03bceb0" /v "f!dss-winrt-telemetry.js" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKLM\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-c..lemetry.lib.cortana_31bf3856ad364e35_10.0.10240.16384_none_40ba2ec3d03bceb0" /v "f!proactive-telemetry.js" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKLM\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-c..lemetry.lib.cortana_31bf3856ad364e35_10.0.10240.16384_none_40ba2ec3d03bceb0" /v "f!proactive-telemetry-event_8ac43a41e5030538" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKLM\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-c..lemetry.lib.cortana_31bf3856ad364e35_10.0.10240.16384_none_40ba2ec3d03bceb0" /v "f!proactive-telemetry-inter_58073761d33f144b" /t REG_DWORD /d 0 /f > NUL 2>&1
:reg13start
set /p reg13="Apply Internet Explorer 11 tweaks? y/n: "
if '%reg13%' == 'n' goto reg14start
if /i "%reg13%" neq "y" goto reg13start
reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "DoNotTrack" /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "Search Page" /t REG_SZ /d "http://www.google.es" /f > NUL 2>&1
reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "Start Page Redirect Cache" /t REG_SZ /d "http://www.google.es" /f > NUL 2>&1
reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "DisableFirstRunCustomize" /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "RunOnceHasShown" /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "RunOnceComplete" /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKLM\SOFTWARE\Microsoft\Internet Explorer\Main" /v "DisableFirstRunCustomize" /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKLM\SOFTWARE\Microsoft\Internet Explorer\Main" /v "RunOnceHasShown" /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKLM\SOFTWARE\Microsoft\Internet Explorer\Main" /v "RunOnceComplete" /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKCU\Software\Policies\Microsoft\Internet Explorer\Main" /v "DisableFirstRunCustomize" /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKCU\Software\Policies\Microsoft\Internet Explorer\Main" /v "RunOnceHasShown" /t REG_DWORD /d 1 /f > NUL 2>&1
reg add "HKCU\Software\Policies\Microsoft\Internet Explorer\Main" /v "RunOnceComplete" /t REG_DWORD /d 1 /f > NUL 2>&1
:reg14start
set /p reg14="Disable Cortana, Bing Search and Searchbar? y/n: "
if '%reg14%' == 'n' goto reg15start
if /i "%reg14%" neq "y" goto reg14start
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "CortanaEnabled" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "BingSearchEnabled" /t REG_DWORD /d 0 /f > NUL 2>&1
:reg15start
set /p reg15="Change Logon screen background with accent color? y/n: "
if '%reg15%' == 'n' goto reg16start
if /i "%reg15%" neq "y" goto reg15start
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "DisableLogonBackgroundImage" /t REG_DWORD /d 1 /f > NUL 2>&1
:reg16start
set /p reg16="Disable Windows Error Reporting? y/n: "
if '%reg16%' == 'n' goto reg17start
if /i "%reg16%" neq "y" goto reg16start
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting" /v "Disabled" /t REG_DWORD /d 1 /f > NUL 2>&1
:reg17start
set /p reg17="Disable automatic Windows Updates? y/n: "
if '%reg17%' == 'n' goto reg18start
if /i "%reg17%" neq "y" goto reg17start
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "AUOptions" /t REG_DWORD /d 2 /f > NUL 2>&1
:reg18start
set /p reg18="Disable Hibernation? y/n: "
if '%reg18%' == 'n' goto servstart
if /i "%reg18%" neq "y" goto reg18start
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v "HiberbootEnabled" /t REG_DWORD /d 0 /f > NUL 2>&1
ECHO Done...
REM ======================= Removing services =======================
ECHO.
:servstart
set /p services="Apply Registry tweaks? y/n: "
if '%services%' == 'n' goto schedstart
if /i "%services%" neq "n" if /i "%services%" neq "y" goto servstart
:serv0start
set /p serv0="Disable tracking services? y/n: "
if '%serv0%' == 'n' goto serv1start
if /i "%serv0%" neq "y" goto serv0start
sc config DiagTrack start= disabled > NUL 2>&1
sc config diagnosticshub.standardcollector.service start= disabled > NUL 2>&1
sc config TrkWks start= disabled > NUL 2>&1
sc config WMPNetworkSvc start= disabled > NUL 2>&1
:serv1start
set /p serv1="Disable WAP Push Message Routing Service? y/n: "
if '%serv1%' == 'n' goto serv2start
if /i "%serv1%" neq "y" goto serv1start
sc config dmwappushservice start= disabled > NUL 2>&1
:serv2start
set /p serv2="Disable Windows Search? y/n: "
if '%serv2%' == 'n' goto serv3start
if /i "%serv2%" neq "y" goto serv2start
sc config WSearch start= disabled > NUL 2>&1
del "C:\ProgramData\Microsoft\Search\Data\Applications\Windows\Windows.edb" /s > NUL 2>&1
:serv3start
set /p serv3="Disable Superfetch? y/n: "
if '%serv3%' == 'n' goto serv4start
if /i "%serv3%" neq "y" goto serv3start
sc config SysMain start= disabled > NUL 2>&1
:serv4start
set /p serv4="Disable Windows Defender? y/n: "
if '%serv4%' == 'n' goto schedstart
if /i "%serv4%" neq "y" goto serv4start
sc config WinDefend start= disabled > NUL 2>&1
sc config WdNisSvc start= disabled > NUL 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t REG_DWORD /d 1 /f > NUL 2>&1
schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Cache Maintenance" /Disable > NUL 2>&1
schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Cleanup" /Disable > NUL 2>&1
schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Scheduled Scan" /Disable > NUL 2>&1
schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Verification" /Disable > NUL 2>&1
del "C:\ProgramData\Microsoft\Windows Defender\Scans\mpcache*" /s > NUL 2>&1
ECHO Done...
REM ======================= Removing scheduled tasks =======================
ECHO.
:schedstart
set /p schedules="Removing scheduled tasks? y/n: "
if '%schedules%' == 'n' goto winappstart
if /i "%schedules%" neq "n" if /i "%schedules%" neq "y" goto schedstart
schtasks /Change /TN "Microsoft\Windows\AppID\SmartScreenSpecific" /Disable > NUL 2>&1
schtasks /Change /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /Disable > NUL 2>&1
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /Disable > NUL 2>&1
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /Disable > NUL 2>&1
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" /Disable > NUL 2>&1
schtasks /Change /TN "Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" /Disable > NUL 2>&1
schtasks /Change /TN "Microsoft\Windows\NetTrace\GatherNetworkInfo" /Disable > NUL 2>&1
schtasks /Change /TN "Microsoft\Windows\Windows Error Reporting\QueueReporting" /Disable > NUL 2>&1
ECHO Done...
REM ======================= Removing Windows default apps =======================
ECHO.
:winappstart
set /p winapps="Removing Windows default apps? y/n: "
if '%winapps%' == 'n' goto odrivestart
if /i "%winapps%" neq "n" if /i "%winapps%" neq "y" goto winappstart
powershell "Get-AppxPackage *3d* | Remove-AppxPackage" > NUL 2>&1
powershell "Get-AppxPackage *bing* | Remove-AppxPackage" > NUL 2>&1
powershell "Get-AppxPackage *zune* | Remove-AppxPackage" > NUL 2>&1
powershell "Get-AppxPackage *photo* | Remove-AppxPackage" > NUL 2>&1
powershell "Get-AppxPackage *communi* | Remove-AppxPackage" > NUL 2>&1
powershell "Get-AppxPackage *solit* | Remove-AppxPackage" > NUL 2>&1
powershell "Get-AppxPackage *phone* | Remove-AppxPackage" > NUL 2>&1
powershell "Get-AppxPackage *soundrec* | Remove-AppxPackage" > NUL 2>&1
powershell "Get-AppxPackage *camera* | Remove-AppxPackage" > NUL 2>&1
powershell "Get-AppxPackage *people* | Remove-AppxPackage" > NUL 2>&1
powershell "Get-AppxPackage *office* | Remove-AppxPackage" > NUL 2>&1
powershell "Get-AppxPackage *xbox* | Remove-AppxPackage" > NUL 2>&1
ECHO Done...
REM ======================= Disable / Remove OneDrive =======================
ECHO.
:odrivestart
set /p onedrive="Disable OneDrive? y/n: "
if '%onedrive%' == 'n' goto hoststart
if /i "%onedrive%" neq "y" goto odrivestart
reg add "HKLM\Software\Policies\Microsoft\Windows\OneDrive" /v DisableFileSyncNGSC /t REG_DWORD /d 1 /f > NUL 2>&1
ECHO Done...
REM ======================= Blocking Telemetry Servers =======================
ECHO.
:hoststart
set /p hostsblock="Blocking Telemetry Servers? y/n: "
if '%hostsblock%' == 'n' goto finish
if /i "%hostsblock%" neq "n" if /i "%hostsblock%" neq "y" goto hoststart
copy "%WINDIR%\system32\drivers\etc\hosts" "%WINDIR%\system32\drivers\etc\hosts.bak" > NUL 2>&1
attrib -r "%WINDIR%\system32\drivers\etc\hosts" > NUL 2>&1
FIND /C /I "vortex.data.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 vortex.data.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "vortex-win.data.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 vortex-win.data.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "telecommand.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telecommand.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "telecommand.telemetry.microsoft.com.nsatc.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telecommand.telemetry.microsoft.com.nsatc.net>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "oca.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 oca.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "oca.telemetry.microsoft.com.nsatc.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 oca.telemetry.microsoft.com.nsatc.net>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "sqm.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 sqm.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "sqm.telemetry.microsoft.com.nsatc.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 sqm.telemetry.microsoft.com.nsatc.net>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "watson.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 watson.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "watson.telemetry.microsoft.com.nsatc.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 watson.telemetry.microsoft.com.nsatc.net>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "redir.metaservices.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 redir.metaservices.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "choice.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 choice.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "choice.microsoft.com.nsatc.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 choice.microsoft.com.nsatc.net>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "df.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 df.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "reports.wes.df.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 reports.wes.df.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "services.wes.df.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 services.wes.df.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "sqm.df.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 sqm.df.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "watson.ppe.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 watson.ppe.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "telemetry.appex.bing.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telemetry.appex.bing.net>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "telemetry.urs.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telemetry.urs.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "telemetry.appex.bing.net:443" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telemetry.appex.bing.net:443>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "settings-sandbox.data.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 settings-sandbox.data.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
FIND /C /I "vortex-sandbox.data.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 vortex-sandbox.data.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
attrib +r "%WINDIR%\system32\drivers\etc\hosts" > NUL 2>&1
@Echo Off
Title Reg Converter v1.2 & Color 1A
cd %systemroot%\system32
call :IsAdmin
:: --------------------------------------------------- !!! Incorrect Data Found !!! -------------------------------------------------------------
:: HKEY_CURRENT_USER\Control Panel\Mouse --> SmoothMouseXCurve"=hex:\
:: HKEY_CURRENT_USER\Control Panel\Mouse --> 00,00,00,00,00,00,00,00,\
:: HKEY_CURRENT_USER\Control Panel\Mouse --> C0,CC,0C,00,00,00,00,00,\
:: HKEY_CURRENT_USER\Control Panel\Mouse --> 80,99,19,00,00,00,00,00,\
:: HKEY_CURRENT_USER\Control Panel\Mouse --> 40,66,26,00,00,00,00,00,\
:: HKEY_CURRENT_USER\Control Panel\Mouse --> 00,33,33,00,00,00,00,00
:: HKEY_CURRENT_USER\Control Panel\Mouse --> SmoothMouseYCurve"=hex:\
:: HKEY_CURRENT_USER\Control Panel\Mouse --> 00,00,00,00,00,00,00,00,\
:: HKEY_CURRENT_USER\Control Panel\Mouse --> 00,00,38,00,00,00,00,00,\
:: HKEY_CURRENT_USER\Control Panel\Mouse --> 00,00,70,00,00,00,00,00,\
:: HKEY_CURRENT_USER\Control Panel\Mouse --> 00,00,A8,00,00,00,00,00,\
:: HKEY_CURRENT_USER\Control Panel\Mouse --> 00,00,E0,00,00,00,00,00
:: ------------------------------------------------------------------------------------------------------------------------------------------------
REM ; Windows_10+8.x_MouseFix_ItemsSize=100%_Scale=1-to-1_@6-of-11
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseSensitivity" /t REG_SZ /d "10" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "MouseSpeed" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "MouseThreshold1" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "MouseThreshold2" /t REG_SZ /d "0" /f
Exit
:IsAdmin
Reg.exe query "HKU\S-1-5-19\Environment"
If Not %ERRORLEVEL% EQU 0 (
Cls & Echo You must have administrator rights to continue ...
Pause & Exit
)
Cls
goto:eof
rem ========== Pre ==========
rem Don't echo to standard output
@echo off
rem Set version info
set V=4.2.3
rem Change colors
color 1F
rem Set title
title Windows 10 Tweaks (x64) Version %V% by: TheGeekFreaks
rem ========== Start ==========
cls
echo ###############################################################################
echo # #
echo # Windows10 Tweaks Version %V% #
echo # #
echo # Microsoft Windows 10 #
echo # #
echo # AUTHOR: TheGeekFreaks #
echo # #
echo # #
echo # Features #
echo # #
echo # 1. Registry Tweaks #
echo # 2. Removing Services #
echo # 3. Removing Scheduled Tasks #
echo # 4. Removing Windows Default Apps #
echo # 5. Disable / Remove OneDrive #
echo # 6. Blocking Telemetry Servers #
echo # 7. Blocking More Windows Servers #
echo # 8. Disable Windows Error Recovery on Startup #
echo # 9. Internet Explorer 11 Tweaks #
echo # 10. Libraries Tweaks #
echo # 11. Windows Update Tweaks #
echo # 12. Windows Defender Tweaks #
echo # #
echo ###############################################################################
echo.
timeout /T 1 /NOBREAK > nul
rem ========== Automatically Check & Get Admin Rights ==========
:init
setlocal DisableDelayedExpansion
set "batchPath=%~0"
for %%k in (%0) do set batchName=%%~nk
set "vbsGetPrivileges=%temp%\OEgetPriv_%batchName%.vbs"
setlocal EnableDelayedExpansion
:checkPrivileges
NET FILE 1>nul 2>nul
if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges )
:getPrivileges
if '%1'=='ELEV' (echo ELEV & shift /1 & goto gotPrivileges)
echo.
echo ###############################################################################
echo # Invoking UAC for Privilege Escalation #
echo ###############################################################################
echo Set UAC = CreateObject^("Shell.Application"^) > "%vbsGetPrivileges%"
echo args = "ELEV " >> "%vbsGetPrivileges%"
echo For Each strArg in WScript.Arguments >> "%vbsGetPrivileges%"
echo args = args ^& strArg ^& " " >> "%vbsGetPrivileges%"
echo Next >> "%vbsGetPrivileges%"
echo UAC.ShellExecute "!batchPath!", args, "", "runas", 1 >> "%vbsGetPrivileges%"
"%SystemRoot%\System32\WScript.exe" "%vbsGetPrivileges%" %*
exit /B
:gotPrivileges
setlocal & pushd .
cd /d %~dp0
if '%1'=='ELEV' (del "%vbsGetPrivileges%" 1>nul 2>nul & shift /1)
rem ========== Initializing ==========
set PMax=0
set PRun=0
set PAct=0
rem ========== 1. Registry Tweaks ==========
echo.
echo ###############################################################################
echo # 1. Registry Tweaks -- Start #
echo ###############################################################################
echo.
:1000
set /A Pline=1000
set PMax=37
set PRun=0
rem set PAct=0
echo Apply Registry tweaks (%PMax%).
set /p Pselect="Continue? y/n/a: "
if '%Pselect%' == 'y' set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+2
if '%Pselect%' == 'n' set /A Pline=%Pline%+100
goto %Pline%
:1001
set myMSG=Show computer shortcut on desktop.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1002
rem 0 = show icon, 1 = don't show icon
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1003
set myMSG=Show Network shortcut on desktop.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1004
rem 0 = show icon, 1 = don't show icon
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1005
set myMSG=Classic vertical icon spacing.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1006
reg add "HKCU\Control Panel\Desktop\WindowMetrics" /v "IconVerticalSpacing" /t REG_SZ /d "-1150" /f > nul 2>&1set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1007
set myMSG=Lock the Taskbar.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1008
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarSizeMove" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1009
set myMSG=Always show all icons on the taskbar (next to clock).
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1010
rem 0 = Show all icons
rem 1 = Hide icons on the taskbar
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer" /v "EnableAutoTray" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1011
set myMSG=Delay taskbar thumbnail pop-ups to 10 seconds.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1012
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ExtendedUIHoverTime" /t REG_DWORD /d "10000" /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1013
set myMSG=Enable classic control panel view.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1014
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "ForceClassicControlPanel" /t REG_DWORD /d 1 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1015
set myMSG=Turn OFF Sticky Keys when SHIFT is pressed 5 times.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1016
rem 506 = Off, 510 = On (default)
reg add "HKCU\Control Panel\Accessibility\StickyKeys" /v "Flags" /t REG_SZ /d "506" /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1017
set myMSG=Turn OFF Filter Keys when SHIFT is pressed for 8 seconds.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1018
rem 122 = Off, 126 = On (default)
reg add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "122" /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1019
set myMSG=Disable Hibernation.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1020
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v "HiberbootEnabled" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1021
set myMSG=Underline keyboard shortcuts and access keys.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1022
reg add "HKCU\Control Panel\Accessibility\Keyboard Preference" /v "On" /t REG_SZ /d 1 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1023
set myMSG=Show known file extensions in Explorer.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1024
rem 0 = extensions are visible
rem 1 = extensions are hidden
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1025
set myMSG=Hide indication for compressed NTFS files.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1026
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCompColor" /t RED_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1027
set myMSG=Show Hidden files in Explorer.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1028
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Hidden" /t REG_DWORD /d 1 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1029
set myMSG=Show Super Hidden System files in Explorer.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1030
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowSuperHidden" /t REG_DWORD /d 1 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1031
set myMSG=Prevent both Windows and Office from creating LNK files in the Recents folder.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1032
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoRecentDocsHistory" /t REG_DWORD /d 1 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1033
set myMSG=Replace Utilman with CMD.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1034
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\utilman.exe" /v "Debugger" /t REG_SZ /d "cmd.exe" /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1035
set myMSG=Add the option "Processor performance core parking min cores".
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1036
rem Option will be added to: Power Options > High Performance > Change Plan Settings > Change advanced power settings > Processor power management
rem Default data is 1 (option hidden)
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\54533251-82be-4824-96c1-47b60b740d00\0cc5b647-c1df-4637-891a-dec35c318583" /v "Attributes" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1037
set myMSG=Add the option "Disable CPU Core Parking".
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1038
rem Default value is 100 decimal.
rem Basically "Core parking" means that the OS can use less CPU cores when they are not needed, and saving power.
rem This, however, can somewhat hamper performance, so advanced users prefer to disable this feature.
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\54533251-82be-4824-96c1-47b60b740d00\0cc5b647-c1df-4637-891a-dec35c318583" /v "ValueMax" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1039
set myMSG=Remove Logon screen wallpaper/background. Will use solid color instead (Accent color).
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1040
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "DisableLogonBackgroundImage" /t REG_DWORD /d 1 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1041
set myMSG=Disable lockscreen.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1042
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d 1 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1043
set myMSG=Remove versioning tab from properties.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1044
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v NoPreviousVersionsPage /t REG_DWORD /d 1 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1045
set myMSG=Disable jump lists.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1046
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Start_TrackDocs" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1047
set myMSG=Disable Windows Error Reporting.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1048
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting" /v "Disabled" /t REG_DWORD /d 1 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1049
set myMSG=Disable Cortana (Speech Search Assistant, which also sends information to Microsoft).
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1050
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1051
set myMSG=Hide the search box from taskbar. You can still search by pressing the Win key and start typing what you're looking for.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1052
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1053
set myMSG=Disable MRU lists (jump lists) of XAML apps in Start Menu.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1054
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Start_TrackDocs" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1055
set myMSG=Set Windows Explorer to start on This PC instead of Quick Access.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1056
rem 1 = This PC, 2 = Quick access
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "LaunchTo" /t REG_DWORD /d 1 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1057
set myMSG=Disable Disk Quota tab, which appears as a tab when right-clicking on drive letter - Properties.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1058
rem 1 = This PC, 2 = Quick access
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\DiskQuota" /v "Enable" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1059
set myMSG=Disable creation of an Advertising ID.
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1060
rem 1 = This PC, 2 = Quick access
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v "Enabled" /t REG_DWORD /d 0 /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+1
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.
timeout /T 1 /NOBREAK > nul
set /A Pline=%Pline%+1
if '%Pselect%' == 'a' set /A Pline=%Pline%+1
goto %Pline%
:1061
set myMSG=Remove Pin to start (3).
echo %myMSG%
set /p regTweak="Continue? y/n: "
if '%regTweak%' == 'y' set /A Pline=%Pline%+1
if '%regTweak%' == 'n' set /A Pline=%Pline%+2
goto %Pline%
:1062
reg delete "HKEY_CLASSES_ROOT\exefile\shellex\ContextMenuHandlers\PintoStartScreen" /f > nul 2>&1
reg delete "HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers\PintoStartScreen" /f > nul 2>&1
reg delete "HKEY_CLASSES_ROOT\mscfile\shellex\ContextMenuHandlers\PintoStartScreen" /f > nul 2>&1
set /A PRun=%PRun%+1
set /A PAct=%PAct%+3
echo Done %PRun% / %PMax% Registry Tweaks. Total Actions %PAct%.