home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / bbs_opus / wchat100.arj / INSTALL.BAT next >
DOS Batch File  |  1991-07-19  |  990b  |  34 lines

  1. @Echo off
  2. if "%1" == "" goto SYNTAX
  3. goto START
  4.  
  5. :SYNTAX
  6. cls
  7. Echo  
  8. Echo  Whale Chat 1.00.00 - Install Batch-File - (c) 1991 Whale Software. 
  9. Echo  ------------------------------------------------------------------
  10. Echo  Parameters:                                        
  11. Echo     Install "Install-Path"
  12. Echo  Example:                                                      
  13. Echo     Install C:\OPUS\WCHAT  =  Copy all files to C:\OPUS\WCHAT.
  14. Echo                   (Do NOT add a final backslash!)
  15. goto END
  16.  
  17. :START
  18. Echo  Whale Chat 1.00.00 - Install Batch-File - (c) 1991 Whale Software
  19. Echo  -----------------------------------------------------------------
  20. Echo Creating %1\
  21. md %1 > nul
  22. Echo Copying files to %1\ (this may take a while).
  23. xcopy *.* %1 > nul
  24. cd %1 > nul
  25. md %1\music > nul
  26. Echo Unpacking Music-Files.
  27. pkunzip wcmusic.zip %1\music > nul
  28. Echo Finished, press any key to run WCHAT SETUP or press CTRL-C to abort.
  29. pause
  30. %1\wchat setup
  31. goto END
  32.  
  33. :END
  34.