home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / nuts333.zip / install.cmd next >
OS/2 REXX Batch file  |  1998-08-25  |  468b  |  25 lines

  1. @echo off
  2. @echo NUTS/2 v3.3.3 Install
  3. if %1x == x goto help
  4. if exist %1\nuts\nuts333.exe goto oops
  5. md %1\nuts
  6. unzip .\nuts.zip -d %1\nuts
  7. if %2x == no-iconx goto end
  8. %1
  9. cd \nuts
  10. call do.cmd
  11. goto end1
  12.  
  13. :oops
  14. @echo NUTS/2 v3.3.3 allready installed on %1!
  15. goto end
  16.  
  17. :help
  18. @echo Syntax is: install x: (where x: is the drive you wish to install to.
  19. @echo **NOTE: You must install this to an HPFS parition!**
  20. goto end
  21.  
  22. :end1
  23. del %1\nuts\do.cmd
  24.  
  25. :end