home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Buyer 1996 May
/
buyer-0596.iso
/
business
/
bplan
/
bpw-cd
/
lanset.bat
< prev
next >
Wrap
DOS Batch File
|
1994-03-23
|
744b
|
31 lines
@echo off
cls
echo:
echo This program will initialize setup on some problematic networks that
echo mislead Setup due to irregular mapping and configuration.
echo:
if "%1"=="" goto SyntaxErr
echo Please wait while initializing Setup . . .
echo:
expand BPWSETUP.EX_ %1\BPWSETUP.EXE
expand SETUPKIT.DL_ %1\SETUPKIT.DLL
expand VBRUN300.DL_ %1\VBRUN300.DLL
echo:
echo Your initial setup is now completed. You can now proceed with normal
echo setup by running 'BPWSETUP.EXE A:' or 'BPWSETUP.EXE B:' found in the
echo Windows directory, from the File / Run menu in Program Manager.
echo:
goto end
:SyntaxErr
echo Syntax : lanset [Windows drive and directory]
echo:
echo ex: lanset F:\WINDOWS
echo:
:end