@echo off title Restaurar servicios Windows 10 - Valores por defecto echo Restaurando servicios a su estado original... net start >nul sc config DiagTrack start= auto sc config dmwappushservice start= auto sc config WSearch start= auto sc config SysMain start= auto sc config WbioSrvc start= demand sc config TabletInputService start= manual sc config lfsvc start= manual sc config XblAuthManager start= manual sc config XboxNetApiSvc start= manual sc config Fax start= manual sc config RemoteRegistry start= disabled sc config MessagingService start= manual sc config PcaSvc start= auto
| Métrica | Antes | Después | Mejora | | :--- | :--- | :--- | :--- | | | 1 min 20 seg | 48 seg | -40% | | Procesos en segundo plano | 142 | 98 | -31% | | Uso de RAM en reposo | 2.1 GB | 1.6 GB | -500 MB | | Lectura de disco (idle) | 35% | 2% | Casi nula | deshabilitar servicios innecesarios windows 10 bat
echo. echo [3/3] Servicio de busqueda de Windows (WSearch) echo Si usa "Everything" o similar, deshabilitelo. choice /C SN /M "¿Deshabilitar Windows Search? (S=Si / N=No)" if errorlevel 2 goto :skip_search if errorlevel 1 ( net stop WSearch >nul 2>&1 sc config WSearch start= disabled >nul 2>&1 echo Windows Search deshabilitado. ) :skip_search @echo off title Restaurar servicios Windows 10 -