Optimización Windows 10 & 11 – Guía Completa 2026 | GPS-971.com

Windows 10 & 11 — Guía Completa | GPS-971.com
Guía actualizada · 2026 · GPS-971.comUpdated guide · 2026 · GPS-971.comAktualisiert · 2026 · GPS-971.com

OptimizaciónOptimizationOptimierung
Windows 10 & 11

La guía técnica completa para instalación, mantenimiento, limpieza profunda y máximo rendimiento. Comandos reales, resultados reales. The complete technical guide for installation, maintenance, deep cleaning and maximum performance. Real commands, real results. Die vollständige technische Anleitung zur Installation, Wartung, Tiefenreinigung und maximalen Leistung. Echte Befehle, echte Ergebnisse.

🌐 GPS-971.com ✉️ info@gps-971.com
15SeccionesSectionsBereiche
80+ComandosCommandsBefehle
W10/11Compatible
2026ActualizadoUpdatedAktuell
¿Para quién es esta guía? Para técnicos, entusiastas y usuarios avanzados. Cada sección incluye los comandos exactos a ejecutar, dónde ejecutarlos y qué esperar. Siempre realiza un punto de restauración antes de cambios avanzados. Who is this guide for? For technicians, enthusiasts and advanced users. Each section includes the exact commands to run, where to run them and what to expect. Always create a restore point before advanced changes. Für wen ist dieser Leitfaden? Für Techniker, Enthusiasten und fortgeschrittene Benutzer. Jeder Abschnitt enthält die genauen Befehle, wo man sie ausführt und was zu erwarten ist. Erstelle immer einen Wiederherstellungspunkt vor erweiterten Änderungen.
🔧
01 · CMD · AdministradorAdministratorAdministrator

Reparación del Sistema — Lo primero siempreSystem Repair — Always firstSystemreparatur — Immer zuerst

SFC + DISM en el orden correcto. Archivos corruptos causan el 60% de los «PCs lentos».SFC + DISM in the correct order. Corrupt files cause 60% of «slow PCs».SFC + DISM in der richtigen Reihenfolge. Beschädigte Dateien verursachen 60% der «langsamen PCs».

Dificultad:Difficulty:Schwierigkeit:
BásicoBasicEinfach
Windows 10Windows 11 CMD⚠ Admin✔ Safe

El verificador de archivos del sistema (SFC) y la herramienta de imágenes (DISM) son los primeros pasos obligatorios. Ejecutarlos en orden garantiza que Windows tenga los archivos necesarios para repararse a sí mismo.The system file checker (SFC) and image management tool (DISM) are the mandatory first steps. Running them in order ensures Windows has the necessary files to repair itself.Der Systemdateiprüfer (SFC) und das Image-Verwaltungstool (DISM) sind die obligatorischen ersten Schritte. Die Ausführung in der richtigen Reihenfolge stellt sicher, dass Windows die notwendigen Dateien zur Selbstreparatur hat.

Paso 1 — Verificar archivos del sistema (SFC)Step 1 — Verify system files (SFC)Schritt 1 — Systemdateien prüfen (SFC)

CMD — Admin
:: Scan and repair corrupted system files sfc /scannow
ResultadoResultErgebnisSignificadoMeaningBedeutungAcciónActionAktion
No encontró infraccionesNo violations foundKeine Verstöße gefundenContinuar con DISMContinue with DISMMit DISM fortfahren
Encontró y reparó archivosFound and repaired filesDateien gefunden und repariert⚠️Reiniciar y repetirRestart and repeatNeustart und wiederholen
No pudo repararCould not repairKonnte nicht reparieren🔴Ejecutar DISM primeroRun DISM firstZuerst DISM ausführen

Paso 2 — Reparar imagen con DISMStep 2 — Repair image with DISMSchritt 2 — Image mit DISM reparieren

CMD — Admin
:: Quick health check (no repair) DISM /Online /Cleanup-Image /CheckHealth :: Deep scan of the image DISM /Online /Cleanup-Image /ScanHealth :: Repair the image (downloads files from Microsoft) DISM /Online /Cleanup-Image /RestoreHealth :: Run SFC again after DISM completes sfc /scannow

Crear punto de restauraciónCreate restore pointWiederherstellungspunkt erstellen

PowerShell — Admin
# Enable system protection on C: Enable-ComputerRestore -Drive "C:\" # Create restore point Checkpoint-Computer -Description "Before GPS-971 optimization" -RestorePointType "MODIFY_SETTINGS"
💡
GPS-971: Ejecuta siempre SFC → DISM → SFC en ese orden. DISM descarga archivos limpios de Microsoft, y el segundo SFC los usa para completar la reparación.Always run SFC → DISM → SFC in that order. DISM downloads clean files from Microsoft, and the second SFC uses them to complete the repair.Führe immer SFC → DISM → SFC in dieser Reihenfolge aus. DISM lädt saubere Dateien von Microsoft herunter, die der zweite SFC zur Fertigstellung der Reparatur verwendet.
🚀
02 · Administrador de TareasTask ManagerTask-Manager

Gestión de Arranque — El sistema inicia lentoStartup Management — System starts slowAutostart-Verwaltung — System startet langsam

Cada programa innecesario suma 2–8 segundos al arranque.Each unnecessary program adds 2–8 seconds to startup.Jedes unnötige Programm verlängert den Start um 2–8 Sekunden.

Dificultad:Difficulty:Schwierigkeit:
BásicoBasicEinfach
Windows 10Windows 11✔ Safe

Método VisualVisual MethodVisuelle Methode

  1. Presiona Ctrl + Shift + Esc para abrir el Administrador de Tareas.Press Ctrl + Shift + Esc to open Task Manager.Drücke Ctrl + Shift + Esc um den Task-Manager zu öffnen.
  2. Ve a la pestaña Aplicaciones de inicio.Go to the Startup Apps tab.Gehe zum Tab Autostart-Apps.
  3. Ordena por columna «Impacto de inicio» de mayor a menor.Sort by «Startup impact» column, highest first.Sortiere nach «Startwirkung», höchste zuerst.
  4. Haz clic derecho en los de impacto Alto que no necesites y selecciona Deshabilitar.Right-click items with High impact you don’t need and select Disable.Klicke mit der rechten Maustaste auf Einträge mit Hoher Wirkung, die du nicht benötigst, und wähle Deaktivieren.

Método por comandosCommand methodBefehlsmethode

CMD
:: List all startup programs wmic startup get caption,command,location :: Current user registry startup entries reg query HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run :: All users startup entries reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run :: Remove a startup entry (example: Discord) reg delete HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v "Discord" /f

Medir el tiempo de arranque realMeasure actual boot timeTatsächliche Startzeit messen

PowerShell
# Time since last boot (Get-Date) - (gcim Win32_OperatingSystem).LastBootUpTime # Boot event log (last 5 entries) Get-EventLog -LogName System -Source "Microsoft-Windows-Kernel-General" -Newest 5
⚠️
No elimines: Windows Security, controladores de hardware (audio, GPU), y procesos del sistema (ctfmon.exe, sihost.exe). Busca en Google antes de eliminar cualquier entrada.Do not remove: Windows Security, hardware drivers (audio, GPU), and system processes (ctfmon.exe, sihost.exe). Google an entry before removing it.Nicht entfernen: Windows-Sicherheit, Hardwaretreiber (Audio, GPU) und Systemprozesse (ctfmon.exe, sihost.exe). Suche vor dem Entfernen eines Eintrags bei Google.
🧹
03 · CMD · PowerShell

Limpieza Profunda del SistemaDeep System CleanupTiefenbereinigung des Systems

Temporales, caché de actualizaciones y archivos huérfanos pueden acumular 20–50 GB.Temp files, update cache and orphaned files can accumulate 20–50 GB.Temporäre Dateien, Update-Cache und verwaiste Dateien können 20–50 GB ansammeln.

···
IntermedioIntermediateMittel
Windows 10Windows 11⚠ Admin✔ Safe
CMD — Admin
:: Clean user TEMP folder del /q /f /s %TEMP%\* :: Clean system TEMP folder del /q /f /s C:\Windows\Temp\* :: Clean Windows Update cache (stop service first) net stop wuauserv del /q /f /s C:\Windows\SoftwareDistribution\Download\* net start wuauserv :: Clean Prefetch folder del /q /f /s C:\Windows\Prefetch\* :: Empty Recycle Bin rd /s /q C:\$Recycle.bin

PowerShell — Limpieza avanzadaAdvanced cleanupErweiterte Bereinigung

PowerShell — Admin
# Reset Microsoft Store cache wsreset.exe # Run Disk Cleanup silently (all categories) cleanmgr.exe /sagerun:1 # Clean WinSxS folder (can free 3-6 GB) — PERMANENT, cannot be undone Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase # Delete event logs older than 30 days Get-EventLog -LogName Application -Before (Get-Date).AddDays(-30) | Remove-EventLog
⚠️
/ResetBase: Elimina los puntos de restauración de componentes. Es permanente pero muy efectivo. No lo uses si planeas desinstalar actualizaciones recientes./ResetBase: Removes component restore points. It’s permanent but very effective. Don’t use it if you plan to uninstall recent updates./ResetBase: Entfernt Komponenten-Wiederherstellungspunkte. Es ist dauerhaft, aber sehr effektiv. Verwende es nicht, wenn du planst, aktuelle Updates zu deinstallieren.
04 · CMD · Panel de ControlControl PanelSystemsteuerung

Planes de Energía — Máximo RendimientoPower Plans — Maximum PerformanceEnergiepläne — Maximale Leistung

Desbloquea el plan oculto «Máximo rendimiento» y ajusta el procesador.Unlock the hidden «Ultimate Performance» plan and tune the processor.Entsperre den versteckten «Ultimative Leistung»-Plan und optimiere den Prozessor.

···
Windows 10Windows 11⚠ Admin
🔋
Solo para PC de escritorio o portátiles conectados a la red eléctrica. En batería reduce la autonomía significativamente.For desktop PCs or laptops plugged in only. On battery this significantly reduces runtime.Nur für Desktop-PCs oder Laptops am Stromnetz. Im Akkubetrieb reduziert dies die Laufzeit erheblich.
CMD — Admin
:: List all available power plans powercfg /list :: Unlock hidden "Ultimate Performance" plan powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61 :: Activate High Performance directly powercfg /setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c :: Check which plan is currently active powercfg /getactivescheme :: List devices that can wake the PC unnecessarily powercfg /devicequery wake_armed :: Generate battery health report (laptops) powercfg /batteryreport /output C:\battery-report.html :: Generate full energy efficiency report powercfg /energy /output C:\energy-report.html

Tras ejecutar el primer comando, ve a Panel de Control → Opciones de energía → Mostrar planes adicionales y selecciona «Máximo rendimiento».After running the first command, go to Control Panel → Power Options → Show additional plans and select «Ultimate Performance».Nach dem Ausführen des ersten Befehls gehe zu Systemsteuerung → Energieoptionen → Weitere Pläne anzeigen und wähle «Ultimative Leistung».

🌐
05 · CMD · Netsh · PowerShell

Optimización y Reparación de RedNetwork Optimization & RepairNetzwerkoptimierung & Reparatur

Desde flush DNS hasta diagnóstico avanzado de latencia.From DNS flush to advanced latency diagnostics.Von DNS-Flush bis zur erweiterten Latenzdiagnose.

···
Windows 10Windows 11⚠ Admin

Reparación completa (secuencia recomendada)Full repair (recommended sequence)Vollständige Reparatur (empfohlene Reihenfolge)

CMD — Admin
:: 1. Release current IP ipconfig /release :: 2. Flush DNS cache ipconfig /flushdns :: 3. Renew IP ipconfig /renew :: 4. Reset Winsock catalog netsh winsock reset :: 5. Reset TCP/IP stack netsh int ip reset C:\tcpreset.log :: 6. Reset IPv6 netsh int ipv6 reset :: RESTART the computer after these steps

Optimización TCP y DNSTCP & DNS optimizationTCP & DNS-Optimierung

CMD — Admin
:: Enable Receive Side Scaling (RSS) netsh int tcp set global rss=enabled :: Enable receive auto-tuning netsh int tcp set global autotuninglevel=normal :: Disable Nagle (reduces latency — great for gaming) netsh int tcp set global nodelay=1 :: Show current TCP global settings netsh int tcp show global :: Set DNS to Google (primary) and Cloudflare (secondary) netsh interface ip set dns "Ethernet" static 8.8.8.8 netsh interface ip add dns "Ethernet" 1.1.1.1 index=2

PowerShell — Diagnóstico avanzadoAdvanced diagnosticsErweiterte Diagnose

PowerShell
# Connectivity test with traceroute Test-NetConnection google.com -TraceRoute # Test specific port (e.g. 443 HTTPS) Test-NetConnection google.com -Port 443 # Extended ping with statistics Test-Connection 8.8.8.8 -Count 10 # Active network adapters and IPs Get-NetAdapter | Where-Object {$_.Status -eq "Up"} # Network card speed Get-NetAdapter | Select-Object Name, LinkSpeed, Status
💾
06 · CMD · chkdsk · PowerShell

Gestión de Disco — HDD, SSD y NVMeDisk Management — HDD, SSD & NVMeFestplattenverwaltung — HDD, SSD & NVMe

TRIM para SSD, CHKDSK para errores, análisis SMART y optimización por tipo.TRIM for SSD, CHKDSK for errors, SMART analysis and type-specific optimization.TRIM für SSD, CHKDSK für Fehler, SMART-Analyse und typenspezifische Optimierung.

···
Windows 10Windows 11⚠ Admin

🖴 HDD

Usa desfragmentación tradicional. Windows la programa automáticamente los miércoles.Use traditional defragmentation. Windows schedules it automatically on Wednesdays.Verwende traditionelle Defragmentierung. Windows plant sie automatisch mittwochs.

⚡ SSD / NVMe

NUNCA desfragmentes. Usa TRIM. Windows lo ejecuta semanalmente de forma automática.NEVER defragment. Use TRIM. Windows runs it automatically every week.NIE defragmentieren. Verwende TRIM. Windows führt es automatisch wöchentlich aus.

CMD — Admin
:: Check C: without repairing (safe, no restart needed) chkdsk C: /scan :: Repair C: (scheduled for next reboot) chkdsk C: /f /r /x :: Optimize SSD (runs TRIM manually) defrag C: /O /U /V :: Defragment HDD manually defrag C: /U /V :: Check disk SMART health status wmic diskdrive get status, model, size

PowerShell — Análisis avanzadoAdvanced analysisErweiterte Analyse

PowerShell — Admin
# View all physical disks Get-PhysicalDisk | Select-Object FriendlyName, MediaType, Size, HealthStatus # Disk usage per volume Get-Volume | Select-Object DriveLetter, FileSystemLabel, Size, SizeRemaining, HealthStatus # Optimize all volumes Get-Volume | Optimize-Volume -Verbose # Find large files over 1GB Get-ChildItem C:\ -Recurse -ErrorAction SilentlyContinue | Where-Object {$_.Length -gt 1GB} | Sort-Object Length -Descending | Select-Object FullName, @{N="Size_GB";E={[math]::Round($_.Length/1GB,2)}}
🛡️
07 · Configuración · RegistroSettings · RegistryEinstellungen · Registrierung

Privacidad — Telemetría y RastreoPrivacy — Telemetry & TrackingDatenschutz — Telemetrie & Tracking

Windows envía datos a Microsoft por defecto. Aprende a controlarlo sin romper el sistema.Windows sends data to Microsoft by default. Learn to control it without breaking the system.Windows sendet standardmäßig Daten an Microsoft. Lerne es zu kontrollieren, ohne das System zu beschädigen.

···
Windows 10Windows 11⚠ Admin
ℹ️
No es posible eliminar al 100% la telemetría sin comprometer la estabilidad. El objetivo es minimizarla de forma segura.It’s not possible to eliminate 100% of telemetry without compromising stability. The goal is to safely minimize it.Es ist nicht möglich, 100% der Telemetrie zu eliminieren, ohne die Stabilität zu beeinträchtigen. Das Ziel ist eine sichere Minimierung.

Configuración visual (sin riesgos)Visual settings (no risk)Visuelle Einstellungen (risikolos)

  • Diagnóstico: Configuración → Privacidad y seguridad → Comentarios y diagnósticos → Datos de diagnóstico: Necesarios únicamente.Diagnostics: Settings → Privacy & security → Diagnostics & feedback → Diagnostic data: Required only.Diagnose: Einstellungen → Datenschutz → Diagnose & Feedback → Diagnosedaten: Erforderlich.
  • ID de publicidad: Configuración → Privacidad → General → Desactiva «Permitir que las apps usen mi ID de publicidad».Advertising ID: Settings → Privacy → General → Disable «Let apps use advertising ID».Werbe-ID: Einstellungen → Datenschutz → Allgemein → Deaktiviere «Apps die Verwendung der Werbe-ID erlauben».
  • Historial de actividades: Configuración → Privacidad → Historial de actividades → Desactiva todo.Activity history: Settings → Privacy → Activity history → Disable all.Aktivitätsverlauf: Einstellungen → Datenschutz → Aktivitätsverlauf → Alles deaktivieren.
  • Micrófono/Cámara: Revisa qué apps tienen acceso en Configuración → Privacidad.Microphone/Camera: Review which apps have access in Settings → Privacy.Mikrofon/Kamera: Überprüfe welche Apps Zugriff haben unter Einstellungen → Datenschutz.

Deshabilitar telemetría por registroDisable telemetry via registryTelemetrie über Registrierung deaktivieren

CMD — Admin
:: Set telemetry to minimum level (0=Security, 1=Basic, 2=Enhanced, 3=Full) reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v AllowTelemetry /t REG_DWORD /d 1 /f :: Disable "Connected User Experiences and Telemetry" service sc config DiagTrack start= disabled sc stop DiagTrack :: Disable application compatibility data collection reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v DisableInventory /t REG_DWORD /d 1 /f :: Disable Customer Experience Improvement Program reg add "HKLM\SOFTWARE\Policies\Microsoft\SQMClient\Windows" /v CEIPEnable /t REG_DWORD /d 0 /f
🗑️
08 · PowerShell · Winget

Eliminar Bloatware — Apps preinstaladasRemove Bloatware — Pre-installed AppsBloatware entfernen — Vorinstallierte Apps

Windows 11 incluye hasta 30 apps innecesarias. Elimínalas con PowerShell o Winget.Windows 11 includes up to 30 unnecessary apps. Remove them with PowerShell or Winget.Windows 11 enthält bis zu 30 unnötige Apps. Entferne sie mit PowerShell oder Winget.

···
Windows 10Windows 11PowerShell⚠ Admin
PowerShell — Admin
# View all installed apps Get-AppxPackage -AllUsers | Select-Object Name, PackageFullName | Sort-Object Name # --- REMOVE INDIVIDUAL APPS --- # Entertainment / Games Get-AppxPackage -AllUsers *ZuneMusic* | Remove-AppxPackage Get-AppxPackage -AllUsers *ZuneVideo* | Remove-AppxPackage Get-AppxPackage -AllUsers *Xbox* | Remove-AppxPackage Get-AppxPackage -AllUsers *MicrosoftSolitaireCollection* | Remove-AppxPackage # Unnecessary Microsoft apps Get-AppxPackage -AllUsers *BingWeather* | Remove-AppxPackage Get-AppxPackage -AllUsers *BingNews* | Remove-AppxPackage Get-AppxPackage -AllUsers *MicrosoftTeams* | Remove-AppxPackage Get-AppxPackage -AllUsers *Cortana* | Remove-AppxPackage Get-AppxPackage -AllUsers *3DBuilder* | Remove-AppxPackage Get-AppxPackage -AllUsers *MixedReality* | Remove-AppxPackage Get-AppxPackage -AllUsers *SkypeApp* | Remove-AppxPackage # Social media / third-party pre-installs Get-AppxPackage -AllUsers *Facebook* | Remove-AppxPackage Get-AppxPackage -AllUsers *Instagram* | Remove-AppxPackage Get-AppxPackage -AllUsers *TikTok* | Remove-AppxPackage

Winget — Gestor moderno de paquetesModern package managerModerner Paketmanager

Terminal / PowerShell
# List all installed apps winget list # Search for an app winget search "VLC" # Install apps (VLC, 7-Zip, Chrome) winget install VideoLAN.VLC winget install 7zip.7zip winget install Google.Chrome # Update all apps at once winget upgrade --all # Uninstall an app winget uninstall "Microsoft Teams"
🚫
NO elimines: Windows Security, Microsoft.UI.Xaml, Microsoft.VCLibs, StorePurchaseApp. Son dependencias del sistema.DO NOT remove: Windows Security, Microsoft.UI.Xaml, Microsoft.VCLibs, StorePurchaseApp. These are system dependencies.NICHT entfernen: Windows Security, Microsoft.UI.Xaml, Microsoft.VCLibs, StorePurchaseApp. Dies sind Systemabhängigkeiten.
🎮
09 · Configuración · Registro · GPUSettings · Registry · GPUEinstellungen · Registrierung · GPU

Optimización Gaming — Más FPS, menos latenciaGaming Optimization — More FPS, less latencyGaming-Optimierung — Mehr FPS, weniger Latenz

Game Mode, GPU Scheduling acelerado, configuración de GPU.Game Mode, hardware-accelerated GPU Scheduling, GPU settings.Game-Modus, hardware-beschleunigtes GPU-Scheduling, GPU-Einstellungen.

···
AvanzadoAdvancedFortgeschritten
Windows 10Windows 11⚠ Admin

Configuración visual rápidaQuick visual settingsSchnelle visuelle Einstellungen

  • Modo Juego: Configuración → Juegos → Modo Juego → Activo. Prioriza CPU/GPU para el juego.Game Mode: Settings → Gaming → Game Mode → On. Prioritizes CPU/GPU for the game.Spielmodus: Einstellungen → Gaming → Spielmodus → Ein. Priorisiert CPU/GPU für das Spiel.
  • GPU Scheduling: Configuración → Sistema → Pantalla → Gráficos → Hardware-Accelerated GPU Scheduling → Activo. (Requiere GPU NVIDIA RTX 20xx+ o AMD RX 5000+)GPU Scheduling: Settings → System → Display → Graphics → Hardware-Accelerated GPU Scheduling → On. (Requires NVIDIA RTX 20xx+ or AMD RX 5000+)GPU-Scheduling: Einstellungen → System → Anzeige → Grafik → Hardwarebeschleunigtes GPU-Scheduling → Ein. (Erfordert NVIDIA RTX 20xx+ oder AMD RX 5000+)
  • Frecuencia máxima: Configuración → Sistema → Pantalla → Configuración avanzada → Elige la frecuencia máxima de tu monitor.Max refresh rate: Settings → System → Display → Advanced display settings → Choose your monitor’s max refresh rate.Maximale Bildrate: Einstellungen → System → Anzeige → Erweiterte Anzeigeeinstellungen → Wähle die maximale Bildwiederholrate.
  • Xbox Game Bar: Configuración → Juegos → Xbox Game Bar → Desactivado (si no lo usas).Xbox Game Bar: Settings → Gaming → Xbox Game Bar → Off (if you don’t use it).Xbox Game Bar: Einstellungen → Gaming → Xbox Game Bar → Aus (wenn du sie nicht verwendest).
CMD — Admin
:: Optimize scheduler priority for foreground threads reg add "HKLM\SYSTEM\CurrentControlSet\Control\PriorityControl" /v Win32PrioritySeparation /t REG_DWORD /d 26 /f :: Disable HPET (improves latency on some systems) bcdedit /deletevalue useplatformclock :: Enable high-resolution timer bcdedit /set useplatformtick yes
🎯
Combo ganador: Plan Máximo Rendimiento + Desactivar TCP Nagle + GPU Scheduling + Win32Priority. Puede reducir el input lag entre 5 y 15 ms.Winning combo: Ultimate Performance plan + Disable TCP Nagle + GPU Scheduling + Win32Priority. Can reduce input lag by 5–15 ms.Gewinnende Kombination: Ultimativer Leistungsplan + TCP Nagle deaktivieren + GPU-Scheduling + Win32Priority. Kann den Input-Lag um 5–15 ms reduzieren.
📊
10 · CMD · PowerShell · WinSAT

Diagnóstico Completo del SistemaFull System DiagnosticsVollständige Systemdiagnose

Información detallada de hardware, benchmarks y detección de cuellos de botella.Detailed hardware info, benchmarks and bottleneck detection.Detaillierte Hardware-Informationen, Benchmarks und Engpass-Erkennung.

···
Windows 10Windows 11
CMD
:: Full system information (CPU, RAM, motherboard, BIOS) systeminfo :: GUI system summary msinfo32 :: CPU details wmic cpu get name, numberofcores, numberoflogicalprocessors, maxclockspeed :: RAM modules info wmic memorychip get capacity, speed, manufacturer, memorytype :: GPU info + driver version wmic path win32_VideoController get name, driverversion, adapterram :: Run official Windows benchmark (WinSAT) winsat formal :: Query last benchmark results winsat query

PowerShell — Monitoreo en tiempo realReal-time monitoringEchtzeit-Überwachung

PowerShell
# Full system info Get-ComputerInfo # Top 10 CPU-consuming processes Get-Process | Sort-Object CPU -Descending | Select-Object -First 10 Name, CPU, WorkingSet # Top 10 memory-consuming processes Get-Process | Sort-Object WorkingSet -Descending | Select-Object -First 10 Name, @{N="RAM_MB";E={[math]::Round($_.WorkingSet/1MB,1)}} # Open Performance Monitor perfmon # Open Resource Monitor (more detailed than Task Manager) resmon
🔒
11 · PowerShell · Windows Defender

Seguridad — Windows Defender y FirewallSecurity — Windows Defender & FirewallSicherheit — Windows Defender & Firewall

Gestionar antivirus y firewall desde comandos. Defender en 2026 es completamente competente.Manage antivirus and firewall from commands. Defender in 2026 is fully competent.Antivirus und Firewall per Befehl verwalten. Defender ist 2026 vollständig kompetent.

···
Windows 10Windows 11PowerShell⚠ Admin
PowerShell — Admin
# Check Windows Defender status Get-MpComputerStatus | Select-Object AntivirusEnabled, RealTimeProtectionEnabled, AntispywareEnabled, AntispywareSignatureLastUpdated, AMServiceEnabled # Update virus definitions manually Update-MpSignature # Quick scan Start-MpScan -ScanType QuickScan # Full scan Start-MpScan -ScanType FullScan # Scan specific folder Start-MpScan -ScanType CustomScan -ScanPath "C:\Users\Downloads" # View detected threats history Get-MpThreat

Firewall

CMD — Admin
:: Show firewall status for all profiles netsh advfirewall show allprofiles :: Enable firewall on all profiles netsh advfirewall set allprofiles state on :: View all firewall rules netsh advfirewall firewall show rule name=all :: Open advanced firewall GUI wf.msc :: View active network connections with process names netstat -b -o -n
Recomendación 2026: Windows Defender es suficiente si se combina con sentido común. No instales antivirus gratuitos de terceros: muchos recopilan datos y ralentizan el sistema.2026 Recommendation: Windows Defender is sufficient when combined with common sense. Don’t install free third-party antiviruses: many collect data and slow down the system.Empfehlung 2026: Windows Defender ist ausreichend, kombiniert mit gesundem Menschenverstand. Installiere keine kostenlosen Drittanbieter-Antivirenprogramme: viele sammeln Daten und verlangsamen das System.
🖥️
12 · Configuración · sysdm.cplSettings · sysdm.cplEinstellungen · sysdm.cpl

Rendimiento Visual y AnimacionesVisual Performance & AnimationsVisuelle Leistung & Animationen

Equivalente moderno al «desactivar tema Luna» de XP. Transparencias, animaciones Mica/Acrylic.Modern equivalent of XP’s «disable Luna theme». Transparency, Mica/Acrylic effects.Modernes Äquivalent zum XP «Luna-Thema deaktivieren». Transparenz, Mica/Acrylic-Effekte.

···
BásicoBasicEinfach
Windows 10Windows 11✔ Safe

Método rápidoQuick methodSchnelle Methode

  1. Presiona Win + R, escribe sysdm.cpl y pulsa Enter.Press Win + R, type sysdm.cpl and press Enter.Drücke Win + R, gib sysdm.cpl ein und drücke Enter.
  2. Pestaña Opciones avanzadas → Rendimiento → Configuración.Advanced tab → Performance → Settings.Tab Erweitert → Leistung → Einstellungen.
  3. Selecciona «Ajustar para obtener el mejor rendimiento».Select «Adjust for best performance».Wähle «Für optimale Leistung anpassen».
  4. Vuelve a marcar solo: «Suavizar bordes de fuentes» y «Mostrar miniaturas en lugar de iconos».Re-check only: «Smooth edges of screen fonts» and «Show thumbnails instead of icons».Nur wieder aktivieren: «Schriftarten-Kantenglättung» und «Miniaturansichten statt Symbolen anzeigen».
CMD — Admin
:: Disable window animations reg add "HKCU\Control Panel\Desktop\WindowMetrics" /v MinAnimate /t REG_SZ /d 0 /f :: Disable taskbar transparency reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v EnableTransparency /t REG_DWORD /d 0 /f :: Disable taskbar animations reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarAnimations /t REG_DWORD /d 0 /f :: Restart Explorer to apply changes taskkill /f /im explorer.exe && start explorer.exe
🔄
13 · PowerShell · ServiciosServicesDienste

Gestión de Actualizaciones de WindowsWindows Update ManagementWindows-Update-Verwaltung

Controla cuándo y cómo se actualiza Windows. Pausa y programa actualizaciones.Control when and how Windows updates. Pause and schedule updates.Steuere wann und wie Windows aktualisiert. Updates pausieren und planen.

···
Windows 10Windows 11⚠ Admin
🚫
No desactives Windows Update permanentemente. Las actualizaciones de seguridad son críticas. Puedes pausarlas, pero desactivarlas indefinidamente deja el sistema expuesto.Don’t permanently disable Windows Update. Security updates are critical. You can pause them, but disabling them indefinitely leaves the system exposed.Windows Update nicht dauerhaft deaktivieren. Sicherheitsupdates sind kritisch. Du kannst sie pausieren, aber eine dauerhafte Deaktivierung lässt das System ungeschützt.
CMD — Admin
:: Check for pending updates wuauclt /detectnow :: Force search and install updates wuauclt /updatenow :: Stop Windows Update service temporarily net stop wuauserv net stop bits net stop dosvc :: Resume Windows Update service net start wuauserv net start bits net start dosvc

PSWindowsUpdate

PowerShell — Admin
# Install PSWindowsUpdate module (once) Install-Module -Name PSWindowsUpdate -Force # View available updates Get-WindowsUpdate # Install all available updates Install-WindowsUpdate -AcceptAll -AutoReboot # Install security updates only Install-WindowsUpdate -Category "Security Updates" -AcceptAll
🗂️
14 · Regedit · CMD

Tweaks de Registro Útiles y SegurosUseful & Safe Registry TweaksNützliche & sichere Registrierungs-Tweaks

Ajustes selectivos que aceleran el sistema sin comprometer la estabilidad.Selective adjustments that speed up the system without compromising stability.Selektive Anpassungen, die das System beschleunigen, ohne die Stabilität zu beeinträchtigen.

···
AvanzadoAdvancedFortgeschritten
Windows 10Windows 11⚠ Admin
⚠️
Precaución máxima. Antes de modificar el registro, exporta una copia: abre regedit → Archivo → Exportar → Todo. Guarda el .reg en lugar seguro.Maximum caution. Before modifying the registry, export a backup: open regedit → File → Export → All. Save the .reg file in a safe place.Äußerste Vorsicht. Vor dem Ändern der Registrierung ein Backup exportieren: öffne regedit → Datei → Exportieren → Alle. Speichere die .reg-Datei sicher.
CMD — Admin
:: Speed up context menu (right-click response) reg add "HKCU\Control Panel\Desktop" /v MenuShowDelay /t REG_SZ /d 20 /f :: Reduce wait time before closing unresponsive processes reg add "HKCU\Control Panel\Desktop" /v WaitToKillAppTimeout /t REG_SZ /d 2000 /f reg add "HKCU\Control Panel\Desktop" /v HungAppTimeout /t REG_SZ /d 1000 /f :: Reduce system service shutdown wait time reg add "HKLM\SYSTEM\CurrentControlSet\Control" /v WaitToKillServiceTimeout /t REG_SZ /d 2000 /f :: Disable Windows Tips and suggestions reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SoftLandingEnabled /t REG_DWORD /d 0 /f reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SystemPaneSuggestionsEnabled /t REG_DWORD /d 0 /f :: Disable driver search via Windows Update (faster driver installs) reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching" /v SearchOrderConfig /t REG_DWORD /d 0 /f
💡
15 · Checklist

Checklist de Mantenimiento PeriódicoPeriodic Maintenance ChecklistPeriodische Wartungs-Checkliste

Qué hacer cada semana, mes, trimestre y año para mantener Windows en perfecto estado.What to do weekly, monthly, quarterly and annually to keep Windows in perfect condition.Was wöchentlich, monatlich, vierteljährlich und jährlich zu tun ist, um Windows in perfektem Zustand zu halten.

📅 SemanalWeeklyWöchentlich

  • ☐ Reiniciar el PC☐ Restart PC☐ PC neu starten
  • ☐ Comprobar actualizaciones☐ Check for updates☐ Updates prüfen
  • winget upgrade --all
  • ☐ Vaciar papelera☐ Empty recycle bin☐ Papierkorb leeren

📆 MensualMonthlyMonatlich

  • sfc /scannow
  • ☐ Limpiar carpetas TEMP☐ Clean TEMP folders☐ TEMP-Ordner bereinigen
  • ☐ Revisar apps en el inicio☐ Review startup apps☐ Autostart-Apps prüfen
  • ☐ Escaneo completo Defender☐ Full Defender scan☐ Vollständiger Defender-Scan

📊 TrimestralQuarterlyVierteljährlich

  • DISM /RestoreHealth
  • ☐ TRIM / optimización de disco☐ TRIM / disk optimization☐ TRIM / Festplattenoptimierung
  • ☐ Revisar drivers del equipo☐ Check hardware drivers☐ Hardware-Treiber prüfen
  • ☐ Limpiar caché de actualizaciones☐ Clear update cache☐ Update-Cache leeren

🗓️ AnualAnnuallyJährlich

  • ☐ Instalación limpia (opcional)☐ Clean install (optional)☐ Neuinstallation (optional)
  • ☐ Salud SMART del disco☐ Disk SMART health☐ Festplatten-SMART-Gesundheit
  • ☐ Limpieza física (polvo)☐ Physical cleaning (dust)☐ Physische Reinigung (Staub)
  • ☐ Verificar copias de seguridad☐ Verify backups☐ Backups überprüfen
🏆
GPS-971: Un sistema limpio y actualizado siempre superará a uno lleno de tweaks. Prioriza la limpieza y los puntos de restauración sobre cualquier ajuste avanzado. Menos es más.A clean, updated system will always outperform one full of tweaks. Prioritize cleaning and restore points over any advanced tuning. Less is more.Ein sauberes, aktuelles System wird immer besser abschneiden als eines voller Tweaks. Priorisiere Reinigung und Wiederherstellungspunkte vor erweiterten Einstellungen. Weniger ist mehr.

Comandos de emergencia — «El PC no arranca bien»Emergency commands — «PC won’t boot properly»Notfallbefehle — «PC startet nicht richtig»

CMD — WinRE
:: Rebuild BCD (Boot Configuration Data) — if Windows won't start bootrec /fixmbr bootrec /fixboot bootrec /scanos bootrec /rebuildbcd :: Open System Restore wizard rstrui.exe :: Reset Windows keeping personal files systemreset --factoryreset
Instalación y Mantenimiento de Computadoras · Desde 2007Computer Installation and Maintenance · Since 2007Computer-Installation und Wartung · Seit 2007
© 2007–2026 GPS-971.com · Todos los derechos reservadosAll rights reservedAlle Rechte vorbehalten

GPS-971.com. Todos los derechos reservados. Desarrollado por www.gps-971.com

GPS-971.com. Todos los derechos reservados. Desarrollado por www.gps-971.com