古奇女包2017新款图:机子玩游戏经常出现虚拟内存不足,任务管理器里PF使用率都1G以上如何解决(512内存)

来源:百度文库 编辑:查人人中国名人网 时间:2024/04/28 02:14:45
机子玩游戏经常出现虚拟内存不足,任务管理器里PF使用率都1G以上如何解决(512内存)

应该是垃圾文件太多了
写一个批处理吧
把下面的代码复制到记事本里,点文件-另存为,
文件类型:所有文件
文件名123.bat
有空就双击一下,清理清理
@echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 夏天:清除系统垃圾完成!
echo. & pause