home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hráč 1998 July & August
/
Hrac_23_1998-07-08_cd1.bin
/
Demos
/
Solcity
/
DISK2.BAT
< prev
next >
Wrap
DOS Batch File
|
1998-03-22
|
2KB
|
37 lines
@ECHO OFF
ECHO --------------------------------------------------
ECHO THIS SCRIPT WILL CREATE SOLITAIRE CITY DISK 2 OF 3
ECHO --------------------------------------------------
ECHO Once you have created these disks, please feel free to give copies to as many
ECHO people as you like.
ECHO Please insert a blank 1.44 meg floppy disk into drive A: and then make one
ECHO of the following choices :
ECHO [F] Format floppy disk first (probably best but only if you're in MS-DOS mode)
ECHO [C] Just copy files (only if the disk is blank - format it with Windows first)
CHOICE /CFC "Press Either 'F' or 'C' to Create Disk 2 "
IF ERRORLEVEL=2 GOTO NoFormat
FORMAT A: /V:SOLCITY /F:1.44
:NoFormat
ECHO Copying files to Solitaire City Disk 2 ....
COPY ALTERN.RU_ A:\
COPY CASKET.RU_ A:\
COPY CRIBBAGE.RU_ A:\
COPY DEMON.RU_ A:\
COPY GOLF.RU_ A:\
COPY KLONDIKE.RU_ A:\
COPY POKER.RU_ A:\
COPY PYRAMID.RU_ A:\
COPY SOLCITY.EX_ A:\
COPY SOLCITY.HL_ A:\
LABEL A: SOLCITY 2
ECHO Disk 2 has been created !
ECHO Please write protect the disk, label it 'Solitaire City Disk 2'
ECHO and then run DISK3.BAT to create the final disk.