home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- CLS
- echo Setup will now copy the Tedit files to the directory C:\Tedit
- choice /c:YN Do you want to continue
- if errorlevel 2 goto NOACT
-
- CD\TEDIT
- MD C:\TEDIT
- COPY *.* C:\TEDIT
- cls
- ECHO Setup completed!
- goto END
-
- :NOACT
- ECHO TEDIT not installed!
- goto END
-
- :END
- EXIT
-