home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- :START
- sask "Do you wish to (I)nstall or (R)ead the Readme file first?" ir
- if ERRORLEVEL=99 goto DONE
- if ERRORLEVEL=2 goto READ
- install
- readme
- goto MORE
- :READ
- readme
- install
- :MORE
- cls
- echo Installation has completed. Please read the documentation or press F1
- echo for help within the program itself.
- sask "(S)tart Bank Account Manager or (Q)uit?" sq
- if ERRORLEVEL=99 goto DONE
- if ERRORLEVEL=2 goto DONE
- bam
- :DONE
- echo on
-