home *** CD-ROM | disk | FTP | other *** search
/ The Best of the Best / _.img / 01126 / install.bat < prev    next >
DOS Batch File  |  1993-08-10  |  465b  |  29 lines

  1. @echo off
  2. if %1+==+ goto hilfe
  3. if %1==?  goto hilfe
  4. if %1==h  goto hilfe
  5. if %1==/?  goto hilfe
  6. if %1==/h  goto hilfe
  7. cls
  8. echo INSTALLATION BEGINNT
  9. echo --------------------
  10. echo Quell-Laufwerk: %1
  11. echo Ziel-Laufwerk:  %2%3
  12. pause
  13.  
  14. %2
  15. if not exist %3 md %3
  16. cd %3
  17. copy %1*.* %2
  18. %2
  19. ww 
  20. goto ende
  21.  
  22. :hilfe
  23. echo Installationroutine starten 
  24. echo INSTALL [Quell-Laufwerk] [Ziel-Laufwerk] [Ziel-Pfad]
  25. echo z.B. INSTALL A: C: \WW
  26. goto ende
  27. :ende
  28.  
  29.