home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Online Praxis 1997 March
/
OP2_97.BIN
/
cd-rom
/
treiber
/
itk
/
w311
/
primd243.exe
/
CAPI.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-11-14
|
849b
|
47 lines
@echo off
if "%1" == "" goto load
if "%1" == "-d" goto deinstall
if "%1" == "-D" goto deinstall
if "%1" == "/d" goto deinstall
if "%1" == "/D" goto deinstall
if "%1" == "-?" goto help
if "%1" == "/?" goto help
if "%1" == "-h" goto help
if "%1" == "/h" goto help
:load_file
ixcapi -d
ixload %1
if errorlevel 1 goto exit
ixcapi
goto ende
:help
echo CAPI Version 2.43
echo (c) Copyright ITK AG Dortmund, 1995
echo Usage:
echo CAPI [-d]
echo or
echo CAPI [protocolfile]
echo -d removes CAPI-Driver from PC-memory
echo protocolfile name of protocolsoftware - default: ix.bin
goto exit
:load
ixcapi -d
ixload
if errorlevel 1 goto exit
ixcapi
goto ende
:deinstall
ixcapi -d
ixload
goto exit
:ende
rem rdeeprom
:exit