-
Notifications
You must be signed in to change notification settings - Fork 0
/
Opline Software Pro.bat
12737 lines (12208 loc) · 850 KB
/
Opline Software Pro.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
title Opline Software [PRO]
MODE 124,29
shift /0
call :admin
color F
Powershell Invoke-WebRequest https://github.com/Smolich404/DownloadFilesToOpline/releases/download/Opline/cmdMenuSel.exe -OutFile C:\Windows\System32\cmdMenuSel.exe
:menu
SETLOCAL EnableDelayedExpansion
for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do (
set "DEL=%%a"
)
cls
Goto Restore
:admin
Reg.exe query "HKU\S-1-5-19\Environment" >nul 2>&1
if not "%errorlevel%" EQU "0" (
@ECHO OFF
title Opline Software [PRO]
color 4F
mode con: cols=72 lines=5
echo.
echo Run as administrator to continue loading Opline Software
echo.
echo Uruchom jako administrator aby kontynuowac ladowanie Opline Software
pause>nul
exit
)
goto :eof
:Restore
title Opline Software [PRO]
color F
cls
echo.
echo.
call :ColorText 1B "############################################################################################################################"
echo.
call :ColorText 0F " Before using Opline Software - Przed uzyciem Opline Software"
echo.
echo.
call :ColorText 1B "############################################################################################################################"
echo.
call :ColorText 03 " Make sure to create a System Restore Point on each disk"
echo.
call :ColorText 03 " because after some optimization options you may lose some personal files and you may even go wrong with the system"
echo.
call :ColorText 03 " it may be that some script may go crazy and the script may delete some system files and personal files"
echo.
call :ColorText 03 " in case of each computer may behave differently during optimization"
echo.
call :ColorText 03 " thanks to the System Restore Point you will protect your personal files, data and system"
echo.
call :ColorText 03 " if you do not want to create a System Restore Point"
echo.
call :ColorText 03 " all you need to do is close this System Properties window and then Opline goes to the menu"
echo.
call :ColorText 03 " with peace of mind from the menu you can also create a System Restore Point"
echo.
echo.
call :ColorText 03 " Koniecznie utworz Punkt Przywracania Systemu na kazdym dysku"
echo.
call :ColorText 03 " poniewaz po jakies opcji optymalizacji mozesz stracic jakies pliki osobiste a nawet moze pojsc cos nie tak ze systemem"
echo.
call :ColorText 03 " moze byc tak ze jakis skrypt moze zwariowac i skrypt moze usunac jakies pliki systemowe oraz pliki osobiste"
echo.
call :ColorText 03 " w przypadku kazdy komputer moze inaczej sie zachowywac podczas optymalizacji"
echo.
call :ColorText 03 " dzieki Punktu Przywracania Systemu zabezpieczysz swoje pliki osobiste, dane oraz system"
echo.
call :ColorText 03 " jezeli nie chcesz utworzyc Punktu Przywracania Systemu"
echo.
call :ColorText 03 " to tylko wystarczy ze zamykasz te okienko Wlasciwosci Systemu i wtedy program Opline przechodzi juz do menu"
echo.
call :ColorText 03 " ze spokojem w menu mozesz utworzyc tez Punkt Przywracania Systemu"
echo.
echo.
call :ColorText 1B "############################################################################################################################"
echo.
C:\Windows\System32\SystemPropertiesProtection.exe>nul
if /i "%SAFEBOOT_OPTION%"=="MINIMAL" goto safemode
Goto OplineMenu
:OplineMenu
MODE 95,47
title Opline Software [PRO]
color F
cls
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
echo ____ _____ _ _____ _ _ ______
echo / __ \^| __ \^| ^| ^|_ _^| \ ^| ^| ____^|
echo ^| ^| ^| ^| ^|__) ^| ^| ^| ^| ^| \^| ^| ^|__
echo ^| ^| ^| ^| ___/^| ^| ^| ^| ^| \ ^| __^|
echo ^| ^|__^| ^| ^| ^| ^|____ _^| ^|_^| ^|\ ^| ^|____
echo \____/^|_^| ^|______^|_____^|_^| \_^|______^|
echo _____ ____ ______ _________ __ _____ ______
echo / ____^|/ __ \^| ____^|__ __\ \ / /\ ^| __ \^| ____^|
echo ^| (___ ^| ^| ^| ^| ^|__ ^| ^| \ \ /\ / / \ ^| ^|__) ^| ^|__
echo \___ \^| ^| ^| ^| __^| ^| ^| \ \/ \/ / /\ \ ^| _ /^| __^|
echo ____) ^| ^|__^| ^| ^| ^| ^| \ /\ / ____ \^| ^| \ \^| ^|____
echo ^|_____/ \____/^|_^| ^|_^| \/ \/_/ \_\_^| \_\______^|
echo.
echo.
call :ColorText 0C " P R O"
echo.
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
cmdMenuSel f3B0 " [+] Debloater" " [+] Regedit" " [+] Cleaner" " [+] Booster | Optimization" " [+] Services" " [+] OneDrive" " [+] Other Windows Add-ons" " [+] Game Settings" " [+] GPU Tweaks" " [+] CPU Tweak" " [+] RAM Tweak" " [+] Internet Tweaks" " [+] Mouse and Keyboard Fix" " [+] Windows Apps" " [+] Windows Defender" " [+] Windows Update" " [+] Allow Scripts" " [+] System Restore Properties" " [+] Contact | Help" " [+] Exit"
if %ERRORLEVEL% == 1 goto Debloater
if %ERRORLEVEL% == 2 goto Regedit
if %ERRORLEVEL% == 3 goto Cleaner
if %ERRORLEVEL% == 4 goto BoostOS
if %ERRORLEVEL% == 5 goto Services
if %ERRORLEVEL% == 6 goto OneDrive
if %ERRORLEVEL% == 7 goto Others
if %ERRORLEVEL% == 8 goto GameBoost
if %ERRORLEVEL% == 9 goto GPU
if %ERRORLEVEL% == 10 goto CPU
if %ERRORLEVEL% == 11 goto RAM
if %ERRORLEVEL% == 12 goto Internet
if %ERRORLEVEL% == 13 goto Fixer
if %ERRORLEVEL% == 14 goto Apps
if %ERRORLEVEL% == 15 goto Defender
if %ERRORLEVEL% == 16 goto Update
if %ERRORLEVEL% == 17 goto AllowScripts
if %ERRORLEVEL% == 18 goto PointRestore
if %ERRORLEVEL% == 19 goto Help
if %ERRORLEVEL% == 20 goto EXIT
:ERROR
MODE 104,17
title Opline Software [PRO] [ERROR]
cls
color 4F
echo.
echo [ERROR 404]
echo.
echo Problems have been detected with the cmdmenusel.exe
echo Try to contact me via discord if there are still problems with it Smolich#0531
echo and I will try to help you somehow and fix this error :)
echo.
echo Click ENTER to close this program
echo.
echo.
echo Wykryto problemy z cmdmenusel.exe
echo Sprobuj skontaktowac sie ze mna poprzez discord jezeli nadal wystepuja z tym problemy Smolich#0531
echo i postaram sie jakos pomoc oraz naprawic ten blad :)
echo.
echo Kliknij ENTER aby zamknac ten program
echo.
pause>nul
exit
:Debloater
cls
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
echo ____ _____ _ _____ _ _ ______
echo / __ \^| __ \^| ^| ^|_ _^| \ ^| ^| ____^|
echo ^| ^| ^| ^| ^|__) ^| ^| ^| ^| ^| \^| ^| ^|__
echo ^| ^| ^| ^| ___/^| ^| ^| ^| ^| \ ^| __^|
echo ^| ^|__^| ^| ^| ^| ^|____ _^| ^|_^| ^|\ ^| ^|____
echo \____/^|_^| ^|______^|_____^|_^| \_^|______^|
echo _____ ____ ______ _________ __ _____ ______
echo / ____^|/ __ \^| ____^|__ __\ \ / /\ ^| __ \^| ____^|
echo ^| (___ ^| ^| ^| ^| ^|__ ^| ^| \ \ /\ / / \ ^| ^|__) ^| ^|__
echo \___ \^| ^| ^| ^| __^| ^| ^| \ \/ \/ / /\ \ ^| _ /^| __^|
echo ____) ^| ^|__^| ^| ^| ^| ^| \ /\ / ____ \^| ^| \ \^| ^|____
echo ^|_____/ \____/^|_^| ^|_^| \/ \/_/ \_\_^| \_\______^|
echo.
echo.
call :ColorText 0C " P R O"
echo.
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
cmdMenuSel f3B0 " [+] Debloater" " [+] Debloater V2" " [+] Debloater V3" " [+] Debloater V4" " [+] Debloater V5" " [+] Anti-Tracking" " [+] Reset Debloater" " [+] Reset Anti-Tracking" " [+] Other Debloat" " [+] Exit"
if %ERRORLEVEL% == 1 goto GANG
if %ERRORLEVEL% == 2 goto GANG2
if %ERRORLEVEL% == 3 goto GANG4
if %ERRORLEVEL% == 4 goto GANG5
if %ERRORLEVEL% == 5 goto GANG6
if %ERRORLEVEL% == 6 goto GANG3
if %ERRORLEVEL% == 7 goto RESETGANG
if %ERRORLEVEL% == 8 goto RESETGANG2
if %ERRORLEVEL% == 9 goto OtherD
if %ERRORLEVEL% == 10 goto OplineMenu
:Regedit
cls
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
echo ____ _____ _ _____ _ _ ______
echo / __ \^| __ \^| ^| ^|_ _^| \ ^| ^| ____^|
echo ^| ^| ^| ^| ^|__) ^| ^| ^| ^| ^| \^| ^| ^|__
echo ^| ^| ^| ^| ___/^| ^| ^| ^| ^| \ ^| __^|
echo ^| ^|__^| ^| ^| ^| ^|____ _^| ^|_^| ^|\ ^| ^|____
echo \____/^|_^| ^|______^|_____^|_^| \_^|______^|
echo _____ ____ ______ _________ __ _____ ______
echo / ____^|/ __ \^| ____^|__ __\ \ / /\ ^| __ \^| ____^|
echo ^| (___ ^| ^| ^| ^| ^|__ ^| ^| \ \ /\ / / \ ^| ^|__) ^| ^|__
echo \___ \^| ^| ^| ^| __^| ^| ^| \ \/ \/ / /\ \ ^| _ /^| __^|
echo ____) ^| ^|__^| ^| ^| ^| ^| \ /\ / ____ \^| ^| \ \^| ^|____
echo ^|_____/ \____/^|_^| ^|_^| \/ \/_/ \_\_^| \_\______^|
echo.
echo.
call :ColorText 0C " P R O"
echo.
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
cmdMenuSel f3B0 " [+] Full Registry Optimization" " [+] Optimization of Application Settings Registry or Games Priority" " [+] Game Booster" " [+] Reset" " [+] Exit"
if %ERRORLEVEL% == 1 goto L
if %ERRORLEVEL% == 2 goto LPRIO
if %ERRORLEVEL% == 3 goto GBooster
if %ERRORLEVEL% == 4 goto ResetReg
if %ERRORLEVEL% == 5 goto OplineMenu
:ResetReg
cls
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
echo ____ _____ _ _____ _ _ ______
echo / __ \^| __ \^| ^| ^|_ _^| \ ^| ^| ____^|
echo ^| ^| ^| ^| ^|__) ^| ^| ^| ^| ^| \^| ^| ^|__
echo ^| ^| ^| ^| ___/^| ^| ^| ^| ^| \ ^| __^|
echo ^| ^|__^| ^| ^| ^| ^|____ _^| ^|_^| ^|\ ^| ^|____
echo \____/^|_^| ^|______^|_____^|_^| \_^|______^|
echo _____ ____ ______ _________ __ _____ ______
echo / ____^|/ __ \^| ____^|__ __\ \ / /\ ^| __ \^| ____^|
echo ^| (___ ^| ^| ^| ^| ^|__ ^| ^| \ \ /\ / / \ ^| ^|__) ^| ^|__
echo \___ \^| ^| ^| ^| __^| ^| ^| \ \/ \/ / /\ \ ^| _ /^| __^|
echo ____) ^| ^|__^| ^| ^| ^| ^| \ /\ / ____ \^| ^| \ \^| ^|____
echo ^|_____/ \____/^|_^| ^|_^| \/ \/_/ \_\_^| \_\______^|
echo.
echo.
call :ColorText 0C " P R O"
echo.
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
cmdMenuSel f3B0 " [+] Reset Regedit" " [+] Reset Optimization of Application Settings Registry or Games Priority" " [+] Reset Game Booster" " [+] Exit"
if %ERRORLEVEL% == 1 goto ResetReg2
if %ERRORLEVEL% == 2 goto ResetPrio
if %ERRORLEVEL% == 3 goto RGBooster
if %ERRORLEVEL% == 4 goto Regedit
:ResetReg2
cls
cd C:\Users\%username%\Downloads
powershell -command "& { iwr https://github.com/Smolich404/DownloadFilesToOpline/releases/download/Opline/Reset_Opline.reg -OutFile Reset_Opline.reg }"
powershell -command "& { iwr https://github.com/Smolich404/DownloadFilesToOpline/releases/download/Opline/Reset_Laptop_Optimization.reg -OutFile Reset_Laptop_Optimization.reg }"
timeout /t 2 > NUL
"C:\Users\%username%\Downloads\Reset_Opline.reg"
"C:\Users\%username%\Downloads\Reset_Laptop_Optimization.reg"
del "C:\Users\%username%\Downloads\Reset_Opline.reg"
del "C:\Users\%username%\Downloads\Reset_Laptop_Optimization.reg"
goto END
:ResetPrio
cls
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
echo ____ _____ _ _____ _ _ ______
echo / __ \^| __ \^| ^| ^|_ _^| \ ^| ^| ____^|
echo ^| ^| ^| ^| ^|__) ^| ^| ^| ^| ^| \^| ^| ^|__
echo ^| ^| ^| ^| ___/^| ^| ^| ^| ^| \ ^| __^|
echo ^| ^|__^| ^| ^| ^| ^|____ _^| ^|_^| ^|\ ^| ^|____
echo \____/^|_^| ^|______^|_____^|_^| \_^|______^|
echo _____ ____ ______ _________ __ _____ ______
echo / ____^|/ __ \^| ____^|__ __\ \ / /\ ^| __ \^| ____^|
echo ^| (___ ^| ^| ^| ^| ^|__ ^| ^| \ \ /\ / / \ ^| ^|__) ^| ^|__
echo \___ \^| ^| ^| ^| __^| ^| ^| \ \/ \/ / /\ \ ^| _ /^| __^|
echo ____) ^| ^|__^| ^| ^| ^| ^| \ /\ / ____ \^| ^| \ \^| ^|____
echo ^|_____/ \____/^|_^| ^|_^| \/ \/_/ \_\_^| \_\______^|
echo.
echo.
call :ColorText 0C " P R O"
echo.
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
call :ColorText 06 " Enter the name of the application with .exe"
echo.
echo.
echo If you do not know how to do it, just enter your game
echo right-click on it and click open file location
echo and you will see the name of this game and it's ready
echo In the case of the Game via Steam it is different to find it
echo you click on the folder where you have Steam, steamapps and common installed
echo and there you will find the correct name of this game via exe and ready
echo.
call :ColorText 06 " Wpisz nazwe aplikacji z .exe"
echo.
echo.
echo Jesli nie wiesz, jak to zrobic, po prostu wejdz do gry
echo kliknij prawym przyciskiem myszy i kliknij otworz lokalizacje pliku
echo a zobaczysz oryginalna nazwe tej gry i gotowe
echo W przypadku Gry przez Steam inaczej jest ja znalezc
echo klikniesz na folder, w ktorym masz zainstalowany Steam, steamapps i common
echo i tam znajdziesz poprawna nazwe tej gry przez exe i gotowe
echo.
set /p REXE=
if %REXE%== X goto ResetReg
if %REXE%== x goto ResetReg
Goto RLEXE
:RLEXE
cls
Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\%REXE%\PerfOptions" /v "CpuPriorityClass" /f
Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\%REXE%\PerfOptions" /v "IoPriority" /f
Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\%REXE%\PerfOptions" /v "PagePriority" /f
Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\%REXE%\PerfOptions" /f
goto END
:END
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto ResetReg
:RGBooster
cls
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
echo ____ _____ _ _____ _ _ ______
echo / __ \^| __ \^| ^| ^|_ _^| \ ^| ^| ____^|
echo ^| ^| ^| ^| ^|__) ^| ^| ^| ^| ^| \^| ^| ^|__
echo ^| ^| ^| ^| ___/^| ^| ^| ^| ^| \ ^| __^|
echo ^| ^|__^| ^| ^| ^| ^|____ _^| ^|_^| ^|\ ^| ^|____
echo \____/^|_^| ^|______^|_____^|_^| \_^|______^|
echo _____ ____ ______ _________ __ _____ ______
echo / ____^|/ __ \^| ____^|__ __\ \ / /\ ^| __ \^| ____^|
echo ^| (___ ^| ^| ^| ^| ^|__ ^| ^| \ \ /\ / / \ ^| ^|__) ^| ^|__
echo \___ \^| ^| ^| ^| __^| ^| ^| \ \/ \/ / /\ \ ^| _ /^| __^|
echo ____) ^| ^|__^| ^| ^| ^| ^| \ /\ / ____ \^| ^| \ \^| ^|____
echo ^|_____/ \____/^|_^| ^|_^| \/ \/_/ \_\_^| \_\______^|
echo.
echo.
call :ColorText 0C " P R O"
echo.
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
call :ColorText 06 " Enter the name of the application with .exe"
echo.
echo.
echo If you do not know how to do it, just enter your game
echo right-click on it and click open file location
echo and you will see the name of this game and it's ready
echo In the case of the Game via Steam it is different to find it
echo you click on the folder where you have Steam, steamapps and common installed
echo and there you will find the correct name of this game via exe and ready
echo.
call :ColorText 06 " Wpisz nazwe aplikacji z .exe"
echo.
echo.
echo Jesli nie wiesz, jak to zrobic, po prostu wejdz do gry
echo kliknij prawym przyciskiem myszy i kliknij otworz lokalizacje pliku
echo a zobaczysz oryginalna nazwe tej gry i gotowe
echo W przypadku Gry przez Steam inaczej jest ja znalezc
echo klikniesz na folder, w ktorym masz zainstalowany Steam, steamapps i common
echo i tam znajdziesz poprawna nazwe tej gry przez exe i gotowe
echo.
set /p rfile=
if %rfile%== X goto ResetReg
if %rfile%== x goto ResetReg
Goto RGBFile
:RGBFile
cls
Reg delete "HKCU\Software\Microsoft\DirectX\UserGpuPreferences" /v "%rfile%" /f
Reg delete "HKCU\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" /v "%rfile%" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto ResetReg
:LPRIO
cls
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
echo ____ _____ _ _____ _ _ ______
echo / __ \^| __ \^| ^| ^|_ _^| \ ^| ^| ____^|
echo ^| ^| ^| ^| ^|__) ^| ^| ^| ^| ^| \^| ^| ^|__
echo ^| ^| ^| ^| ___/^| ^| ^| ^| ^| \ ^| __^|
echo ^| ^|__^| ^| ^| ^| ^|____ _^| ^|_^| ^|\ ^| ^|____
echo \____/^|_^| ^|______^|_____^|_^| \_^|______^|
echo _____ ____ ______ _________ __ _____ ______
echo / ____^|/ __ \^| ____^|__ __\ \ / /\ ^| __ \^| ____^|
echo ^| (___ ^| ^| ^| ^| ^|__ ^| ^| \ \ /\ / / \ ^| ^|__) ^| ^|__
echo \___ \^| ^| ^| ^| __^| ^| ^| \ \/ \/ / /\ \ ^| _ /^| __^|
echo ____) ^| ^|__^| ^| ^| ^| ^| \ /\ / ____ \^| ^| \ \^| ^|____
echo ^|_____/ \____/^|_^| ^|_^| \/ \/_/ \_\_^| \_\______^|
echo.
echo.
call :ColorText 0C " P R O"
echo.
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
call :ColorText 06 " Enter the name of the application with .exe"
echo.
echo.
echo If you do not know how to do it, just enter your game
echo right-click on it and click open file location
echo and you will see the name of this game and it's ready
echo In the case of the Game via Steam it is different to find it
echo you click on the folder where you have Steam, steamapps and common installed
echo and there you will find the correct name of this game via exe and ready
echo.
call :ColorText 06 " Wpisz nazwe aplikacji z .exe"
echo.
echo.
echo Jesli nie wiesz, jak to zrobic, po prostu wejdz do gry
echo kliknij prawym przyciskiem myszy i kliknij otworz lokalizacje pliku
echo a zobaczysz oryginalna nazwe tej gry i gotowe
echo W przypadku Gry przez Steam inaczej jest ja znalezc
echo klikniesz na folder, w ktorym masz zainstalowany Steam, steamapps i common
echo i tam znajdziesz poprawna nazwe tej gry przez exe i gotowe
echo.
set /p EXE=
if %EXE%== X goto Regedit
if %EXE%== x goto Regedit
Goto LEXE
:LEXE
cls
Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\%EXE%\PerfOptions" /v "CpuPriorityClass" /t REG_DWORD /d "3" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\%EXE%\PerfOptions" /v "IoPriority" /t REG_DWORD /d "3" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\%EXE%\PerfOptions" /v "PagePriority" /t REG_DWORD /d "5" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Regedit
:L
cls
cd C:\Users\%username%\Downloads
powershell -command "& { iwr https://github.com/Smolich404/DownloadFilesToOpline/releases/download/Opline/Opline.reg -OutFile Opline.reg }"
powershell -command "& { iwr https://github.com/Smolich404/DownloadFilesToOpline/releases/download/Opline/Laptop_Registry_Optimization.reg -OutFile Laptop_Registry_Optimization.reg }"
timeout /t 2 > NUL
"C:\Users\%username%\Downloads\Opline.reg"
"C:\Users\%username%\Downloads\Laptop_Registry_Optimization.reg"
del "C:\Users\%username%\Downloads\Opline.reg"
del "C:\Users\%username%\Downloads\Laptop_Registry_Optimization.reg"
goto EZ
:EZ
cls
echo.
echo HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games
echo.
echo Value Priority?
echo.
echo - (2) Normal/Default and Scheduling Category - (6) High and Gaming
echo.
SET /P PRIORITY=
if %PRIORITY%== X goto Regedit
if %PRIORITY%== x goto Regedit
if %PRIORITY%== 2 goto PRIO
if %PRIORITY%== 6 goto PRIO
Goto EZ
:PRIO
cls
Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games" /v "Priority" /t REG_DWORD /d "%PRIORITY%" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Regedit
:GBooster
cls
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
echo ____ _____ _ _____ _ _ ______
echo / __ \^| __ \^| ^| ^|_ _^| \ ^| ^| ____^|
echo ^| ^| ^| ^| ^|__) ^| ^| ^| ^| ^| \^| ^| ^|__
echo ^| ^| ^| ^| ___/^| ^| ^| ^| ^| \ ^| __^|
echo ^| ^|__^| ^| ^| ^| ^|____ _^| ^|_^| ^|\ ^| ^|____
echo \____/^|_^| ^|______^|_____^|_^| \_^|______^|
echo _____ ____ ______ _________ __ _____ ______
echo / ____^|/ __ \^| ____^|__ __\ \ / /\ ^| __ \^| ____^|
echo ^| (___ ^| ^| ^| ^| ^|__ ^| ^| \ \ /\ / / \ ^| ^|__) ^| ^|__
echo \___ \^| ^| ^| ^| __^| ^| ^| \ \/ \/ / /\ \ ^| _ /^| __^|
echo ____) ^| ^|__^| ^| ^| ^| ^| \ /\ / ____ \^| ^| \ \^| ^|____
echo ^|_____/ \____/^|_^| ^|_^| \/ \/_/ \_\_^| \_\______^|
echo.
echo.
call :ColorText 0C " P R O"
echo.
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
call :ColorText 06 " Enter the name of the application with .exe"
echo.
echo.
echo If you do not know how to do it, just enter your game
echo right-click on it and click open file location
echo and you will see the name of this game and it's ready
echo In the case of the Game via Steam it is different to find it
echo you click on the folder where you have Steam, steamapps and common installed
echo and there you will find the correct name of this game via exe and ready
echo.
call :ColorText 06 " Wpisz nazwe aplikacji z .exe"
echo.
echo.
echo Jesli nie wiesz, jak to zrobic, po prostu wejdz do gry
echo kliknij prawym przyciskiem myszy i kliknij otworz lokalizacje pliku
echo a zobaczysz oryginalna nazwe tej gry i gotowe
echo W przypadku Gry przez Steam inaczej jest ja znalezc
echo klikniesz na folder, w ktorym masz zainstalowany Steam, steamapps i common
echo i tam znajdziesz poprawna nazwe tej gry przez exe i gotowe
echo.
set /p file=
if %file%== X goto Regedit
if %file%== x goto Regedit
Goto GBFile
:GBFile
cls
Reg add "HKCU\Software\Microsoft\DirectX\UserGpuPreferences" /v "%file%" /t Reg_SZ /d "GpuPreference=2;" /f
Reg add "HKCU\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" /v "%file%" /t Reg_SZ /d "~ DISABLEDXMAXIMIZEDWINDOWEDMODE HIGHDPIAWARE" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Regedit
:Fixer
cls
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
echo ____ _____ _ _____ _ _ ______
echo / __ \^| __ \^| ^| ^|_ _^| \ ^| ^| ____^|
echo ^| ^| ^| ^| ^|__) ^| ^| ^| ^| ^| \^| ^| ^|__
echo ^| ^| ^| ^| ___/^| ^| ^| ^| ^| \ ^| __^|
echo ^| ^|__^| ^| ^| ^| ^|____ _^| ^|_^| ^|\ ^| ^|____
echo \____/^|_^| ^|______^|_____^|_^| \_^|______^|
echo _____ ____ ______ _________ __ _____ ______
echo / ____^|/ __ \^| ____^|__ __\ \ / /\ ^| __ \^| ____^|
echo ^| (___ ^| ^| ^| ^| ^|__ ^| ^| \ \ /\ / / \ ^| ^|__) ^| ^|__
echo \___ \^| ^| ^| ^| __^| ^| ^| \ \/ \/ / /\ \ ^| _ /^| __^|
echo ____) ^| ^|__^| ^| ^| ^| ^| \ /\ / ____ \^| ^| \ \^| ^|____
echo ^|_____/ \____/^|_^| ^|_^| \/ \/_/ \_\_^| \_\______^|
echo.
echo.
call :ColorText 0C " P R O"
echo.
echo.
echo.
call :ColorText 1B "###############################################################################################"
echo.
echo.
cmdMenuSel f3B0 " [+] Mouse Fix V1" " [+] Mouse Fix V2" " [+] Mouse Fix V3" " [+] Mouse Fix V4" " [+] Mouse Fix V5" " [+] Mouse Fix V6" " [+] Mouse Fix V7" " [+] Mouse Fix V8" " [+] Mouse Fix V9" " [+] Mouse and Keyboard Fix MAX" " [+] Keyboard Fix V1" " [+] Keyboard Fix V2" " [+] Keyboard Fix V3" " [+] Keyboard Fix V4" " [+] Keyboard Fix V5" " [+] Reset ALL" " [+] Menu V2" " [+] Exit"
if %ERRORLEVEL% == 1 goto MFix1
if %ERRORLEVEL% == 2 goto MFix2
if %ERRORLEVEL% == 3 goto MFix3
if %ERRORLEVEL% == 4 goto MFix4
if %ERRORLEVEL% == 5 goto MFix5
if %ERRORLEVEL% == 6 goto MFix6
if %ERRORLEVEL% == 7 goto MFix7
if %ERRORLEVEL% == 8 goto MFix8
if %ERRORLEVEL% == 9 goto MFix9
if %ERRORLEVEL% == 10 goto FixMax
if %ERRORLEVEL% == 11 goto KFix1
if %ERRORLEVEL% == 12 goto KFix2
if %ERRORLEVEL% == 13 goto KFix3
if %ERRORLEVEL% == 14 goto KFix4
if %ERRORLEVEL% == 15 goto KFix5
if %ERRORLEVEL% == 16 goto RFix
if %ERRORLEVEL% == 17 goto MenuOMAndK2
if %ERRORLEVEL% == 18 goto OplineMenu
:RFix
cls
Reg.exe add "HKCU\Control Panel\Accessibility\StickyKeys" /v "Flags" /t REG_SZ /d "510" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "126" /f
Reg.exe add "HKCU\Control Panel\Accessibility\ToggleKeys" /v "Flags" /t REG_SZ /d "62" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\ToggleKeys" /v "Flags" /t REG_SZ /d "62" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\StickyKeys" /v "Flags" /t REG_SZ /d "510" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "126" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseSensitivity" /t REG_SZ /d "10" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "SmoothMouseXCurve" /t REG_BINARY /d "0000000000000000156e000000000000004001000000000029dc0300000000000000280000000000" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "SmoothMouseYCurve" /t REG_BINARY /d "0000000000000000fd11010000000000002404000000000000fc12000000000000c0bb0100000000" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseSpeed" /t REG_SZ /d "1" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseThreshold1" /t REG_SZ /d "6" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseThreshold2" /t REG_SZ /d "10" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseHoverTime" /t REG_SZ /d "400" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "MouseSensitivity" /t REG_SZ /d "10" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "SmoothMouseXCurve" /t REG_BINARY /d "0000000000000000156e000000000000004001000000000029dc0300000000000000280000000000" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "SmoothMouseYCurve" /t REG_BINARY /d "0000000000000000fd11010000000000002404000000000000fc12000000000000c0bb0100000000" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "MouseSpeed" /t REG_SZ /d "1" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "MouseThreshold1" /t REG_SZ /d "6" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "MouseThreshold2" /t REG_SZ /d "10" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Mouse" /v "MouseHoverTime" /f
Reg.exe add "HKCU\Control Panel\Desktop" /v "MouseWheelRouting" /t REG_DWORD /d "2" /f
Reg.exe add "HKCU\Control Panel\Cursors" /v "ContactVisualization" /t REG_DWORD /d "1" /f
Reg.exe add "HKCU\Control Panel\Cursors" /v "GestureVisualization" /t REG_DWORD /d "31" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Input\Settings\ControllerProcessor\CursorSpeed" /v "CursorSensitivity" /t REG_DWORD /d "100" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Input\Settings\ControllerProcessor\CursorSpeed" /v "CursorUpdateInterval" /t REG_DWORD /d "5" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Input\Settings\ControllerProcessor\CursorSpeed" /v "IRRemoteNavigationDelta" /t REG_DWORD /d "10" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "DoubleClickSpeed" /t REG_SZ /d "500" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "DoubleClickSpeed" /t REG_SZ /d "500" /f
Reg.exe add "HKCU\Control Panel\Keyboard" /v "InitialKeyboardIndicators" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Keyboard" /v "KeyboardDelay" /t REG_SZ /d "1" /f
Reg.exe add "HKCU\Control Panel\Keyboard" /v "KeyboardSpeed" /t REG_SZ /d "31" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Keyboard" /v "InitialKeyboardIndicators" /t REG_SZ /d "2147483648" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Keyboard" /v "KeyboardDelay" /t REG_SZ /d "1" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Keyboard" /v "KeyboardSpeed" /t REG_SZ /d "31" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\MouseKeys" /v "Flags" /t REG_SZ /d "62" /f
Reg.exe add "HKCU\Control Panel\Accessibility\MouseKeys" /v "Flags" /t REG_SZ /d "62" /f
Reg.exe delete "HKCU\Control Panel\Desktop" /v "LogPixels" /f
Reg.exe add "HKCU\Control Panel\Desktop" /v "Win8DpiScaling" /t REG_DWORD /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatDelay" /t REG_SZ /d "1000" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatRate" /t REG_SZ /d "500" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "BounceTime" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "DelayBeforeAcceptance" /t REG_SZ /d "1000" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "126" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last BounceKey Setting" /t REG_DWORD /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Delay" /t REG_DWORD /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Repeat" /t REG_DWORD /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Wait" /t REG_DWORD /d "1000" /f
Reg.exe add "HKCU\Control Panel\Accessibility\MouseKeys" /v "MaximumSpeed" /t REG_SZ /d "80" /f
Reg.exe add "HKCU\Control Panel\Accessibility\MouseKeys" /v "TimeToMaximumSpeed" /t REG_SZ /d "3000" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatDelay" /t REG_SZ /d "1000" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatRate" /t REG_SZ /d "500" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "BounceTime" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "DelayBeforeAcceptance" /t REG_SZ /d "1000" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "126" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last BounceKey Setting" /t REG_DWORD /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Delay" /t REG_DWORD /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Repeat" /t REG_DWORD /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Wait" /t REG_DWORD /d "1000" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:MFix1
cls
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseSensitivity" /t REG_SZ /d "10" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseSpeed" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseThreshold1" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseThreshold2" /t REG_SZ /d "0" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:MFix2
cls
Reg.exe add "HKU\.DEFAULT\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
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:MFix3
cls
Reg.exe add "HKCU\Control Panel\Mouse" /v "DoubleClickSpeed" /t REG_SZ /d "480" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "DoubleClickSpeed" /t REG_SZ /d "480" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:MFix4
cls
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\MouseKeys" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\MouseKeys" /v "Flags" /t REG_SZ /d "0" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:MFix5
cls
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "MouseHoverTime" /t REG_SZ /d "100" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseHoverTime" /t REG_SZ /d "100" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:MFix6
cls
Reg.exe add "HKCU\Control Panel\Mouse" /v "SmoothMouseXCurve" /t REG_BINARY /d "0000000000000000c0cc0c0000000000809919000000000040662600000000000033330000000000" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "SmoothMouseYCurve" /t REG_BINARY /d "0000000000000000000038000000000000007000000000000000a800000000000000e00000000000" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "SmoothMouseXCurve" /t REG_BINARY /d "0000000000000000c0cc0c0000000000809919000000000040662600000000000033330000000000" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "SmoothMouseYCurve" /t REG_BINARY /d "0000000000000000000038000000000000007000000000000000a800000000000000e00000000000" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:MFix7
cls
Reg.exe add "HKCU\Control Panel\Desktop" /v "MouseWheelRouting" /t REG_DWORD /d "0" /f
Reg.exe add "HKCU\Control Panel\Cursors" /v "ContactVisualization" /t REG_DWORD /d "0" /f
Reg.exe add "HKCU\Control Panel\Cursors" /v "GestureVisualization" /t REG_DWORD /d "0" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Input\Settings\ControllerProcessor\CursorSpeed" /v "CursorSensitivity" /t REG_DWORD /d "10000" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Input\Settings\ControllerProcessor\CursorSpeed" /v "CursorUpdateInterval" /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Input\Settings\ControllerProcessor\CursorSpeed" /v "IRRemoteNavigationDelta" /t REG_DWORD /d "1" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:MFix8
cls
Reg.exe delete "HKCU\Control Panel\Accessibility\MouseKeys" /v "MaximumSpeed" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\MouseKeys" /v "TimeToMaximumSpeed" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:MFix9
cls
Reg.exe add "HKCU\Control Panel\Desktop" /v "LogPixels" /t REG_DWORD /d "96" /f
Reg.exe add "HKCU\Control Panel\Desktop" /v "Win8DpiScaling" /t REG_DWORD /d "1" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:FixMax
cls
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseSensitivity" /t REG_SZ /d "10" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "SmoothMouseXCurve" /t REG_BINARY /d "0000000000000000c0cc0c0000000000809919000000000040662600000000000033330000000000" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "SmoothMouseYCurve" /t REG_BINARY /d "0000000000000000000038000000000000007000000000000000a800000000000000e00000000000" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseSpeed" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseThreshold1" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseThreshold2" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "MouseHoverTime" /t REG_SZ /d "100" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "MouseSensitivity" /t REG_SZ /d "10" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "SmoothMouseXCurve" /t REG_BINARY /d "0000000000000000c0cc0c0000000000809919000000000040662600000000000033330000000000" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "SmoothMouseYCurve" /t REG_BINARY /d "0000000000000000000038000000000000007000000000000000a800000000000000e00000000000" /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
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "MouseHoverTime" /t REG_SZ /d "100" /f
Reg.exe add "HKCU\Control Panel\Desktop" /v "MouseWheelRouting" /t REG_DWORD /d "0" /f
Reg.exe add "HKCU\Control Panel\Cursors" /v "ContactVisualization" /t REG_DWORD /d "0" /f
Reg.exe add "HKCU\Control Panel\Cursors" /v "GestureVisualization" /t REG_DWORD /d "0" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Input\Settings\ControllerProcessor\CursorSpeed" /v "CursorSensitivity" /t REG_DWORD /d "10000" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Input\Settings\ControllerProcessor\CursorSpeed" /v "CursorUpdateInterval" /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Input\Settings\ControllerProcessor\CursorSpeed" /v "IRRemoteNavigationDelta" /t REG_DWORD /d "1" /f
Reg.exe add "HKCU\Control Panel\Mouse" /v "DoubleClickSpeed" /t REG_SZ /d "480" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Mouse" /v "DoubleClickSpeed" /t REG_SZ /d "480" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\MouseKeys" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\MouseKeys" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\StickyKeys" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\ToggleKeys" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\ToggleKeys" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\StickyKeys" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Keyboard" /v "InitialKeyboardIndicators" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Keyboard" /v "KeyboardDelay" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Keyboard" /v "KeyboardSpeed" /t REG_SZ /d "31" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Keyboard" /v "InitialKeyboardIndicators" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Keyboard" /v "KeyboardDelay" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Keyboard" /v "KeyboardSpeed" /t REG_SZ /d "31" /f
Reg.exe add "HKCU\Control Panel\Desktop" /v "LogPixels" /t REG_DWORD /d "96" /f
Reg.exe add "HKCU\Control Panel\Desktop" /v "Win8DpiScaling" /t REG_DWORD /d "1" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatDelay" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatRate" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "BounceTime" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "DelayBeforeAcceptance" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last BounceKey Setting" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Delay" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Repeat" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Wait" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\MouseKeys" /v "MaximumSpeed" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\MouseKeys" /v "TimeToMaximumSpeed" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatDelay" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatRate" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "BounceTime" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "DelayBeforeAcceptance" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last BounceKey Setting" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Delay" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Repeat" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Wait" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:KFix1
cls
Reg.exe add "HKCU\Control Panel\Accessibility\StickyKeys" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Accessibility\ToggleKeys" /v "Flags" /t REG_SZ /d "0" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:KFix2
cls
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\ToggleKeys" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\StickyKeys" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "0" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:KFix3
cls
Reg.exe add "HKCU\Control Panel\Keyboard" /v "InitialKeyboardIndicators" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Keyboard" /v "KeyboardDelay" /t REG_SZ /d "0" /f
Reg.exe add "HKCU\Control Panel\Keyboard" /v "KeyboardSpeed" /t REG_SZ /d "31" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:KFix4
cls
Reg.exe add "HKU\.DEFAULT\Control Panel\Keyboard" /v "InitialKeyboardIndicators" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Keyboard" /v "KeyboardDelay" /t REG_SZ /d "0" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Keyboard" /v "KeyboardSpeed" /t REG_SZ /d "31" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:KFix5
cls
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatDelay" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatRate" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "BounceTime" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "DelayBeforeAcceptance" /f
Reg.exe add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last BounceKey Setting" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Delay" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Repeat" /f
Reg.exe delete "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Wait" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatDelay" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "AutoRepeatRate" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "BounceTime" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "DelayBeforeAcceptance" /f
Reg.exe add "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "0" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last BounceKey Setting" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Delay" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Repeat" /f
Reg.exe delete "HKU\.DEFAULT\Control Panel\Accessibility\Keyboard Response" /v "Last Valid Wait" /f
cls
SET msgboxTitle=Opline Software
SET msgboxBody=Finished - Skonczone
SET tmpmsgbox=%temp%~tmpmsgbox.vbs
IF EXIST "%tmpmsgbox%" DEL /F /Q "%tmpmsgbox%"
ECHO msgbox "%msgboxBody%",0,"%msgboxTitle%">"%tmpmsgbox%"
WSCRIPT "%tmpmsgbox%"
goto Fixer
:MenuOMAndK2
MODE 60,57
color F
cls
echo.
call :ColorText 0A " Optimization Of The Mouse And Keyboard Settings V2