SYSTEM&WEB HACKING: How To Program A Bookmark Organiser Through Notepad

Saturday, August 20, 2011

How To Program A Bookmark Organiser Through Notepad

Hey guys I’m gonna show you how to create a bookmark organizer in the form of a batch file, just another simple batch file programming trick through notepad.

>You can use this to visit your favourite bookmarked sites just by simply hitting a number on your keyboard.
>Another smart way of programming to make your life easy.
>Copy the following code and save it with a .bat extension.
————————————————————————————–
@echo off
color 3
title HCKR333
echo BOOKMARK ORGANIZER FROM HCKR333
echo.
echo 1. www.hckr333.blogspot.com
echo 2. www.facebook.com
echo 3. www.youtube.com
echo 4. www.stumbleupon.com
echo 5. www.google.com
echo.
:first
echo Enter your option :
set /p opt=
if %opt%==1 goto A
if %opt%==2 goto two
if %opt%==3 goto three
if %opt%==4 goto four
if %opt%==5 goto five
echo Invalid Option
goto first
:A
start www.hckr333.blogspot.com
exit
:two
start www.facebook.com
exit
:three
start www.youtube.com
exit
:four
start www.stumbleupon.com
exit
:five
start www.google.com
exit

No comments: