Introduction: Batch Website Launcher

Hello! This is my first instructable, so please don't judge.

Today, I'll be showing you how to make a small batch program that launches websites, without having to input www. or .com!

(NOTE : This only works with .com websites, I'll try working on it later! :P!)

Step 1: Step 1 : Code

So, go into notepad, copy this, and paste it in.

@echo off
color a title Website Launcher set /p web=Enter Site Name, without www. or .com : Timeout /t 1 /nobreak>nul cls echo Launching website Timeout /t 1 /nobreak>nul cls echo Launching website. Timeout /t 1 /nobreak>nul cls echo Launching website.. Timeout /t 1 /nobreak>nul cls echo Launching website... Timeout /t 1 /nobreak>nul start www.%web%.com

Step 2: Step 2 : Saving and Finishing!

Now, do File > Save As... and name it anything you want, BUT! With a .bat at the end of the name.

There you go!

Happy BATCHing!