Categories

Tools

bitdefender

1&1 Web Hosting

A simple batch file that lets you choose, using a menu, which open search engine


Code:

@echo off
title Choose which search engine you want to use.
cls
color 9E
 
:REQUEST
echo.
echo Which search engine do you use?
echo 1. Google
echo 2. Bing
echo 3. Yahoo
echo 0. ESC
echo.
set /p "Choose=Choose an option and press the Enter key: "
cls
IF "%Choose%"=="1" GOTO G
IF "%Choose%"=="2" GOTO B
IF "%Choose%"=="3" GOTO Y
IF "%Choose%"=="0" GOTO EXIT
color CF
echo.
echo Invalid choice: press a key between 1 and 3. Press 0 to exit.
echo.
echo Press any key to continue ...
pause > nul
cls
color 9E
goto REQUEST
 
:G
echo.
echo Press a button to open Google ...
pause > nul
cls
echo.
echo Opening of Google ...
start http://www.google.com/
cls
goto REQUEST

:B
echo.
echo Press a button to open Bing ...
pause > nul
cls
echo.
echo Opening of Bing ...
start http://www.bing.com/
cls
goto REQUEST

:Y
echo.
echo Press a button to open Yahoo! ...
pause > nul
cls
echo.
echo Opening of Yahoo! ...
start http://www.yahoo.com/
cls
goto REQUEST

:EXIT
echo.
echo Good bye.
echo.
echo Press any key to exit ...
pause > nul
exit /b

Result:

A simple batch file that lets you choose, using a menu, which open search engine

Posted in Batch by MdmSoft

If our work has been of help, you can help us with a small donation...
Our programmers will thank you!



All information contained in this web site are the property of MdmSoft. The information is provided "as is", MdmSoft will not be liable for any misuse of the code contained in these pages, nor can it be for inaccuracies, grammatical errors or other factors that may have caused damage or lost earnings. MdmSoft is not responsible for the content of comments posted by users.
The examples in this area have the educational and demonstration purposes only, and may be copied only for your reference, but cannot be used for commercial purposes, or for any other purpose, without the express written consent of MdmSoft.
MdmSoft also reserves the right to change, without notice, to your liking this web site, the pages and its sections, and may suspend temporarily or definitely the various services included on this site.
While using this site, you agree to have read and accepted our Terms of Service and Privacy Policy.