home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- echo INSTALLING VBRUN DLLs...
- echo.
-
- :VerifyStartup
- if "%1"=="" goto BadStartup
-
- :DoCopyDefault
- if not "%2"=="" goto DoCopyCustom
- if not exist c:\windows\system\nul goto BadDirName
- xcopy /v %1\vbrun*.dll c:\windows\system
- goto End
-
- :DoCopyCustom
- if not exist %2\nul goto BadDirName
- xcopy /v %1\vbrun*.dll %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
-