为爱机扩展了内存,系统确实流畅了许多;但发现怎么也用不完,是不是有点浪费?而且CPU使用率居高不下,为什么?
查阅了资料,终于找到了结果:Windows 10新增了内存压缩功能,对于内存较小的PC来说有很大的价值,但换来的却是消耗了较高的处理器资源;
那如果我们升级了内存之后,为节约处理器资源,是否可以关闭这项功能呢?
答案是可以的!
查看状态
get-mmagent
ApplicationLaunchPrefetching : True
ApplicationPreLaunch : True
MaxOperationAPIFiles : 256
MemoryCompression : True
OperationAPI : True
PageCombining : True
PSComputerName :
关闭内存压缩
disable-mmagent -mc
重新查看状态
ApplicationLaunchPrefetching : True
ApplicationPreLaunch : True
MaxOperationAPIFiles : 256
MemoryCompression : False
OperationAPI : True
PageCombining : True
PSComputerName :
如果想重新启用
enable-mmagent -mc
发布评论