怎么清理笔记本C盘,华硕 wen7系统
展开全部
系统要是慢的不行可以试试金山的重装高手,我刚用了挺简单挺方便的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
@echo off
Title Windows7系统垃圾清理
color 0a
mode con cols=55 lines=16
echo.
echo.
echo.
echo
echo.
echo.
echo.
echo
echo.
cls
echo.
echo.
echo.
echo.
echo 1,正在清理Tmp文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.tmp" /d /s>nul 2>nul
attrib -r -a -s -h "%systemdrive%\*._mp" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.tmp">nul 2>nul
del /f /s /q "%systemdrive%\*._mp">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 2,正在清理日志文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.log" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.log">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 3,正在清理Gid文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.gid" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.gid">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 4,正在清理Chk文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.chk" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.chk">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 5,正在清理Old文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.old" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.old">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 6,正在清理回收站....
echo.
attrib -r -a -s -h "%systemdrive% ecycled\*.*" /d /s>nul 2>nul
del /f /s /q "%systemdrive% ecycled\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 7,正在清理备份文件....
echo.
attrib -r -a -s -h "%windir%\*.bak" /d /s>nul 2>nul
del /f /s /q "%windir%\*.bak">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 8,正在清理文件使用痕迹....
echo.
attrib -r -a -s -h "%windir%\prefetch\*.pf" /d /s>nul 2>nul
del /f /s /q "%windir%\prefetch\*.pf">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 9,正在清理Cookies文件....
echo.
attrib -r -a -s -h "%userprofile%\cookies\*.*" /d /s>nul 2>nul
del /f /q "%userprofile%\cookies\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 10,正在清理上网产生的临时文件....
echo.
attrib -r -a -s -h "%userprofile%\Local Settings\Temporary Internet Files\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 11,正在清理临时文件....
echo.
attrib -r -a -s -h "%userprofile%\Local Settings\Temp\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile%\Local Settings\Temp\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 12,正在清理用户历史文件....
echo.
attrib -r -a -s -h "%userprofile% ecent\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile% ecent\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo
echo.
echo.
echo.
echo
exit
新建个文件,复制进去,另存为 清理.bat 打开就可以了,一直用着。
Title Windows7系统垃圾清理
color 0a
mode con cols=55 lines=16
echo.
echo.
echo.
echo
echo.
echo.
echo.
echo
echo.
cls
echo.
echo.
echo.
echo.
echo 1,正在清理Tmp文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.tmp" /d /s>nul 2>nul
attrib -r -a -s -h "%systemdrive%\*._mp" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.tmp">nul 2>nul
del /f /s /q "%systemdrive%\*._mp">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 2,正在清理日志文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.log" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.log">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 3,正在清理Gid文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.gid" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.gid">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 4,正在清理Chk文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.chk" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.chk">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 5,正在清理Old文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.old" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.old">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 6,正在清理回收站....
echo.
attrib -r -a -s -h "%systemdrive% ecycled\*.*" /d /s>nul 2>nul
del /f /s /q "%systemdrive% ecycled\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 7,正在清理备份文件....
echo.
attrib -r -a -s -h "%windir%\*.bak" /d /s>nul 2>nul
del /f /s /q "%windir%\*.bak">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 8,正在清理文件使用痕迹....
echo.
attrib -r -a -s -h "%windir%\prefetch\*.pf" /d /s>nul 2>nul
del /f /s /q "%windir%\prefetch\*.pf">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 9,正在清理Cookies文件....
echo.
attrib -r -a -s -h "%userprofile%\cookies\*.*" /d /s>nul 2>nul
del /f /q "%userprofile%\cookies\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 10,正在清理上网产生的临时文件....
echo.
attrib -r -a -s -h "%userprofile%\Local Settings\Temporary Internet Files\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 11,正在清理临时文件....
echo.
attrib -r -a -s -h "%userprofile%\Local Settings\Temp\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile%\Local Settings\Temp\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 12,正在清理用户历史文件....
echo.
attrib -r -a -s -h "%userprofile% ecent\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile% ecent\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo
echo.
echo.
echo.
echo
exit
新建个文件,复制进去,另存为 清理.bat 打开就可以了,一直用着。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
清理笔记本C盘的方法:
首先,在C盘上右击,选择属性
在弹出的属性中选择磁盘清理,这是会自动扫描能清理的文件
选择占用空间大的,清理掉。
接着点击清理系统文件,这里边的文件站用空间是比较大的,有系统错误报告,系统更新等。选择要清理的直接清理即可。这里可以全选,因为列出来的都是可以清理的,不会影响系统的稳定性的。
清理完成一半了,现在用一个工具,是魔方里的磁盘分析,百度搜索下载魔方,找到魔方的清理大师,选择磁盘空间分析
点击大文件管理,选择C盘。点击开始分析,这是会自动分析C盘文件的占用空间大小,方便查看是什么占用了C盘的空间。
分析完成可以看到哪些文件是占用量比较大的,可以直接删除非系统内的文件。
查看大文件是否是下载的或者是不是安装的别的大软件导致的,将其删除或者移植到其他的盘里。
这样下来电脑C盘容量就会有了更多的可用空间了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询