home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / ntws1.exe / NTCLI / MAKEDISK.BAT < prev    next >
DOS Batch File  |  1995-06-14  |  962b  |  35 lines

  1. @echo off
  2. REM * "CoPyRiGhT=(c) 1995 Novell, Inc.  All Rights Reserved."
  3. REM * VeRsIoN=0.01
  4. CLS
  5. if not .%1 == . goto ad
  6.  
  7. :nt
  8. ECHO This process will create by default
  9. ECHO 2 NetWare Client for Windows NT disks.
  10. ECHO You will need formatted 3.5 inch Diskettes.
  11. ECHO.
  12. ECHO If you only want to create NetWare Administrator
  13. ECHO Install disks press "Ctrl-C" to stop this batch file
  14. ECHO and re-run this batch file with the parameter "ADMIN"
  15. ECHO    Example: MAKEDISK ADMIN
  16. ECHO Otherwise press any key to continue.
  17. PAUSE
  18. NWMKDISK /F NT_350.SCR
  19. goto end
  20.  
  21. :ad
  22. ECHO This process will create NetWare Administrator Install disks.
  23. ECHO You will need formatted 3.5 inch Diskettes.
  24. ECHO.
  25. ECHO If you want to create NetWare Client for Windows
  26. ECHO NT disks press "Ctrl-C" to stop this batch file
  27. ECHO and re-run this batch file with no parameters.
  28. ECHO Otherwise press any key to continue.
  29. PAUSE
  30. ECHO.
  31. NWMKDISK /F AD_350.SCR
  32. goto end
  33.  
  34. :end
  35.