mirror of
https://github.com/Sycnex/Windows10Debloater.git
synced 2025-03-12 18:05:29 +00:00
I added a Windows 10 services disabler to disable useless windows 10 services to make your computer run faster
68 lines
5.4 KiB
PowerShell
68 lines
5.4 KiB
PowerShell
# Description:
|
|
# This script disables unwanted Windows services. If you do not want to disable
|
|
# certain services comment out the corresponding lines below. like this #use hastag to comment
|
|
|
|
$services = @(
|
|
"diagnosticshub.standardcollector.service" # Microsoft (R) Diagnostics Hub Standard Collector Service
|
|
"DiagTrack" # Diagnostics Tracking Service
|
|
"dmwappushservice" # WAP Push Message Routing Service (see known issues)
|
|
"lfsvc" # Geolocation Service
|
|
"MapsBroker" # Downloaded Maps Manager
|
|
"NetTcpPortSharing" # Net.Tcp Port Sharing Service
|
|
"RemoteAccess" # Routing and Remote Access
|
|
"RemoteRegistry" # Remote Registry
|
|
"SharedAccess" # Internet Connection Sharing (ICS)
|
|
"TrkWks" # Distributed Link Tracking Client
|
|
"WbioSrvc" # Windows Biometric Service (required for Fingerprint reader / facial detection)
|
|
"WlanSvc" # WLAN AutoConfig
|
|
"WMPNetworkSvc" # Windows Media Player Network Sharing Service
|
|
"wscsvc" # Windows Security Center Service
|
|
"WSearch" # Windows Search
|
|
"XblAuthManager" # Xbox Live Auth Manager
|
|
"XblGameSave" # Xbox Live Game Save Service
|
|
"XboxNetApiSvc" # Xbox Live Networking Service
|
|
"ndu" # Windows Network Data Usage Monitor
|
|
"WerSvc" #disables windows error reporting
|
|
"Spooler" #disables your printer
|
|
"Fax" #disables fax
|
|
"fhsvc" #disables fax histroy
|
|
"gupdate" #disables google update
|
|
"gupdatem" #disable another google update
|
|
"stisvc" #disables Windows Image Acquisition (WIA)
|
|
"AJRouter" #needed for AllJoyn Router Service
|
|
"MSDTC" # Disables Distributed Transaction Coordinator
|
|
"dmwappushservice" #Device Management Wireless Application Protocol (WAP) Push message Routing Service
|
|
"WpcMonSvc" #Disables Parental Controls
|
|
"PhoneSvc" #Disables Phone Service(Manages the telephony state on the device)
|
|
"PrintNotify" #Disables Windows printer notifications and extentions
|
|
"PcaSvc" #Disables Program Compatibility Assistant Service
|
|
"WPDBusEnum" #Disables Portable Device Enumerator Service
|
|
"LicenseManager" #Disable LicenseManager(Windows store may not work properly)
|
|
"seclogon" #Disables Secondary Logon(disables other credentials only password will work)
|
|
"SysMain" #Disables sysmain
|
|
"lmhosts" #Disables TCP/IP NetBIOS Helper
|
|
"wisvc" #Disables Windows Insider program(Windows Insider will not work)
|
|
"FontCache" #Disables Windows font cache
|
|
"RetailDemo" #Disables RetailDemo whic is often used when showing your device
|
|
"ALG" #Application Layer Gateway Service(Provides support for 3rd party protocol plug-ins for Internet Connection Sharing)
|
|
#"BFE" #Disables Base Filtering Engine (BFE) (is a service that manages firewall and Internet Protocol security)
|
|
#"BrokerInfrastructure" #Disables Windows infrastructure service that controls which background tasks can run on the system.
|
|
"SCardSvr" #Disables Windows smart card
|
|
"lfsvc" #Disable Windows geolocation service it can be use to track you
|
|
"EntAppSvc" #Disables enterprise application management.
|
|
"BthAvctpSvc" #Disables AVCTP service (if you use Bluetooth Audio Device or Wireless Headphones. then don't disable this)
|
|
"FrameServer" #Disables Windows Camera Frame Server(this allows multiple clients to access video frames from camera devices.)
|
|
"Browser" #Disables computer browser
|
|
"BthAvctpSvc" #Disables BthAvctpSvc (This is Audio Video Control Transport Protocol service)
|
|
"BDESVC" #Disables bitlocker
|
|
"fhsvc" #File History Service (protects user files from accidental loss by copying them to a backup location.)
|
|
"iphlpsvc" #Disables ipv6 but most websites don't use ipv6 they use ipv4
|
|
# Services which cannot be disabled
|
|
#"WdNisSvc"
|
|
)
|
|
|
|
foreach ($service in $services) {
|
|
Write-Output "Trying to disable $service"
|
|
Get-Service -Name $service | Set-Service -StartupType Disabled
|
|
}
|