Update windows service disabler v2.ps1

pull/398/head
Brandon 3 years ago committed by GitHub
parent ab6ee32480
commit 64531eb3fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -32,7 +32,6 @@ $services = @(
"stisvc" #Disables Windows Image Acquisition (WIA)
"AJRouter" #Disables (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
@ -49,24 +48,22 @@ $services = @(
#"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" #AVCTP service (This is Audio Video Control Transport Protocol service.)
"BDESVC" #Disables bitlocker
"fhsvc" # Disables 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
"edgeupdate" # Disables one of edge update service
"MicrosoftEdgeElevationService" # Disables one of edge service
"edgeupdatem" # disbales another one of update service (disables edgeupdatem)
"SEMgrSvc" #Disables Payments and NFC/SE Manager (Manages payments and Near Field Communication (NFC) based secure elements)
#"PNRPsvc" # Disables peer Name Resolution Protocol ( some peer-to-peer and collaborative applications, such as Remote Assistance, may not function, Discord will still work)
#"PNRPsvc" # Disables peer Name Resolution Protocol ( some peer-to-peer and collaborative applications, such as Remote Assistance, may not function, Discord will still work)
#"p2psvc" # Disbales Peer Name Resolution Protocol(nables multi-party communication using Peer-to-Peer Grouping. If disabled, some applications, such as HomeGroup, may not function. Discord will still work)
#"p2pimsvc" # Disables Peer Networking Identity Manager (Peer-to-Peer Grouping services may not function, and some applications, such as HomeGroup and Remote Assistance, may not function correctly.Discord will still work)
"PerfHost" #Disables remote users and 64-bit processes to query performance .
"BcastDVRUserService_48486de" #Disables GameDVR and Broadcast is used for Game Recordings and Live Broadcasts
"BcastDVRUserService_48486de" #Disables GameDVR and Broadcast is used for Game Recordings and Live Broadcasts
"CaptureService_48486de" #Disables ptional screen capture functionality for applications that call the Windows.Graphics.Capture API.
"cbdhsvc_48486de" #Disables cbdhsvc_48486de (clipboard service it disables)
"BluetoothUserService_48486de" #disbales BluetoothUserService_48486de (The Bluetooth user service supports proper functionality of Bluetooth features relevant to each user session.)
@ -74,7 +71,7 @@ $services = @(
#"StorSvc" #Disables StorSvc (usb external hard drive will not be reconised by windows)
"RtkBtManServ" #Disables Realtek Bluetooth Device Manager Service
"QWAVE" #Disables Quality Windows Audio Video Experience (audio and video might sound worse)
#hp services
#Hp services
"HPAppHelperCap"
"HPDiagsCap"
"HPNetworkCap"
@ -127,7 +124,6 @@ Get-Service gupdatem | Where {$_.status eq 'running'} | Stop-Service
Get-Service stisvc | Where {$_.status eq 'running'} | Stop-Service
Get-Service AJRouter | Where {$_.status eq 'running'} | Stop-Service
Get-Service MSDTC | Where {$_.status eq 'running'} | Stop-Service
Get-Service dmwappushservice | Where {$_.status eq 'running'} | Stop-Service
Get-Service WpcMonSvc | Where {$_.status eq 'running'} | Stop-Service
Get-Service PhoneSvc | Where {$_.status eq 'running'} | Stop-Service
Get-Service PrintNotify | Where {$_.status eq 'running'} | Stop-Service
@ -144,7 +140,6 @@ Get-Service ALG | Where {$_.status eq 'running'} | Stop-Service
#Get-Service BFE | Where {$_.status eq 'running'} | Stop-Service
Get-Service BrokerInfrastructure | Where {$_.status eq 'running'} | Stop-Service
Get-Service SCardSvr | Where {$_.status eq 'running'} | Stop-Service
Get-Service lfsvc | Where {$_.status eq 'running'} | Stop-Service
Get-Service EntAppSvc | Where {$_.status eq 'running'} | Stop-Service
Get-Service BthAvctpSvc | Where {$_.status eq 'running'} | Stop-Service
Get-Service BDESVC | Where {$_.status eq 'running'} | Stop-Service

Loading…
Cancel
Save