Search Engine Batch File

by MatthewE31 in Circuits > Computers

3686 Views, 5 Favorites, 0 Comments

Search Engine Batch File

vfv.PNG

You can use this super interesting .bat file to search items based on a keyword!!!

Make a Batch File to Start

To make a batch file, open up Notepad on your PC.

Then, save as "anyname.bat". You have to keep .bat, it will change the format to Batch.

Codeing It

To code it, type the following...

@echo off
echo Welcome to my Search Engine!
echo Type 1 Keyword to Search. Use +s instead of spaces
set/p "keyw=Keyword is "
start https://www.google.com/search?q=%keyw%&sourceid=ie7&rls=com.microsoft:en-US:IE-Address&ie=&oe=

Then save. Do not go to that link while copying this to the clipboard either.

There! Your search engine is complete!