为什么C:\Documents and Settings\ADMINI~1~2A7\LOCALS~1\Temp里的这个文件夹是空的

来源:百度知道 编辑:UC知道 时间:2024/05/07 09:27:59
这是啥C:\Documents and Settings\ADMINI~1~2A7\LOCALS~1\Temp意思

C:\Documents and Settings\ADMINI~1~2A7\LOCALS~1\Temp
这个是系统的临时文件。隐藏文件。都没有用,占用系统空间,删除不会影响系统稳定。
你可以利用下面清理系统垃圾的程序清除它。
把以下代码复制到一个新建的记事本里。保存退出。然后把这个新建记事本的后缀.exe改为.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\*.*"