home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo This batch file issues "PKZIP FLOPB A:\*.* -ex -rp -whs -Jhrs" to create a
- echo a file named FLOPB.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. FLOPB.ZIP will be created in the current subdirctory.
- echo.
- echo Insert source floppy in drive A:
- pause
- pkzip FLOPB a:\*.* -ex -rp -whs -Jhrs
- echo.
- echo FLOPB.ZIP contains the entire contents of the floppy in Drive A:.
- echo Unzip this file using "PKUNZIP FLOPB -d -Jhrs"
- echo on
-