home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if x%1 == x goto usage
- if not exist %1 mkdir %1
- copy *.exe %1 >nul
- copy *.hlp %1 >nul
- copy *.doc %1 >nul
- copy active %1 >nul
- copy config %1 >nul
- set YARN=%1
- echo Put this line to your AUTOEXEC.BAT file:
- echo SET YARN=%1
- goto end
- :usage
- echo usage: install [drive:]directory
- echo.
- echo Installs Yarn in the specified directory.
- echo Important: Choose a drive with a lot of free space.
- echo The news will be stored here.
- :end
-