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.
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
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».
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)
:: Scan and repair corrupted system files
sfc /scannow| ResultadoResultErgebnis | SignificadoMeaningBedeutung | AcciónActionAktion |
|---|---|---|
| No encontró infraccionesNo violations foundKeine Verstöße gefunden | ✅ | Continuar 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
:: 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 /scannowCrear punto de restauraciónCreate restore pointWiederherstellungspunkt erstellen
# Enable system protection on C:
Enable-ComputerRestore -Drive "C:\"
# Create restore point
Checkpoint-Computer -Description "Before GPS-971 optimization" -RestorePointType "MODIFY_SETTINGS"
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
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.
Método VisualVisual MethodVisuelle Methode
- Presiona
Ctrl + Shift + Escpara abrir el Administrador de Tareas.PressCtrl + Shift + Escto open Task Manager.DrückeCtrl + Shift + Escum den Task-Manager zu öffnen. - Ve a la pestaña Aplicaciones de inicio.Go to the Startup Apps tab.Gehe zum Tab Autostart-Apps.
- Ordena por columna «Impacto de inicio» de mayor a menor.Sort by «Startup impact» column, highest first.Sortiere nach «Startwirkung», höchste zuerst.
- 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
:: 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" /fMedir el tiempo de arranque realMeasure actual boot timeTatsächliche Startzeit messen
# 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 5ctfmon.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
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.
:: 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.binPowerShell — Limpieza avanzadaAdvanced cleanupErweiterte Bereinigung
# 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
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.
···
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.
:: 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.htmlTras 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.
···
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.
Reparación completa (secuencia recomendada)Full repair (recommended sequence)Vollständige Reparatur (empfohlene Reihenfolge)
:: 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 stepsOptimización TCP y DNSTCP & DNS optimizationTCP & DNS-Optimierung
:: 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=2PowerShell — Diagnóstico avanzadoAdvanced diagnosticsErweiterte Diagnose
# 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.
···
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.
🖴 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.
:: 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, sizePowerShell — Análisis avanzadoAdvanced analysisErweiterte Analyse
# 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.
···
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.
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
:: 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.
···
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.
# 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-AppxPackageWinget — Gestor moderno de paquetesModern package managerModerner Paketmanager
# 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"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
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.
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).
:: 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
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.
···
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.
:: 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 queryPowerShell — Monitoreo en tiempo realReal-time monitoringEchtzeit-Überwachung
# 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.
···
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.
# 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-MpThreatFirewall
:: 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
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
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.
Método rápidoQuick methodSchnelle Methode
- Presiona
Win + R, escribesysdm.cply pulsa Enter.PressWin + R, typesysdm.cpland press Enter.DrückeWin + R, gibsysdm.cplein und drücke Enter. - Pestaña Opciones avanzadas → Rendimiento → Configuración.Advanced tab → Performance → Settings.Tab Erweitert → Leistung → Einstellungen.
- Selecciona «Ajustar para obtener el mejor rendimiento».Select «Adjust for best performance».Wähle «Für optimale Leistung anpassen».
- 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».
:: 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.
···
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.
:: 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 dosvcPSWindowsUpdate
# 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
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.
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.:: 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.
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
Comandos de emergencia — «El PC no arranca bien»Emergency commands — «PC won’t boot properly»Notfallbefehle — «PC startet nicht richtig»
:: 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