Optimize Windows 11: Safe Aggressive Script to Speed Up Your PC


Optimize Windows 11: Safe Aggressive Script to Speed Up Your PC


Introduction:
Windows 11 comes with a lot of background services and telemetry features that can slow down your PC, especially on older hardware. Many of these services are optional and not needed for home users. In this post, I’ll share a safe-aggressive batch script that disables non-essential services to help improve performance while avoiding critical system issues.

⚠️ Important: Always create a system restore point before running scripts that modify services.


What This Script Does

  • Disables non-essential services like Xbox, Maps, Fax, Remote Registry, Print Spooler (if unused), Touch Keyboard, Error Reporting, Biometric, Offline Files, OneSync, and telemetry.

  • Automatically checks if the service exists before trying to disable it — avoids errors.

  • Helps improve startup time, reduces RAM and CPU usage, and minimizes background processes.


How to Use

  1. Copy the code below into Notepad.

  2. Save the file as safe_aggressive_optimize.bat (choose All Files, not .txt).

  3. Right-click → Run as Administrator.

  4. Restart your PC to apply changes.


The Code

@echo off :: Safe-aggressive Windows 11 optimization :: Only disables services that exist on this PC :: Run as Administrator! echo Checking and disabling non-essential Windows services... :: List of services to disable set services=^ XblGameSave ^ XboxGipSvc ^ XboxNetApiSvc ^ MapsBroker ^ Fax ^ RemoteRegistry ^ seclogon ^ SCardSvr ^ Spooler ^ TabletInputService ^ WerSvc ^ WbioSrvc ^ CscService ^ DiagsTracking ^ dmwappushservice ^ XblAuthManager ^ AppXSvc ^ PrintWorkflowUserSvc ^ WMPNetworkSvc ^ OneSyncSvc :: Loop through each service for %%S in (%services%) do ( sc query "%%S" >nul 2>&1 if %errorlevel%==0 ( echo Disabling service: %%S sc config "%%S" start= disabled >nul ) else ( echo Skipping service: %%S (not installed) ) ) echo Done! Restart your PC to apply changes. pause

Notes & Tips

  • If you want to re-enable any service, run:

sc config <ServiceName> start= demand

or

sc config <ServiceName> start= auto
  • This script only disables non-essential services — your Windows system remains stable.

  • Use this on Home or personal PCs. Avoid corporate or domain-controlled computers.


Conclusion:
This script is a simple, safe way to speed up Windows 11 by disabling unnecessary background services. After running it and restarting your PC, you should notice faster startup, reduced background CPU/RAM usage, and smoother performance.


Subscribe Us on YouTube:https://www.youtube.com/channel/UCxAhv5XWrbpjvdfVBVEHCMA?sub_confirmation=1

Post a Comment

0 Comments