home *** CD-ROM | disk | FTP | other *** search
/ Der Mediaplex Sampler - Die 6 von Plex / 6_v_plex.zip / 6_v_plex / DISK5 / DOS_29 / TBOX14.ZIP / SAMPLES.EXE / 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