home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo This batch file creates a directory named c:\bw and copies
- echo files to it. To stop batch file, hold the control (Ctrl) key
- echo and press the Break key.
- pause Press a key to continue.
- md c:\bw >nul
- copy bw.exe c:\bw > nul
- copy list.com c:\bw > nul
- copy qlist c:\bw > nul
- copy readme c:\bw > nul
- copy readme.bat c:\bw > nul
- copy register.frm c:\bw > nul
- copy twb c:\bw > nul
- copy verses.niv c:\bw > nul
- rem if not exist c:\windows\win.ini goto nowin
- rem copy vbrun100.dll c:\windows > nul
- echo For information on running the program, see the readme file.
- pause
- goto done
- :nowin
- echo I can't find your windows subdirectory.
- echo You will have to copy the file named vbrun100.dll to that directory.
- :done