home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Family Learning
/
Family_Learning_CD-ROM_Laser_Magic__1995.iso
/
_debug
/
2.bat
< prev
next >
Wrap
DOS Batch File
|
1994-07-11
|
512b
|
29 lines
@echo off
echo INSTALLING THREED.VBX...
echo.
:VerifyStartup
if "%1"=="" goto BadStartup
:DoCopyDefault
if not "%2"=="" goto DoCopyCustom
if not exist c:\windows\system\nul goto BadDirName
copy %1\threed.vbx c:\windows\system
goto End
:DoCopyCustom
if not exist %2\nul goto BadDirName
copy %1\threed.vbx %2
goto End
:BadStartup
echo ERROR--These batch files cannot be run without DEBUG.EXE
goto End
:BadDirName
echo ERROR--The specified directory does not exist.
goto End
:End