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

  1. @ECHO OFF
  2. ECHO               --------------------------------------------------
  3. ECHO               THIS SCRIPT WILL CREATE SOLITAIRE CITY DISK 2 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 2 "
  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 2 ....
  20.  
  21. COPY ALTERN.RU_ A:\
  22. COPY CASKET.RU_ A:\
  23. COPY CRIBBAGE.RU_ A:\
  24. COPY DEMON.RU_ A:\
  25. COPY GOLF.RU_ A:\
  26. COPY KLONDIKE.RU_ A:\
  27. COPY POKER.RU_ A:\
  28. COPY PYRAMID.RU_ A:\
  29. COPY SOLCITY.EX_ A:\
  30. COPY SOLCITY.HL_ A:\
  31. LABEL A: SOLCITY 2
  32.  
  33. ECHO Disk 2 has been created !                                                                           
  34. ECHO Please write protect the disk, label it 'Solitaire City Disk 2'
  35. ECHO and then run DISK3.BAT to create the final disk.
  36.  
  37.