hmyroot 发表于 2021-9-13 15:18:46

禁用系统服务解决磁盘占用100%的问题!

本帖最后由 hmyroot 于 2021-9-19 09:02 编辑

大家好,相信大家在使用Win7、Win8.1、Win10以后的系统都有过同样的经历,就是电脑磁盘经常会被系统占用100%造成卡机,一方面是微软从Win7、Win8.1、Win10开始加入了自带杀毒软件,而且那个自带杀毒软件非常垃圾,因为它默认打开实时监控功能,导致磁盘扫描太频繁,可以说微软自带的杀毒软件都是硬盘杀手来的。如果你不想磁盘经常被微软杀毒软件占用可以自行安装第三方杀毒软件(火绒、360卫士极速版)等等,之后自带的杀毒软件就会自动暂停使用了。虽然杀毒软件的占用问题解决了,但是还有另一个硬盘杀手服务,就是微软从Win7、Win8.1、Win10开始引进的垃圾负优化服务,在Win7、Win8.1里叫做Superfetch,在Win10里叫做SysMain,这个垃圾服务也是造成系统经常卡机的原因,只要禁用以下这些服务即可恢复电脑系统原有的流畅性!



CMD 优化命令
@echo off
color 0A

::改为手动运行
net stop BITS
sc config BITS start= demand
net stop TrustedInstaller
sc config TrustedInstaller start= demand
net stop WMPNetworkSvc
sc config WMPNetworkSvc start= demand
net stop SDRSVC
sc config SDRSVC start= demand
net stop RemoteRegistry
sc config RemoteRegistry start= demand
net stop wbengine
sc config wbengine start= demand

::改为禁用
net stop SysMain
sc config SysMain start= disabled
net stop AppXSvc
sc config AppXSvc start= disabled
net stop iphlpsvc
sc config iphlpsvc start= disabled
::net stop Spooler
::sc config Spooler start= disable
net stop SynTPEnhService
sc config SynTPEnhService start= disabled
net stop wuauserv
sc config wuauserv start= disabled
net stop WpnService
sc config WpnService start= disabled
net stop WpnUserService_f42d19
sc config WpnUserService_f42d19 start= disabled
net stop HomeGroupListener
sc config HomeGroupListener start= disabled
net stop HomeGroupProvider
sc config HomeGroupProvider start= disabled

::禁用以下计划任务
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\Autochk\Proxy"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\Application Experience\AitAgent"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\Application Experience\ProgramDataUpdater"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\WindowsUpdate\Automatic App Update"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\WindowsUpdate\Scheduled Start"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\WindowsUpdate\Schedule Scan"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\UpdateOrchestrator\Refresh Settings"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\WindowsUpdate"
Schtasks /CHANGE /DISABLE /TN "\Microsoft\Windows\Defrag\ScheduledDefrag"
echo.
@pause

每个服务的具体介绍可以查看系统自带的描述解释!
例如 net stop AppXSvc 这是微软在线应用UWP的自动更新安装服务,如果你是重装系统使用新用户就不建议停用了,因为Win10在第一次部署登录用户要用到这个服务,微软就是喜欢干这种捆绑销售,还有那个Microsoft Defender也是捆绑了Windows防火墙,想卸载都卸载不了



jyssysz 发表于 2021-9-14 07:47:06

这个没有试过,有机会试一下。

龍在天涯 发表于 2021-9-14 13:47:52

收藏备用         

841020672 发表于 2021-9-14 23:51:13

学习 了,收藏一下

hmyroot 发表于 2021-9-15 00:51:02

本帖最后由 hmyroot 于 2021-9-15 23:21 编辑

每个服务的具体介绍可以查看系统自带的描述解释!例如 net stop AppXSvc 这是微软在线应用UWP的自动更新安装服务,如果你是重装系统使用新用户就不建议停用了

xiaohu96 发表于 2021-9-15 13:56:16

学习了,收藏一下备用

OOO 发表于 2021-9-16 22:18:33

占用太高,一般都是后台默默在更新系统。。好像。

hmyroot 发表于 2021-9-18 07:46:28

OOO 发表于 2021-9-16 22:18
占用太高,一般都是后台默默在更新系统。。好像。

更新的确会占用高,但是那几个服务也会占用很高内存,而且是没有用的功能
页: [1] 2
查看完整版本: 禁用系统服务解决磁盘占用100%的问题!