Windows 10 service optimization

Turn hybrid hibernation on or off

Run Windows powerShell as an administrator to enable the hibernation function. …
Enter in the command window to disable the hibernation functionpowercfg -h on
powercfg -h off


SSD Optimization

If it is a solid state drive
, please turn off the windows searchservice . Turning
off the spuerfetchservice
can greatly reduce the phenomenon of high resource occupancy in win10.


According to actual needs, prohibit unused services

E.g:

# 使用IPV6转换技术和IP-HTTPS隧道连接
IP Helper
# 打印服务,如果没有打印机可以禁止
Print Spooler
# 为其他客户机提供共享,打印机共享等服务资源,也就是Samba服务
Server
# 兼容旧版系统的NetBIOS协议支持
TCP/IP NetBios Helper

# 微软上传服务 
Connected User Experiences and Telemetry

# Adobe的软件服务 全部禁止掉
adobe genuine software integrity service

insert image description here


Win10 mechanical hard drive optimization

insert image description here

# 关闭部分服务
Connected User Experiences and Telemetry   # 微软遥测服务
SuperFetch  # 预读取服务,20H2版本已没有
HomeGroupListener  # 家庭组服务,20H2 工作站版没有
Windows Search  #Windows搜索服务

Mechanical hard disk optimization, adjust virtual memory calling method

In the run box in the start menu, enter system.ini, notepad automatically opens the system.inifile, and add content to the last line of the [386Enh] item
insert image description here

# 让系统在调用全部物理内存之后再使用虚拟内存进行数据交换
ConservativeSwapfileUsage=1
然后,在最下方添加一个“[vcache]”项(在Win7和Win8/8.1下默认存在)并填写两行命令:
[vcache]
MinFileCache=4096   #最小缓存为4M
MaxFileCache=8096   #最大缓存为

By setting a minimum of 4MB and a maximum of 8MB of memory space for caching the read and write of small files on the hard disk, the performance of the mechanical hard disk in reading and writing small files can be improved.


Turn off automatic updates in Windows 10

How to permanently disable Windows 10 automatic updates? - Knowing
the SC command to manage the service status_Lytton_jing's blog-CSDN blog_sc command:

# 永久关闭自动更新
sc.exe config wuauserv start= disabled

Guess you like

Origin blog.csdn.net/omaidb/article/details/123172198