-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtweaks.json
More file actions
3299 lines (3299 loc) · 150 KB
/
tweaks.json
File metadata and controls
3299 lines (3299 loc) · 150 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "network",
"icon": "🌐",
"name": {
"en": "Network",
"es": "Red"
},
"tweaks": [
{
"id": "congestion-provider",
"name": {
"en": "🎯 Congestion Provider",
"es": "🎯 Congestion Provider"
},
"description": {
"en": "Controls how your connection recovers from congestion, packet loss, and increased latency.",
"es": "Controla cómo tu conexión se recupera de congestión, pérdida de paquetes y aumento de latencia."
},
"benefit": {
"en": "Reduces latency and improves connection stability",
"es": "Reduce latencia y mejora la estabilidad de conexión"
},
"impact": "high",
"commands": [
"Get-NetTCPSetting | Select-Object SettingName, CongestionProvider",
"netsh int tcp set supplemental internet congestionprovider=ctcp",
"netsh int tcp set supplemental internet congestionprovider=newreno"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "ecn",
"name": {
"en": "⚡ ECN (Explicit Congestion Notification)",
"es": "⚡ ECN (Explicit Congestion Notification)"
},
"description": {
"en": "Allows routers to signal congestion without dropping packets, reducing retransmissions.",
"es": "Permite a los routers señalar congestión sin descartar paquetes, reduciendo retransmisiones."
},
"benefit": {
"en": "Reduces packet retransmissions in congested networks",
"es": "Reduce retransmisiones de paquetes en redes congestionadas"
},
"impact": "medium",
"commands": [
"netsh int tcp set global ecncapability=enabled"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "autotuning",
"name": {
"en": "🚀 AutoTuning",
"es": "🚀 AutoTuning"
},
"description": {
"en": "Automatically adjusts the receive buffer size to optimize throughput.",
"es": "Ajusta automáticamente el tamaño del buffer de recepción para optimizar el throughput."
},
"benefit": {
"en": "Automatically optimizes connection performance",
"es": "Optimiza automáticamente el rendimiento de la conexión"
},
"impact": "medium",
"commands": [
"netsh int tcp set global autotuninglevel=experimental"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "rsc",
"name": {
"en": "📡 RSC (Receive Segment Coalescing)",
"es": "📡 RSC (Receive Segment Coalescing)"
},
"description": {
"en": "Combines multiple TCP/IP packets into one to reduce CPU overhead, but may increase latency.",
"es": "Combina múltiples paquetes TCP/IP en uno solo para reducir overhead de CPU, pero puede aumentar latencia."
},
"benefit": {
"en": "Reduces CPU overhead",
"es": "Reduce overhead de CPU"
},
"impact": "high",
"commands": [
"netsh int tcp set global rsc=disabled"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "lso",
"name": {
"en": "📤 LSO (Large Send Offload)",
"es": "📤 LSO (Large Send Offload)"
},
"description": {
"en": "Allows the network adapter to complete data segmentation instead of the operating system.",
"es": "Permite que el adaptador de red complete la segmentación de datos en lugar del sistema operativo."
},
"benefit": {
"en": "Reduces CPU load",
"es": "Reduce carga del CPU"
},
"impact": "medium",
"commands": [
"Disable-NetAdapterLso -Name *",
"Get-NetAdapterLso -Name *"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "rss",
"name": {
"en": "🔄 RSS (Receive-Side Scaling)",
"es": "🔄 RSS (Receive-Side Scaling)"
},
"description": {
"en": "Distributes network processing across multiple CPU cores.",
"es": "Distribuye el procesamiento de red entre múltiples núcleos de CPU."
},
"benefit": {
"en": "Distributes network load across multiple cores",
"es": "Distribuye carga de red entre múltiples núcleos"
},
"impact": "low",
"commands": [
"netsh int tcp set global rss=disabled"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "udp",
"name": {
"en": "📶 UDP Offloading",
"es": "📶 UDP Offloading"
},
"description": {
"en": "Optimizes UDP packet processing for better performance.",
"es": "Optimiza el procesamiento de paquetes UDP para mejor rendimiento."
},
"benefit": {
"en": "Improves UDP performance",
"es": "Mejora el rendimiento de UDP"
},
"impact": "medium",
"commands": [
"netsh int udp set global uro=enabled"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "teredo",
"name": {
"en": "🌍 Teredo and 6to4",
"es": "🌍 Teredo y 6to4"
},
"description": {
"en": "Required for Xbox LIVE and some games on Windows 10/11.",
"es": "Necesarios para Xbox LIVE y algunos juegos en Windows 10/11."
},
"benefit": {
"en": "Enables support for online gaming and Xbox LIVE",
"es": "Habilita soporte para juegos online y Xbox LIVE"
},
"impact": "low",
"commands": [
"netsh int teredo set state natawareclient",
"netsh int 6to4 set state state=enabled"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "verificar",
"name": {
"en": "🔍 Verify Configuration",
"es": "🔍 Verificar Configuración"
},
"description": {
"en": "Check current TCP/IP and network adapter configuration.",
"es": "Comprueba la configuración actual de TCP/IP y adaptadores de red."
},
"benefit": {
"en": "Verifies that changes were applied correctly",
"es": "Verifica que los cambios se aplicaron correctamente"
},
"impact": "low",
"commands": [
"netsh int tcp show global",
"Get-NetAdapter | Select-Object Name, Status, LinkSpeed"
],
"warnings": {
"en": [],
"es": []
}
}
]
},
{
"id": "memory",
"icon": "🧠",
"name": {
"en": "Memory & CPU",
"es": "Memoria y CPU"
},
"tweaks": [
{
"id": "disable-compression",
"name": {
"en": "🗜️ Disable RAM Compression",
"es": "🗜️ Desactivar Compresión de RAM"
},
"description": {
"en": "Disables automatic memory compression that Windows performs.",
"es": "Desactiva la compresión de memoria que Windows realiza automáticamente."
},
"benefit": {
"en": "Reduces memory access latency",
"es": "Reduce latencia de acceso a memoria"
},
"impact": "medium",
"commands": [
"Disable-MMAgent -MemoryCompression"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "disable-meltdown-spectre",
"name": {
"en": "🔓 Disable Meltdown/Spectre",
"es": "🔓 Desactivar Meltdown/Spectre"
},
"description": {
"en": "Improves performance by disabling security mitigations (gaming only).",
"es": "Mejora rendimiento desactivando mitigaciones de seguridad (solo para gaming)."
},
"benefit": {
"en": "Increases CPU performance",
"es": "Aumenta rendimiento de CPU"
},
"impact": "high",
"commands": [
"$path = \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Memory Management\"",
"if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }",
"New-ItemProperty -Path $path -Name \"FeatureSettings\" -PropertyType DWord -Value 1 -Force",
"New-ItemProperty -Path $path -Name \"FeatureSettingsOverride\" -PropertyType DWord -Value 3 -Force",
"New-ItemProperty -Path $path -Name \"FeatureSettingsOverrideMask\" -PropertyType DWord -Value 3 -Force"
],
"warnings": {
"en": [
"⚠️ IMPORTANT: Disabling Meltdown/Spectre significantly reduces your system's security. Only apply on PCs dedicated exclusively to gaming."
],
"es": [
"⚠️ IMPORTANTE: Desactivar Meltdown/Spectre reduce significativamente la seguridad de tu sistema. Solo aplicar en PCs dedicados exclusivamente a gaming."
]
}
},
{
"id": "disable-paging-executive",
"name": {
"en": "💾 DisablePagingExecutive",
"es": "💾 DisablePagingExecutive"
},
"description": {
"en": "Prevents drivers from being paged to virtual memory, keeping them in RAM.",
"es": "Evita que drivers se paginen a memoria virtual, manteniéndolos en RAM."
},
"benefit": {
"en": "Improves driver stability and performance",
"es": "Mejora estabilidad y rendimiento de drivers"
},
"impact": "medium",
"commands": [
"New-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Memory Management\" -Name \"DisablePagingExecutive\" -PropertyType DWord -Value 1 -Force"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "large-system-cache",
"name": {
"en": "📊 LargeSystemCache",
"es": "📊 LargeSystemCache"
},
"description": {
"en": "Configures system cache size to optimize performance.",
"es": "Configura el tamaño del cache del sistema para optimizar rendimiento."
},
"benefit": {
"en": "Optimizes cache based on usage (gaming or LAN)",
"es": "Optimiza cache según uso (gaming o LAN)"
},
"impact": "medium",
"commands": [
"New-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Memory Management\" -Name \"LargeSystemCache\" -PropertyType DWord -Value 0 -Force"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "page-file",
"name": {
"en": "📄 Configure Page File",
"es": "📄 Configurar Page File"
},
"description": {
"en": "A large page file (32GB) improves microstuttering in games.",
"es": "Un page file grande (32GB) mejora microstuttering en juegos."
},
"benefit": {
"en": "Reduces microstuttering and improves fluidity",
"es": "Reduce microstuttering y mejora fluidez"
},
"impact": "high",
"commands": [
"$cs = Get-CimInstance -ClassName Win32_ComputerSystem",
"if ($cs.AutomaticManagedPagefile) { Set-CimInstance -InputObject $cs -Property @{AutomaticManagedPagefile=$false} }",
"$pf = Get-CimInstance -ClassName Win32_PageFileSetting -Filter \"Name='C:\\\\pagefile.sys'\"",
"if ($pf) { Set-CimInstance -InputObject $pf -Property @{InitialSize=32768; MaximumSize=32768} } else { New-CimInstance -ClassName Win32_PageFileSetting -Property @{Name='C:\\pagefile.sys'; InitialSize=32768; MaximumSize=32768} | Out-Null }",
"Write-Host '[OK] Page file set to 32GB fixed. Restart required.'"
],
"warnings": {
"en": [
"⚠️ WARNING: System may become unstable if you don't have enough RAM. Restart Windows after applying this change."
],
"es": [
"⚠️ ADVERTENCIA: El sistema puede volverse inestable si no tienes RAM suficiente. Reinicia Windows después de aplicar este cambio."
]
}
},
{
"id": "ntfs-protection",
"name": {
"en": "🔐 NTFS/ReFS Protection",
"es": "🔐 Protección NTFS/ReFS"
},
"description": {
"en": "Disables additional filesystem protection mitigations.",
"es": "Desactiva mitigaciones adicionales de protección del sistema de archivos."
},
"benefit": {
"en": "Increases I/O performance",
"es": "Aumenta rendimiento de I/O"
},
"impact": "low",
"commands": [
"New-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\" -Name \"ProtectionMode\" -PropertyType DWord -Value 0 -Force"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "csrss-realtime",
"name": {
"en": "⏱️ Realtime Priority for csrss.exe",
"es": "⏱️ Prioridad Realtime para csrss.exe"
},
"description": {
"en": "Sets maximum priority for the csrss.exe process (session manager).",
"es": "Configura la máxima prioridad para el proceso csrss.exe (gestor de sesiones)."
},
"benefit": {
"en": "Improves system responsiveness to critical events",
"es": "Mejora respuesta del sistema a eventos críticos"
},
"impact": "high",
"commands": [
"$path = \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\csrss.exe\\PerfOptions\"",
"if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }",
"New-ItemProperty -Path $path -Name \"CpuPriorityClass\" -PropertyType DWord -Value 4 -Force",
"New-ItemProperty -Path $path -Name \"IoPriority\" -PropertyType DWord -Value 3 -Force"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "resumen",
"name": {
"en": "💡 Summary",
"es": "💡 Resumen"
},
"description": {
"en": "Important: these optimizations improve gaming performance but reduce security and stability.",
"es": "Importante: estas optimizaciones mejoran rendimiento en gaming pero reducen seguridad y estabilidad."
},
"benefit": {
"en": "Understanding the risks",
"es": "Comprensión de los riesgos"
},
"impact": "low",
"commands": [],
"warnings": {
"en": [
"These optimizations improve gaming performance but reduce system security and overall stability. Only apply on PCs dedicated exclusively to gaming and controlled environments."
],
"es": [
"Estas optimizaciones mejoran rendimiento en gaming pero reducen seguridad y estabilidad general del sistema. Solo aplicar en PCs dedicados exclusivamente a gaming y entornos controlados."
]
}
}
]
},
{
"id": "gpu",
"icon": "🎮",
"name": {
"en": "GPU",
"es": "GPU"
},
"tweaks": [
{
"id": "gpu-scheduling",
"name": {
"en": "Hardware-Accelerated GPU Scheduling",
"es": "Planificación Acelerada de GPU (Hardware-Accelerated GPU Scheduling)"
},
"description": {
"en": "Reduces latency by allowing GPU to manage its own memory",
"es": "Reduce la latencia permitiendo que la GPU gestione su propia memoria"
},
"benefit": {
"en": "Lower GPU latency, improved frame times in games and 3D applications",
"es": "Menor latencia de GPU, mejora de tiempos de fotograma en juegos y aplicaciones 3D"
},
"impact": "high",
"commands": [
"New-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers\" -Name \"HwSchMode\" -PropertyType DWord -Value 2 -Force"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "tdr-timeout",
"name": {
"en": "Timeout Detection and Recovery (TDR)",
"es": "Timeout Detection and Recovery (TDR)"
},
"description": {
"en": "TDR restarts GPU driver if it detects a timeout. Adjust for gaming performance",
"es": "TDR reinicia el controlador de GPU si detecta un timeout. Ajustar para rendimiento de juegos"
},
"benefit": {
"en": "Prevents driver timeouts during intensive GPU tasks",
"es": "Previene timeouts de controlador durante tareas intensivas de GPU"
},
"impact": "high",
"commands": [
"$path = \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers\"",
"if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }",
"New-ItemProperty -Path $path -Name \"TdrDelay\" -PropertyType DWord -Value 10 -Force",
"$path = \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers\"",
"if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }",
"New-ItemProperty -Path $path -Name \"TdrLevel\" -PropertyType DWord -Value 0 -Force"
],
"warnings": {
"en": [
"Disabling TDR completely can cause permanent black screens if driver freezes. It is safer to increase timeout with TdrDelay instead."
],
"es": [
"Desactivar TDR completamente puede causar pantallazos negros permanentes si el controlador se congela. Es más seguro aumentar el timeout con TdrDelay."
]
}
},
{
"id": "nvidia-performance",
"name": {
"en": "Nvidia - Maximum Performance",
"es": "Nvidia - Máximo Rendimiento"
},
"description": {
"en": "Configure Nvidia GPU for maximum gaming performance",
"es": "Configura GPU Nvidia para máximo rendimiento de juegos"
},
"benefit": {
"en": "Improved GPU performance and reduced power management overhead",
"es": "Rendimiento mejorado de GPU y reducción de gestión de energía"
},
"impact": "high",
"commands": [
"$path = \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Class\\{4d36e968-e325-11ce-bfc1-08002be10318}\\0000\"",
"if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }",
"New-ItemProperty -Path $path -Name \"PerfLevelSrc\" -PropertyType DWord -Value 8738 -Force",
"New-ItemProperty -Path $path -Name \"PowerMizerEnable\" -PropertyType DWord -Value 0 -Force",
"New-ItemProperty -Path $path -Name \"PowerMizerLevel\" -PropertyType DWord -Value 1 -Force",
"New-ItemProperty -Path $path -Name \"PowerMizerLevelAC\" -PropertyType DWord -Value 1 -Force",
"$path = \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers\\Scheduler\"",
"if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }",
"New-ItemProperty -Path $path -Name \"EnablePreemption\" -PropertyType DWord -Value 0 -Force | Out-Null"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "amd-optimizations",
"name": {
"en": "AMD - Performance Optimizations",
"es": "AMD - Optimizaciones de Rendimiento"
},
"description": {
"en": "Configure AMD GPU for optimal gaming performance",
"es": "Configura GPU AMD para rendimiento óptimo de juegos"
},
"benefit": {
"en": "Improved GPU performance and reduced power state transitions",
"es": "Rendimiento mejorado de GPU y reducción de transiciones de estado de energía"
},
"impact": "high",
"commands": [
"$path = \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Class\\{4d36e968-e325-11ce-bfc1-08002be10318}\\0000\"",
"if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }",
"New-ItemProperty -Path $path -Name \"EnableUlps\" -PropertyType DWord -Value 0 -Force",
"$path = \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Class\\{4d36e968-e325-11ce-bfc1-08002be10318}\\0000\\UMD\"",
"if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }",
"New-ItemProperty -Path $path -Name \"Main3D_DEF\" -PropertyType String -Value \"1\" -Force",
"New-ItemProperty -Path $path -Name \"Main3D\" -PropertyType String -Value \"1\" -Force"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "mpo-overlay",
"name": {
"en": "Disable MPO (Multi-Plane Overlay)",
"es": "Desactivar MPO (Multi-Plane Overlay)"
},
"description": {
"en": "Disable Multi-Plane Overlay to prevent stuttering issues",
"es": "Desactiva Multi-Plane Overlay para prevenir problemas de stuttering"
},
"benefit": {
"en": "Improved frame rate stability and reduced stuttering",
"es": "Mejora de estabilidad de tasa de fotogramas y reducción de stuttering"
},
"impact": "medium",
"commands": [
"New-ItemProperty -Path \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\Dwm\" -Name \"OverlayTestMode\" -PropertyType DWord -Value 5 -Force"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "fullscreen-optimizations",
"name": {
"en": "Disable Fullscreen Optimizations",
"es": "Desactivar Optimizaciones de Pantalla Completa"
},
"description": {
"en": "Disable Windows fullscreen optimizations for better performance",
"es": "Desactiva las optimizaciones de pantalla completa de Windows para mejor rendimiento"
},
"benefit": {
"en": "Better frame consistency and reduced input lag in fullscreen games",
"es": "Mejor consistencia de fotogramas y reducción de latencia de entrada en juegos en pantalla completa"
},
"impact": "medium",
"commands": [
"New-ItemProperty -Path \"HKCU:\\System\\GameConfigStore\" -Name \"GameDVR_DXGIHonorFSEWindowsCompatible\" -PropertyType DWord -Value 1 -Force",
"New-ItemProperty -Path \"HKCU:\\System\\GameConfigStore\" -Name \"GameDVR_FSEBehavior\" -PropertyType DWord -Value 2 -Force"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "driver-cleanup",
"name": {
"en": "GPU Driver Cleanup",
"es": "Limpieza de Controladores de GPU"
},
"description": {
"en": "Clean old GPU drivers before applying advanced optimizations",
"es": "Limpia controladores de GPU antiguos antes de aplicar optimizaciones avanzadas"
},
"benefit": {
"en": "Prevents driver conflicts and ensures clean driver installation",
"es": "Previene conflictos de controladores y asegura una instalación limpia de controladores"
},
"impact": "high",
"commands": [],
"warnings": {
"en": [
"Before applying advanced optimizations, clean old drivers using DDU (Display Driver Uninstaller) in Safe Mode to prevent conflicts."
],
"es": [
"Antes de aplicar optimizaciones avanzadas, limpia los controladores antiguos usando DDU (Display Driver Uninstaller) en Modo Seguro para prevenir conflictos."
]
}
}
]
},
{
"id": "windows_features",
"icon": "⚙️",
"name": {
"en": "Windows Features",
"es": "Características de Windows"
},
"tweaks": [
{
"id": "virtualization-features",
"name": {
"en": "Disable Virtualization Features",
"es": "Desactivar Características de Virtualización"
},
"description": {
"en": "Disable Hyper-V, WSL, and virtualization-related features if not needed",
"es": "Desactiva Hyper-V, WSL y características relacionadas con virtualización si no se necesitan"
},
"benefit": {
"en": "Frees up system resources and improves performance if virtualization is not used",
"es": "Libera recursos del sistema y mejora el rendimiento si no se usa virtualización"
},
"impact": "medium",
"commands": [
"$ErrorActionPreference='Continue'; $features = @('HypervisorPlatform','VirtualMachinePlatform','Microsoft-Windows-Subsystem-Linux','Client-ProjFS'); foreach ($f in $features) { $w = Get-WindowsOptionalFeature -Online -FeatureName $f -ErrorAction SilentlyContinue; if (-not $w) { Write-Host \"[SKIP] $f - not available on this system\"; continue } if ($w.State -eq 'Disabled' -or $w.State -eq 'DisabledWithPayloadRemoved') { Write-Host \"[OK] $f - already disabled\"; continue } try { Disable-WindowsOptionalFeature -Online -FeatureName $f -NoRestart -WarningAction SilentlyContinue -ErrorAction Stop | Out-Null; Write-Host \"[OK] Disabled $f\" } catch { Write-Host \"[ERR] $f - $($_.Exception.Message)\" } }"
],
"warnings": {
"en": [
"Disabling these features will prevent running virtual machines, WSL, and Docker containers."
],
"es": [
"Desactivar estas características impedirá ejecutar máquinas virtuales, WSL y contenedores Docker."
]
}
},
{
"id": "iis-services",
"name": {
"en": "Disable IIS and Web Services",
"es": "Desactivar IIS y Servicios Web"
},
"description": {
"en": "Remove IIS and web server components if not running web services",
"es": "Remove IIS y componentes de servidor web si no ejecutas servicios web"
},
"benefit": {
"en": "Reduces system footprint and closes unnecessary network services",
"es": "Reduce la huella del sistema y cierra servicios de red innecesarios"
},
"impact": "medium",
"commands": [
"$ErrorActionPreference='Continue'; $features = @('IIS-WebServer','IIS-WebServerRole','IIS-WebServerManagementTools','IIS-ManagementConsole'); foreach ($f in $features) { $w = Get-WindowsOptionalFeature -Online -FeatureName $f -ErrorAction SilentlyContinue; if (-not $w) { Write-Host \"[SKIP] $f - not available on this system\"; continue } if ($w.State -eq 'Disabled' -or $w.State -eq 'DisabledWithPayloadRemoved') { Write-Host \"[OK] $f - already disabled\"; continue } try { Disable-WindowsOptionalFeature -Online -FeatureName $f -NoRestart -WarningAction SilentlyContinue -ErrorAction Stop | Out-Null; Write-Host \"[OK] Disabled $f\" } catch { Write-Host \"[ERR] $f - $($_.Exception.Message)\" } }"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "legacy-components",
"name": {
"en": "Disable Legacy Components",
"es": "Desactivar Componentes Legacy"
},
"description": {
"en": "Remove outdated and rarely-used Windows components",
"es": "Elimina componentes de Windows antiguos y raramente usados"
},
"benefit": {
"en": "Reduces system bloat, improves startup time, and enhances security by removing old code",
"es": "Reduce la inflación del sistema, mejora el tiempo de inicio y enhances security al eliminar código antiguo"
},
"impact": "low",
"commands": [
"$ErrorActionPreference='Continue'; $features = @('Internet-Explorer-Optional-amd64','WindowsMediaPlayer','DirectPlay','LegacyComponents','MicrosoftWindowsPowerShellV2','MicrosoftWindowsPowerShellV2Root'); foreach ($f in $features) { $w = Get-WindowsOptionalFeature -Online -FeatureName $f -ErrorAction SilentlyContinue; if (-not $w) { Write-Host \"[SKIP] $f - not available on this system\"; continue } if ($w.State -eq 'Disabled' -or $w.State -eq 'DisabledWithPayloadRemoved') { Write-Host \"[OK] $f - already disabled\"; continue } try { Disable-WindowsOptionalFeature -Online -FeatureName $f -NoRestart -WarningAction SilentlyContinue -ErrorAction Stop | Out-Null; Write-Host \"[OK] Disabled $f\" } catch { Write-Host \"[ERR] $f - $($_.Exception.Message)\" } }"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "smb1-protocol",
"name": {
"en": "Disable SMB1 Protocol",
"es": "Desactivar Protocolo SMB1"
},
"description": {
"en": "Remove the insecure SMB1 protocol which has known vulnerabilities",
"es": "Elimina el protocolo SMB1 inseguro que tiene vulnerabilidades conocidas"
},
"benefit": {
"en": "Significantly improves security by removing outdated and vulnerable network protocol",
"es": "Mejora significativamente la seguridad al eliminar el protocolo de red obsoleto y vulnerable"
},
"impact": "high",
"commands": [
"$ErrorActionPreference='Continue'; $features = @('SMB1Protocol','SMB1Protocol-Client','SMB1Protocol-Server'); foreach ($f in $features) { $w = Get-WindowsOptionalFeature -Online -FeatureName $f -ErrorAction SilentlyContinue; if (-not $w) { Write-Host \"[SKIP] $f - not available on this system\"; continue } if ($w.State -eq 'Disabled' -or $w.State -eq 'DisabledWithPayloadRemoved') { Write-Host \"[OK] $f - already disabled\"; continue } try { Disable-WindowsOptionalFeature -Online -FeatureName $f -NoRestart -WarningAction SilentlyContinue -ErrorAction Stop | Out-Null; Write-Host \"[OK] Disabled $f\" } catch { Write-Host \"[ERR] $f - $($_.Exception.Message)\" } }"
],
"warnings": {
"en": [
"SMB1 has been the target of multiple ransomware attacks (WannaCry, etc.). Disabling is strongly recommended."
],
"es": [
"SMB1 ha sido objeto de múltiples ataques de ransomware (WannaCry, etc.). Se recomienda desactivar."
]
}
},
{
"id": "unused-network-services",
"name": {
"en": "Disable Unused Network Services",
"es": "Desactivar Servicios de Red No Utilizados"
},
"description": {
"en": "Remove rarely-used network service features",
"es": "Elimina características de servicios de red raramente usados"
},
"benefit": {
"en": "Reduces attack surface and frees up resources by disabling obsolete protocols",
"es": "Reduce la superficie de ataque y libera recursos deshabilitando protocolos obsoletos"
},
"impact": "low",
"commands": [
"$ErrorActionPreference='Continue'; $features = @('TelnetClient','TFTP','SNMP','SimpleTCP'); foreach ($f in $features) { $w = Get-WindowsOptionalFeature -Online -FeatureName $f -ErrorAction SilentlyContinue; if (-not $w) { Write-Host \"[SKIP] $f - not available on this system\"; continue } if ($w.State -eq 'Disabled' -or $w.State -eq 'DisabledWithPayloadRemoved') { Write-Host \"[OK] $f - already disabled\"; continue } try { Disable-WindowsOptionalFeature -Online -FeatureName $f -NoRestart -WarningAction SilentlyContinue -ErrorAction Stop | Out-Null; Write-Host \"[OK] Disabled $f\" } catch { Write-Host \"[ERR] $f - $($_.Exception.Message)\" } }"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "msmq-services",
"name": {
"en": "Disable MSMQ (Message Queuing)",
"es": "Desactivar MSMQ (Message Queuing)"
},
"description": {
"en": "Remove Message Queuing components if not used for enterprise messaging",
"es": "Elimina componentes de Message Queuing si no se utiliza para mensajería empresarial"
},
"benefit": {
"en": "Frees resources by removing unused enterprise messaging infrastructure",
"es": "Libera recursos eliminando infraestructura de mensajería empresarial no utilizada"
},
"impact": "low",
"commands": [
"$ErrorActionPreference='Continue'; $features = @('MSMQ-Container','MSMQ-Server','MSMQ-HTTP','MSMQ-Triggers'); foreach ($f in $features) { $w = Get-WindowsOptionalFeature -Online -FeatureName $f -ErrorAction SilentlyContinue; if (-not $w) { Write-Host \"[SKIP] $f - not available on this system\"; continue } if ($w.State -eq 'Disabled' -or $w.State -eq 'DisabledWithPayloadRemoved') { Write-Host \"[OK] $f - already disabled\"; continue } try { Disable-WindowsOptionalFeature -Online -FeatureName $f -NoRestart -WarningAction SilentlyContinue -ErrorAction Stop | Out-Null; Write-Host \"[OK] Disabled $f\" } catch { Write-Host \"[ERR] $f - $($_.Exception.Message)\" } }"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "enable-useful-features",
"name": {
"en": "Enable Useful Features",
"es": "Habilitar Características Útiles"
},
"description": {
"en": "Enable beneficial Windows features for system compatibility and functionality",
"es": "Habilita características de Windows beneficiosas para compatibilidad y funcionalidad del sistema"
},
"benefit": {
"en": "Ensures system has necessary components for optimal compatibility",
"es": "Asegura que el sistema tenga componentes necesarios para compatibilidad óptima"
},
"impact": "low",
"commands": [
"$ErrorActionPreference='Continue'; $features = @('NetFx3','NetFx4-AdvSrvs','Printing-PrintToPDFServices-Features','SearchEngine-Client-Package'); foreach ($f in $features) { $w = Get-WindowsOptionalFeature -Online -FeatureName $f -ErrorAction SilentlyContinue; if (-not $w) { Write-Host \"[SKIP] $f - not available on this system\"; continue } if ($w.State -eq 'Enabled') { Write-Host \"[OK] $f - already enabled\"; continue } if ($w.State -eq 'DisabledWithPayloadRemoved') { Write-Host \"[INFO] $f - payload removed; requires Windows Update or 'DISM /Online /Enable-Feature /FeatureName:$f /Source:<install.wim>' (skipped to avoid hang)\"; continue } $job = Start-Job -ScriptBlock { param($name) Enable-WindowsOptionalFeature -Online -FeatureName $name -NoRestart -WarningAction SilentlyContinue -ErrorAction Stop | Out-Null } -ArgumentList $f; $completed = Wait-Job -Job $job -Timeout 90; if ($null -eq $completed) { Stop-Job -Job $job; Remove-Job -Job $job -Force; Write-Host \"[ERR] $f - timed out after 90s (Windows Update may be downloading the payload; try again later or run from elevated PowerShell)\"; continue } $err = $job.ChildJobs[0].JobStateInfo.Reason; Remove-Job -Job $job -Force; if ($err) { $msg = $err.Message; if ($msg -match '0x800f081f|0x80072ee6|source files|archivos de origen') { Write-Host \"[INFO] $f - payload removed; enable via Windows Update or 'DISM /Online /Enable-Feature /FeatureName:$f /Source:<install.wim>'\" } else { Write-Host \"[ERR] $f - $msg\" } } else { Write-Host \"[OK] Enabled $f\" } }"
],
"warnings": {
"en": [
"Windows Defender signatures cannot be enabled via DISM. Update Defender separately with: Update-MpSignature -UpdateSource MicrosoftUpdateServer"
],
"es": [
"Las definiciones de Windows Defender no se pueden habilitar por DISM. Actualízalas con: Update-MpSignature -UpdateSource MicrosoftUpdateServer"
]
}
},
{
"id": "check-disabled-features",
"name": {
"en": "Check Disabled Features",
"es": "Verificar Características Desactivadas"
},
"description": {
"en": "Verify which Windows features are currently disabled",
"es": "Verifica qué características de Windows están actualmente desactivadas"
},
"benefit": {
"en": "Helps identify which features have been disabled and monitor system configuration",
"es": "Ayuda a identificar qué características han sido desactivadas y monitorear la configuración del sistema"
},
"impact": "low",
"commands": [
"Get-WindowsOptionalFeature -Online | Where-Object { $_.State -eq 'Disabled' -or $_.State -eq 'DisabledWithPayloadRemoved' } | Sort-Object FeatureName | Format-Table FeatureName,State -AutoSize"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "dism-best-practices",
"name": {
"en": "DISM Best Practices",
"es": "Mejores Prácticas de DISM"
},
"description": {
"en": "Important guidelines for safely managing Windows features",
"es": "Directrices importantes para gestionar de forma segura las características de Windows"
},
"benefit": {
"en": "Prevents system instability and ensures safe feature management with proper backup",
"es": "Previene inestabilidad del sistema y asegura gestión segura de características con respaldo adecuado"
},
"impact": "high",
"commands": [],
"warnings": {
"en": [
"1. Create a system restore point\n2. Run all commands as Administrator\n3. Use /NoRestart flag to group changes\n4. Test on a non-critical system first"
],
"es": [
"1. Crea un punto de restauración del sistema\n2. Ejecuta todos los comandos como Administrador\n3. Usa la bandera /NoRestart para agrupar cambios\n4. Prueba en un sistema no crítico primero"
]
}
}
]
},
{
"id": "firewall_security",
"icon": "🛡️",
"name": {
"en": "Firewall & Security",
"es": "Firewall y Seguridad"
},
"tweaks": [
{
"id": "firewall-app-rules",
"name": {
"en": "Disable Unnecessary App Firewall Rules",
"es": "Desactivar Reglas de Firewall de Apps Innecesarias"
},
"description": {
"en": "Disable firewall rules for built-in Windows apps that may not be needed",
"es": "Desactiva reglas de firewall para aplicaciones integradas de Windows que pueden no ser necesarias"
},
"benefit": {
"en": "Reduces attack surface and network exposure for unused applications",
"es": "Reduce la superficie de ataque y la exposición de red para aplicaciones no utilizadas"
},
"impact": "medium",
"commands": [
"$ErrorActionPreference='Continue'; $groupList = @(@{Primary='Connect'; Aliases=@('Connect','Connect','Conectar')},@{Primary='Contact Support'; Aliases=@('Contact Support','Contact Support','Soporte técnico')},@{Primary='Cortana'; Aliases=@('Cortana','Cortana')},@{Primary='DiagTrack'; Aliases=@('DiagTrack','DiagTrack')},@{Primary='Feedback Hub'; Aliases=@('Feedback Hub','Feedback Hub','Centro de comentarios','Hub de comentarios')},@{Primary='Microsoft Photos'; Aliases=@('Microsoft Photos','Microsoft Photos','Microsoft Fotos','Fotos')},@{Primary='OneNote'; Aliases=@('OneNote','OneNote')},@{Primary='Remote Assistance'; Aliases=@('Remote Assistance','Remote Assistance','Asistencia remota')},@{Primary='Windows Spotlight'; Aliases=@('Windows Spotlight','Windows Spotlight','Contenido destacado de Windows')}); foreach ($g in $groupList) { $found = $null; foreach ($alias in $g.Aliases) { $rules = Get-NetFirewallRule -Group $alias -ErrorAction SilentlyContinue; if (-not $rules) { $rules = Get-NetFirewallRule -ErrorAction SilentlyContinue | Where-Object { $_.DisplayGroup -eq $alias } } if ($rules) { $found = $rules; break } } if (-not $found) { Write-Host \"[SKIP] $($g.Primary) - no matching rules on this system\"; continue } $enabled = @($found | Where-Object { $_.Enabled -eq 'True' -or $_.Enabled -eq $true }); if ($enabled.Count -eq 0) { Write-Host \"[OK] $($g.Primary) - already disabled ($($found.Count) rule(s))\"; continue } try { $enabled | Disable-NetFirewallRule -ErrorAction Stop; Write-Host \"[OK] $($g.Primary) - disabled $($enabled.Count) rule(s)\" } catch { Write-Host \"[ERR] $($g.Primary) - $($_.Exception.Message)\" } }"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "block-smb-port",
"name": {
"en": "Block SMB Port 445",
"es": "Bloquear Puerto SMB 445"
},
"description": {
"en": "Block incoming SMB traffic on port 445 to prevent ransomware attacks",
"es": "Bloquea tráfico SMB entrante en el puerto 445 para prevenir ataques de ransomware"
},
"benefit": {
"en": "Significantly improves security by blocking major attack vector for ransomware and worms",
"es": "Mejora significativamente la seguridad bloqueando el vector de ataque principal para ransomware y gusanos"
},
"impact": "high",
"commands": [
"$ErrorActionPreference='Continue'; $name = 'CodeWinOpt-Block-SMB-445'; $r = Get-NetFirewallRule -DisplayName $name -ErrorAction SilentlyContinue; if ($r) { Write-Host \"[OK] Rule '$name' already exists\" } else { try { New-NetFirewallRule -DisplayName $name -Direction Inbound -Action Block -Protocol TCP -LocalPort 445 -Profile Any -Description 'Block inbound SMB on port 445 (CodeWinOptimizer)' -ErrorAction Stop | Out-Null; Write-Host \"[OK] Created firewall rule '$name' blocking inbound TCP 445\" } catch { Write-Host \"[ERR] $($_.Exception.Message)\" } }"
],
"warnings": {
"en": [
"Port 445 is the primary vector for ransomware propagation on Windows networks. Blocking is highly recommended unless you require SMB shares."
],
"es": [
"El puerto 445 es el vector principal para la propagación de ransomware en redes Windows. Se recomienda bloquearlo a menos que requieras comparticiones SMB."
]
}
},
{
"id": "firewall-profiles",
"name": {
"en": "Configure Firewall Profiles",
"es": "Configurar Perfiles de Firewall"
},
"description": {
"en": "Enable firewall on all profiles and restrict local firewall rules",
"es": "Habilita firewall en todos los perfiles y restringe reglas de firewall locales"
},
"benefit": {
"en": "Ensures consistent firewall protection across all network scenarios",
"es": "Asegura protección consistente del firewall en todos los escenarios de red"
},
"impact": "high",
"commands": [
"Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled True -AllowLocalFirewallRules False"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "disable-netbios",
"name": {
"en": "Disable NetBIOS and LMHOSTS",
"es": "Desactivar NetBIOS y LMHOSTS"
},
"description": {
"en": "Disable legacy NetBIOS protocol that can expose system information",
"es": "Desactiva el protocolo legacy NetBIOS que puede exponer información del sistema"
},
"benefit": {
"en": "Reduces exposure of computer names and network discovery attacks",
"es": "Reduce la exposición de nombres de equipo y ataques de descubrimiento de red"
},
"impact": "medium",
"commands": [
"New-ItemProperty -Force -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Services\\NetBT\\Parameters\" -Name \"EnableLMHOSTS\" -PropertyType DWord -Value 0"
],
"warnings": {
"en": [],
"es": []
}
},
{
"id": "disable-network-adapters",
"name": {
"en": "Disable Unnecessary Network Adapters",
"es": "Desactivar Adaptadores de Red Innecesarios"
},
"description": {
"en": "Disable unused network components like Pacer, SMB Server, LLDP, and LLTD",
"es": "Desactiva componentes de red no utilizados como Pacer, Servidor SMB, LLDP y LLTD"
},
"benefit": {
"en": "Reduces network exposure and removes potentially vulnerable network services",
"es": "Reduce la exposición de red y elimina servicios de red potencialmente vulnerables"
},
"impact": "medium",
"commands": [
"# Pacer (QoS)",
"Disable-NetAdapterBinding -Name \"*\" -ComponentID \"ms_pacer\"",
"# SMB Server",
"Disable-NetAdapterBinding -Name \"*\" -ComponentID \"ms_server\"",
"# LLDP",
"Disable-NetAdapterBinding -Name \"*\" -ComponentID \"ms_lldp\"",
"# LLTD",
"Disable-NetAdapterBinding -Name \"*\" -ComponentID \"ms_lltdio\"",
"Disable-NetAdapterBinding -Name \"*\" -ComponentID \"ms_rspndr\""
],
"warnings": {
"en": [],
"es": []
}