home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo This batch file issues "PKZIP FLOPA A:\*.* -ex -rp -whs Jhrs" to create a
- echo a file named FLOPA.ZIP in the current directory containing all the
- echo subdirectories and files on the floppy in the A: drive, including hidden
- echo and system files. FLOPA.ZIP will be created in the current subdirctory.
- echo.
- echo Insert source floppy in drive A:
- pause
- pkzip flopa a:\*.* -ex -rp -whs -Jhrs
- echo.
- echo FLOPA.ZIP contains the entire contents of the floppy in Drive A:.
- echo Unzip this file using "PKUNZIP FLOPA -d -Jhrs"
- echo on
-