home *** CD-ROM | disk | FTP | other *** search
- @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
-