home *** CD-ROM | disk | FTP | other *** search
- echo off
- if "%1"=="" goto help
- echo Insert blank demo disk #1 in %1
- pause
- copy demo.inf %1\appsetup.inf
- copy ..\install.exe %1\
- copy file1.foo %1\
- copy file2.foo %1\
- copy file3.foo %1\
- copy demo.ico %1\
- echo Insert blank demo disk #2 in %1
- pause
- mkdir %1\files
- copy file4.foo %1\files
- copy driver1.foo %1\files
- copy driver2.foo %1\files
- goto exit
- :help
- echo This .BAT file makes 2 demo disks which you can use to
- echo test the demo INSTALL program. This .BAT accepts one
- echo parameter, the name of your floppy drive. For example,
- echo MAKE A:
- :exit
-