home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo ┌────────────────────────────────────────────────┐
- echo │ INSTALL │
- echo │ PowerTracks PRO for Windows │ │
- echo │ Copyright (c) 1993 by PG Music Inc. │
- echo └────────────────────────────────────────────────┘
- echo
- if %1x==x goto ParmErr
- if %2x==x goto ParmErr
- echo
- echo Ready to install PowerTracks PRO from %1 to %2
- echo Press any key to continue... (Ctrl C to stop )
- echo
- pause > nul
- md %2 > nul
- cd %2
- cd %1
- copy %1\*.txt %2
- copy %1\*.ttf %2
-
- dunpack %1\*.??$ %2\
-
- goto Success
- :ParmErr
- echo Install %1 %2 %3 %4 %5
- echo
- echo In order to install the program , you need
- echo to specify the source and destination to
- echo install the program from and to.
- echo
- echo Usage: INSTDOS SRC: DEST:
- echo
- echo For example INSTDOS A: C:\PT
- echo
- goto Fail
- echo
- :Fail
- echo Please retype as above, adding the source and destination
- echo subdirectories. The source is the name of the floppy
- echo drive that you're installing from .We suggest C:\pt
- echo as the destination subdirectory.
- goto End
- :Success
- rem cls
- cd %2
- echo INSTALLATION of PowerTracks for Windows successful
- echo You need to do 2 things to complete installation into Windows
- echo To complete installation of PowerTracks for Windows
- echo 1 Install PTW.EXE ICON into Program Manager using File New
- echo 2 Copy the font file PGMUSIC.TTF into your
- echo c:\windows\system subdirectory. This must be done from
- echo DOS and not from a DOS window inside Windows.
- echo
- echo 3 Run PTW by double clicking on the PTW icon
- :End
- echo
-