Deshabilitar Servicios Innecesarios Windows: 10 Bat

Solución: Ejecuta el script de restauración o ve a services.msc, busca Print Spooler, ponlo en "Automático" e inícialo manualmente.

Este script deshabilita algunos servicios que pueden considerarse innecesarios para el usuario promedio, pero que podrían ser cruciales en ciertos escenarios o entornos de red específicos. Siempre es una buena práctica hacer un punto de restauración del sistema antes de realizar cambios significativos.

@echo off :: Check for administrative privileges net session >nul 2>&1 if %errorLevel% == 0 ( echo Administrative permissions confirmed. ) else ( echo Please run this script as Administrator. pause exit )

echo Disabling unnecessary Windows 10 services...

:: --- Telemetry and Data Collection --- sc stop "DiagTrack" sc config "DiagTrack" start= disabled sc stop "dmwappushservice" sc config "dmwappushservice" start= disabled

:: --- Remote Desktop (Disable if you don't use it) --- sc stop "TermService" sc config "TermService" start= disabled sc stop "SessionEnv" sc config "SessionEnv" start= disabled deshabilitar servicios innecesarios windows 10 bat

:: --- Print Spooler (Disable if you DON'T have a printer) --- :: sc stop "Spooler" :: sc config "Spooler" start= disabled

:: --- Retail Demo Service --- sc stop "RetailDemo" sc config "RetailDemo" start= disabled

:: --- Downloaded Maps Manager --- sc stop "MapsBroker" sc config "MapsBroker" start= disabled

:: --- Windows Insider Service --- sc stop "wisvc" sc config "wisvc" start= disabled

:: --- Touch Keyboard and Handwriting (Disable for desktops/non-touch) --- sc stop "TabletInputService" sc config "TabletInputService" start= disabled Solución: Ejecuta el script de restauración o ve

echo Optimization complete. Some changes may require a restart. pause Use code with caution. Copied to clipboard How to use it: Right-click optimize.bat Run as Administrator your computer to ensure all services are fully stopped. What this script targets: Telemetry (DiagTrack): Stops Windows from sending usage data to Microsoft. Retail Demo:

Removes the background service used for store display models. MapsBroker: Disables background updates for offline maps. TabletInputService:

Stops touch-screen features (safe for standard mouse/keyboard users). Customization Tip: I have commented out the Print Spooler own a printer, remove the from those two lines to disable it and save more RAM. integration as well? AI responses may include mistakes. Learn more

Optimizar Windows 10 mediante la desactivación de servicios puede reducir el uso de CPU y memoria, disminuyendo el número de procesos y hilos activos en segundo plano . El uso de un archivo Removes the background service used for store display models

(script de procesamiento por lotes) permite automatizar esta tarea de forma rápida sin necesidad de navegar manualmente por la interfaz de usuario. ⚠️ Precauciones Críticas Antes de Empezar

Disable unused services (for me) on Windows 10 - GitHub Gist

In the quest for a leaner, faster, and more secure Windows 10 experience, few tactics offer as much impact as disabling unnecessary background services. While the average user might rely on the services.msc GUI, true control—and repeatability—comes from automation. The humble batch file (.bat) remains a powerful, lightweight tool to declutter your system. This article explores the philosophy, risks, and practical creation of a service-disabling batch script.

| Before | After (typical) | |--------|----------------| | ~180 processes | ~120–140 processes | | 2.4 GB RAM usage | 1.8–2.0 GB RAM | | 45 services running | ~30 services running |

Results vary by hardware and Windows edition.


If something breaks, restore services by running this as Admin:

@echo off
sc config DiagTrack start= demand
sc config dmwappushservice start= auto
sc config WSearch start= auto
sc config SysMain start= auto
sc config wscsvc start= auto
sc config XblAuthManager start= manual
sc config XblGameSave start= manual
echo Services restored.
pause

7555
sg us //media.accobrandspartner.com/sections/leadimage.aspx?sku=THESKU&width=THEWIDTH&height=THEHEIGHT&language=us&country=sg&publicSite=1&brandID=6

Solución: Ejecuta el script de restauración o ve a services.msc, busca Print Spooler, ponlo en "Automático" e inícialo manualmente.

Este script deshabilita algunos servicios que pueden considerarse innecesarios para el usuario promedio, pero que podrían ser cruciales en ciertos escenarios o entornos de red específicos. Siempre es una buena práctica hacer un punto de restauración del sistema antes de realizar cambios significativos.

@echo off :: Check for administrative privileges net session >nul 2>&1 if %errorLevel% == 0 ( echo Administrative permissions confirmed. ) else ( echo Please run this script as Administrator. pause exit )

echo Disabling unnecessary Windows 10 services...

:: --- Telemetry and Data Collection --- sc stop "DiagTrack" sc config "DiagTrack" start= disabled sc stop "dmwappushservice" sc config "dmwappushservice" start= disabled

:: --- Remote Desktop (Disable if you don't use it) --- sc stop "TermService" sc config "TermService" start= disabled sc stop "SessionEnv" sc config "SessionEnv" start= disabled

:: --- Print Spooler (Disable if you DON'T have a printer) --- :: sc stop "Spooler" :: sc config "Spooler" start= disabled

:: --- Retail Demo Service --- sc stop "RetailDemo" sc config "RetailDemo" start= disabled

:: --- Downloaded Maps Manager --- sc stop "MapsBroker" sc config "MapsBroker" start= disabled

:: --- Windows Insider Service --- sc stop "wisvc" sc config "wisvc" start= disabled

:: --- Touch Keyboard and Handwriting (Disable for desktops/non-touch) --- sc stop "TabletInputService" sc config "TabletInputService" start= disabled

echo Optimization complete. Some changes may require a restart. pause Use code with caution. Copied to clipboard How to use it: Right-click optimize.bat Run as Administrator your computer to ensure all services are fully stopped. What this script targets: Telemetry (DiagTrack): Stops Windows from sending usage data to Microsoft. Retail Demo:

Removes the background service used for store display models. MapsBroker: Disables background updates for offline maps. TabletInputService:

Stops touch-screen features (safe for standard mouse/keyboard users). Customization Tip: I have commented out the Print Spooler own a printer, remove the from those two lines to disable it and save more RAM. integration as well? AI responses may include mistakes. Learn more

Optimizar Windows 10 mediante la desactivación de servicios puede reducir el uso de CPU y memoria, disminuyendo el número de procesos y hilos activos en segundo plano . El uso de un archivo

(script de procesamiento por lotes) permite automatizar esta tarea de forma rápida sin necesidad de navegar manualmente por la interfaz de usuario. ⚠️ Precauciones Críticas Antes de Empezar

Disable unused services (for me) on Windows 10 - GitHub Gist

In the quest for a leaner, faster, and more secure Windows 10 experience, few tactics offer as much impact as disabling unnecessary background services. While the average user might rely on the services.msc GUI, true control—and repeatability—comes from automation. The humble batch file (.bat) remains a powerful, lightweight tool to declutter your system. This article explores the philosophy, risks, and practical creation of a service-disabling batch script.

| Before | After (typical) | |--------|----------------| | ~180 processes | ~120–140 processes | | 2.4 GB RAM usage | 1.8–2.0 GB RAM | | 45 services running | ~30 services running |

Results vary by hardware and Windows edition.


If something breaks, restore services by running this as Admin:

@echo off
sc config DiagTrack start= demand
sc config dmwappushservice start= auto
sc config WSearch start= auto
sc config SysMain start= auto
sc config wscsvc start= auto
sc config XblAuthManager start= manual
sc config XblGameSave start= manual
echo Services restored.
pause