Disable these 7 Background Services in Windows to Boost Performance
Copy the below script to your a powershell window running as an administrator
# Disable these 7 Background Services in Windows to Boost Performance! # https://www.youtube.com/watch?v=RMS4-05vQxY # Connected User Experiences and Telemetry Stop-Service -Name "DiagTrack" -Force Set-Service -Name "DiagTrack" -StartupType Disabled # Device Management Wireless Application Protocol (WAP) Push message Routing Service Stop-Service -Name "dmwappushservice" -Force Set-Service -Name "dmwappushservice" -StartupType Disabled # Program Compatibility Assistant Service Stop-Service -Name "PcaSvc" -Force Set-Service -Name "PcaSvc" -StartupType Disabled # Windows Biometric Service Stop-Service -Name "WbioSrvc" -Force Set-Service -Name "WbioSrvc" -StartupType Disabled # Windows Search (Windows file indexing service) Stop-Service -Name "WSearch" -Force Set-Service -Name "WSearch" -StartupType Disabled # Windows Error Reporting Service (sends info to MicroSoft about program crashes) Stop-Service -Name "WerSvc" -Force Set-Service -Name "WerSvc" -StartupType Disabled # Diagnostic Policy Service Stop-Service -Name "DPS" -Force Set-Service -Name "DPS" -StartupType Disabled