home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / pcc / v08n03 / netwrk.exe / WDPOST.ZIP / WDPOST.TAR / wdpost.dir / super / hinstall.bat next >
DOS Batch File  |  1988-06-21  |  1KB  |  43 lines

  1. echo=off
  2. cls
  3. echo .
  4. echo                      == HINSTALL.BAT ==
  5. echo    This program copies all the drivers from this diskette
  6. echo    (the "source-drive") to a new subdirectory named "WDPLUS"
  7. echo    that it creates on a hard disk (or floppy disk) in 
  8. echo    another drive (the "destination-drive").
  9. echo .
  10. echo    The correct format for executing this installation program is:
  11. echo .
  12. echo         HINSTALL   source-drive  destination-drive  [Enter]
  13. echo .
  14. echo    The source-drive that you selected is  %1
  15. echo    The destination-drive that you selected is  %2
  16. echo .
  17. echo    If you have not entered the command correctly, terminate this
  18. echo    program now by pressing CTRL+BREAK.
  19. echo .
  20. pause
  21. echo    Making directories ...
  22. md %2\wdplus
  23. md %2\wdplus\netwar20
  24. md %2\wdplus\netwar21
  25. md %2\wdplus\netbios
  26. md %2\wdplus\3plus
  27. md %2\wdplus\pcnfs
  28. md %2\wdplus\decnet
  29. md %2\wdplus\unix53
  30. md %2\wdplus\diag
  31. echo    Copying files from driver disk ...
  32. copy %1\*.* %2\wdplus
  33. copy %1\netwar20\*.* %2\wdplus\netwar20
  34. copy %1\netwar21\*.* %2\wdplus\netwar21
  35. copy %1\netbios\*.* %2\wdplus\netbios
  36. copy %1\3plus\*.* %2\wdplus\3plus
  37. copy %1\pcnfs\*.* %2\wdplus\pcnfs
  38. copy %1\decnet\*.* %2\wdplus\decnet
  39. copy %1\unix53\*.* %2\wdplus\unix53
  40. copy %1\diag\*.* %2\wdplus\diag
  41. echo .
  42. echo End of HINSTALL.BAT -- driver disk installed on drive %2
  43.