home *** CD-ROM | disk | FTP | other *** search
/ Hráč 1998 July & August / Hrac_23_1998-07-08_cd1.bin / Demos / Solcity / DISK3.BAT < prev    next >
DOS Batch File  |  1998-03-22  |  1KB  |  32 lines

  1. @ECHO OFF
  2. ECHO               --------------------------------------------------
  3. ECHO               THIS SCRIPT WILL CREATE SOLITAIRE CITY DISK 3 OF 3
  4. ECHO               --------------------------------------------------                                      
  5. ECHO Once you have created these disks, please feel free to give copies to as many
  6. ECHO people as you like.                                                                              
  7. ECHO Please insert a blank 1.44 meg floppy disk into drive A: and then make one
  8. ECHO of the following choices :                                                                             
  9. ECHO [F] Format floppy disk first (probably best but only if you're in MS-DOS mode)
  10. ECHO [C] Just copy files (only if the disk is blank - format it with Windows first)                               
  11. CHOICE /CFC "Press Either 'F' or 'C' to Create Disk 3 "
  12.  
  13. IF ERRORLEVEL=2 GOTO NoFormat
  14.  
  15. FORMAT A: /V:SOLCITY /F:1.44
  16.  
  17. :NoFormat
  18.  
  19. ECHO Copying files to Solitaire City Disk 3 ....
  20.  
  21. COPY EGYPTIAN.8M_ A:\
  22. COPY EGYPTIAN.8S_ A:\
  23. COPY SOLCITY.8L_ A:\
  24. COPY SOLCITY.8M_ A:\
  25. COPY SOLCITY.8S_ A:\
  26. LABEL A: SOLCITY 3
  27.  
  28. ECHO Disk 3 has been created !                                                                                   
  29. ECHO Please write protect the disk, label it 'Solitaire City Disk 3' and then
  30. ECHO you may install the game from disk by running SETUP.EXE on Disk 1
  31.  
  32.