home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TopWare 18: Liquid
/
Image.iso
/
liquid
/
top2018
/
setup.bat
< prev
next >
Wrap
DOS Batch File
|
1994-04-15
|
468b
|
25 lines
@echo off
if "%1" == "" goto usuage
if not exist winview.exe goto nodefault
echo Copying files...
echo on
xcopy winview.* %1
xcopy *.d?l %1
goto end
:usuage
echo type setup windows_directory
echo for example, if windows is loaded in c:\windows type:
echo setup c:\windows
goto end
:nowin
echo %1\win.com not found - not windows directory
goto end
:nodefault
echo Must run setup from the disk/drive the Win-View files are on
:end