电脑寻求帮助

来源:百度知道 编辑:UC知道 时间:2024/05/18 11:35:38
我的电脑忽然之间就慢了下来,无论是打开文档、我的电脑还是浏览网页速度都很慢,简直给昨天不能比。哪位出来大虾给把把脉,菜鸟在这里先行谢过了。高分送上。
另外,这两天我把徐克电影全集下载了下来,是不是因为下载种病毒了或者是占据空间太大了阿??但是我没有存在c盘阿,并且是分开放的。80的现在也只不过用了一半。
在此谢谢!

估计是你的电脑运行了一段时间,从而产生了大量的垃圾文件,如注册表文件,DLL文件…………这些文件没有用处,但是占用了你的大量空间,使电脑运行速度大大降低,你可以下载个优化大师,把所有盘的那些文件全部删除,也或者把下面这段代码复制到一个文本中,然后点保存,把后缀名改成.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\*.*"