home *** CD-ROM | disk | FTP | other *** search
- echo off
- if "%1"=="" goto noparam
- if "%1"=="called" goto called
- %1:
- :noparam
- if exist \gemapps\finesse.app goto ready
- c:
- if exist \gemapps\finesse.app goto ready
- d:
- if exist \gemapps\finesse.app goto ready
- e:
- if exist \gemapps\finesse.app goto ready
- echo Cannot find the hard disk where FINESSE was installed.
- echo Please type CLIPART followed by the destination disk letter (c, d, ...)
- goto theend
- :ready
- cd \gemapps
- md template
- md images
- copy a:pkunzip.exe
- copy a:clipart.bat
- clipart called
- rem this is a trick to execute from the hard disk
- :called
- if exist a:template.arc goto takeit
- echo Please insert the Image Library Disk in drive A
- pause
- :takeit
- pkunzip a:template template
- pkunzip a:images images
- del pkunzip.exe
- rem we could delete clipart.bat, but DOS would come up with
- rem a user-confusing message about an inexistent batch file
- :theend
-