home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / t / tbox13.zip / TBOX13.ZIP / SAMPLES.ZIP / ZRUN.BAT < prev   
DOS Batch File  |  1992-06-16  |  322b  |  18 lines

  1. @echo off
  2. if not #%1==# goto DOIT
  3. echo #  
  4. echo #  USAGE:  wun [d:]path\zipname
  5. echo #  
  6. goto LEAVE
  7. :DOIT
  8. c:
  9. cd \empty
  10. if exist %1.zip goto UNZIP
  11. if exist %1     goto UNZIP
  12. echo File %1.ZIP not found  (from C:\EMPTY)
  13. goto LEAVE
  14. :UNZIP
  15. echo Y | del c:\empty\*.*
  16. PKUNZIP  %1
  17. if exist START.BAT start
  18. :LEAVE