home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 15
/
CD_ASCQ_15_070894.iso
/
maj
/
2258
/
etnet.bat
< prev
next >
Wrap
DOS Batch File
|
1994-06-09
|
281b
|
19 lines
@echo off
if %1==on goto setnet
If %1==off goto unset
goto end
:setnet
md system
copy etnet.bat system\etcai.net
echo .
echo NETWORKING INSTALLED -- SHARE MUST BE ACTIVE.
echo .
goto end
:unset
del system\etcai.net
echo .
echo NETWORKING UNINSTALLED
echo .
:end