echo off
cls
if %1: == : goto INFO
if %1 == a: goto DOIT
if %1 == A: goto DOIT
if %1 == b: goto DOIT
if %1 == B: goto DOIT
:NOTE
echo ÿ======================================================================
echo ÿ==                                                                  ==
echo  ==                    VIDEO POKER … la Carte                        ==
echo ÿ==                                                                  ==
echo  ==  This program will help you correctly install VIDEO POKER onto   ==
echo ÿ==  your hard drive.  There have been some last minute improvements ==
echo ÿ==  so please read the following information to insure that you     ==
echo ÿ==  install VIDEO POKER … la Carte correctly:                       ==
echo ÿ==                                                                  ==
echo ÿ==  * This program works on EGA and VGA monitors only. If do not    ==
echo ÿ==    know what type of monitor you have, consult your computer     ==
echo  ==    documentation or call you local dealer.                       ==
echo ÿ==                                                                  ==
echo ÿ==  * When typing the INSTALL command, be sure to include both the  ==
echo  ==    source drive (usually A: or B:) followed by a space and then  ==
echo ÿ==    the destination drive (usually C: or D:)                      ==
echo ÿ==                                                                  ==
echo  ==  EXAMPLES: If you wanted to install VIDEO POKER from your B:     ==
echo ÿ==  Drive to your C: Drive, insert the disk in your B: Drive and    ==
echo ÿ==  type: "INSTALL B: C:".  If you wanted to install VIDEO POKER    ==
echo ÿ==  from Drive A: to Drive D:, you would insert the disk in your    ==
echo ÿ==  A: Drive and type "INSTALL A: D:"                               ==
echo ÿ==                                                                  ==
echo ÿ======================================================================
pause
goto END
:DOIT
if %2: == : goto INFO
cls
echo This program will now install VIDEO POKER … la Carte to your %2 Drive,
echo Press any key to continue or "Ctrl-Break" to exit.
echo ÿ
pause
echo ÿ
echo ÿ
echo Installing VIDEO POKER … la Carte...
%2
cd\
md VPAC
cd VPAC
copy %1*.* 
cd 
echo ÿ
echo Installation complete!
echo ÿ
echo To run VIDEO POKER … la Carte on your hard drive:
echo ÿ
echo    %1 %2
echo    %2 cd\VPAC
echo    %2 POKER
echo ÿ
echo ÿ  Type "SLOT" to play Microbucks III
echo ÿ
goto END
:INFO
echo To install VIDEO POKER … la Carte to you hard drive, you need to enter
echo both the source drive (A: or B:) and the hard drive (C:-F:).
echo ÿ                                                  
echo ÿ                     INSTALL [source] [hard drive]
echo ÿ
echo Examples: "INSTALL A: C:" or "INSTALL B: D:"
echo ÿ             
echo NOTE: Make sure you are installing VIDEO POKER … la Carte on a system
echo with a EGA or VGA monitor.
echo ÿ
:END