关于我电脑2005年组装的,系统是XP,有一年多没有重装,一切都正常
但最近启动时偶尔进入硬盘自检,我不知道硬盘怎么了,在计算机管理里看到错误信息,上面说:
磁盘上的文件系统结构已损坏,不能使用。 请在卷 C: 上运行 chkdsk 实用程序。
有关更多信息,请参阅在 的帮助和支持中心。
怎么回事?是不是硬盘有坏道区?的问题
用chkdsk可以。建议你强行重启。让系统自动修复损坏的文件,如果不行的话就用:建立好记事本,请将下面内容复制到记事本里即可:
@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
。