home *** CD-ROM | disk | FTP | other *** search
/ Softdisk PC 112 / sdpc112.zip / COPY112.BAT < prev    next >
DOS Batch File  |  1995-12-05  |  1KB  |  47 lines

  1. @echo off
  2. if "%1"=="a" goto start
  3. if "%1"=="A" goto start
  4. if "%1"=="b" goto start
  5. if "%1"=="B" goto start
  6. echo.
  7. echo This copy process needs 2 blank, formatted high-density disks.
  8. echo.
  9. echo The syntax for copying is:
  10. echo %0 A   - to copy to drive A
  11. echo %0 B   - to copy to drive B
  12. echo.
  13. goto exit
  14. :start
  15. echo.
  16. echo This copy process needs 2 blank, formatted high-density disks.
  17. echo.
  18. echo Insert a blank, formatted high-density disk in %1:
  19. echo If you want to cancel this process, press Ctrl-C now.
  20. pause
  21. echo Copying files to Disk 1
  22. xcopy articles\*.* %1:\articles\
  23. xcopy namystic\*.* %1:\namystic\
  24. xcopy polytris\*.* %1:\polytris\
  25. xcopy triventr\*.* %1:\triventr\
  26. xcopy utilpak2\*.* %1:\utilpak2\
  27. xcopy *.exe %1:\
  28. xcopy *.shl %1:\
  29. xcopy copy112.bat %1:\
  30. echo.
  31. echo Insert a blank, formatted high-density disk in %1:
  32. echo If you want to cancel this process, press Ctrl-C now.
  33. pause
  34. echo Coping files to Disk 2
  35. xcopy articles\*.* %1:\articles\
  36. xcopy clipart\*.* %1:\clipart\
  37. xcopy wizeguy\*.* %1:\wizeguy\
  38. xcopy wordsqrs\*.* %1:\wordsqrs\
  39. xcopy *.exe %1:\
  40. xcopy *.shl %1:\
  41. xcopy copy112.bat %1:\
  42. echo.
  43. echo Finished copying SDPC VGA #112 to %1:
  44. echo.
  45. :exit
  46.  
  47.