home *** CD-ROM | disk | FTP | other *** search
- @cls
- rem @echo off
- set fsver=304
- Echo -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- Echo MAKEZIPS.BAT
- Echo -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- Echo This batch file creates a SINGLE zip file version of the From Scratch system.
- Echo BBS users prefer the program in this format.
- Echo
- Echo A FSCR%fsver%.ZIP file will been created:
- Echo
- Echo PKZIP.EXE must be available and in the path for this to run properly!
- Echo
- Pause
- if A%1A==AA goto noparam
- if %1==A goto noparam
- if %1==a goto noparam
- if %1==B goto noparam
- if %1==b goto noparam
- if %1==c goto noparam
- if %1==C goto noparam
- if not exist 360k.ini goto noparam
- Pkzip %1Fscr%fsver%.zip *.* -ex -z < Fscr.zcm
- cls
- echo Done!
- goto done
- :noparam
- Echo To use this batch file, make sure the entire contents of the From Scratch
- Echo diskette are in the CURRENT directory.
- Echo
- Echo Supply the pathspec of the drive to create 3 zip files on.
- Echo Example: MAKEZIPS C:, or MAKEZIPS C:\JUNK\
- Echo note - the colon, and ending backslash, (if required) must be included!
- :done
-
-