home *** CD-ROM | disk | FTP | other *** search
/ The People Multimedia CD-Plus / VolumeOne.iso / TEDIT / SETUP.BAT < prev    next >
DOS Batch File  |  1996-06-22  |  294b  |  20 lines

  1. @ECHO OFF
  2. CLS
  3. echo Setup will now copy the Tedit files to the directory C:\Tedit
  4. choice /c:YN Do you want to continue 
  5. if errorlevel 2 goto NOACT
  6.  
  7. CD\TEDIT
  8. MD C:\TEDIT
  9. COPY *.* C:\TEDIT
  10. cls
  11. ECHO Setup completed!
  12. goto END
  13.  
  14. :NOACT
  15. ECHO TEDIT not installed!
  16. goto END
  17.  
  18. :END
  19. EXIT
  20.