Jump to content
Sign in to follow this  
CyberAbc

access any program from desktop quickly instead of going start menu

Recommended Posts

1. Open notepad

2.Then copy and paste the code below

3.This will looks like below

4.save the file anything .bat namely menu.bat

 

menu-1.png

 

@echo off
cls
color f9
:menu
echo.
echo --------------------------------------------------------------------
echo Press 1 2 3 4 5 6 7 8 9 10 11 12 or 13 to select your task, or 14 to exit.
echo --------------------------------------------------------------------
echo.
echo 1.Open internet explorer
echo.
echo 2.Open Mozilla firefox
echo.
echo 3.Open Opera
echo.
echo 4.TeamViewer6
echo.
echo 5.Magic ISO
echo.
echo 6.FileZilla
echo.
echo 7.Yahoo
echo.
echo 8.VMware Workstation
echo.
echo 9. Typing Instructor Platinum
echo.
echo 10.CyberGhost VPN
echo.
echo 11.Open Notepad
echo.
echo 12.Open Word Document
echo.
echo 13.Open Temp folder
echo.
echo 14.Exit
echo.
echo --------------------------------------------------------------------
set /p m=Type 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 then press Return:
if %m%==1 goto explorer
if %m%==2 goto mozilla
if %m%==3 goto opera
if %m%==4 goto Teamviewer
if %m%==5 goto MagicISO
if %m%==6 goto FileZilla
if %m%==7 goto Yahoo
if %m%==8 goto vmware 
if %m%==9 goto Typing 
if %m%==10 goto vpn
if %m%==11 goto note
if %m%==12 goto word
if %m%==13 goto temp
if %m%==14 goto end
:explorer
start iexplore.exe
goto menu
:mozilla
start firefox.exe
goto menu
:opera
start "" /b "C:\Program Files (x86)\Opera\opera.exe" %*
goto menu
:teamviewer
start "" /b "C:\Program Files (x86)\TeamViewer\Version7\TeamViewer.exe" %*
goto menu
:MagicISO
start "" /b "C:\Program Files\MagicISO\MagicISO.exe" %*
goto menu
:FileZilla
start "" /b "C:\Program Files\FileZilla FTP Client\filezilla.exe" %* 
goto menu
:Yahoo
start "" /b "C:\Program Files\Yahoo!\Messenger\YahooMessenger.exe" %*         
goto menu
:vmware
start "" /b "C:\Program Files\VMware\VMware Workstation\vmware.exe" %*         
goto menu
:Typing
start "" /b "C:\Program Files\Individual Software\Typing Instructor\Typing Instructor.exe" %*  
goto menu
:vpn
start "" /b "C:\Program Files\S.A.D\CyberGhost VPN\CyberGhost.exe" %*     
goto menu
:note
start notepad.exe
goto menu
:word
start winword
goto menu
:temp
start %temp%
goto menu
:end

 

Note: for win7 64 bit just replace the program menu. As for example "C:\Program Files\Yahoo!\Messenger\YahooMessenger.exe" with "C:\Program Files (x86)\Yahoo!\Messenger\YahooMessenger.exe"

Share this post


Link to post
Share on other sites

will it be working for programs that is not saved in local disk c ?

 

i mean i have my games installed at local disk d and can i still be using this method ?thanks !

Share this post


Link to post
Share on other sites

bro extension is .bat

 

ya sure bro. it can be accessed from other drive as d/e etc

 

  • Like 1

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×