Do you want to create your own command prompt like VS Command Prompt ?
Then this tip is for you :)
First create a file at your programs directory.
File's name will be
Start.bat
Open it with your text editor and copy this code ::
@ECHO OFF
set PATH = YoutProgramsPath\Bin;%PATH%
echo Welcome to Your Programs Name Command Prompt
Then create a shortcut to ::
%comspec% /k "Start.bat"
It opens the cmd and writes
Welcome to Your Programs Name Command Prompt
and you can use all programs in
YoutProgramsPath\Bin
:)