home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
-
- QExpUnit > nul
-
- IF ERRORLEVEL 255 GOTO ERROR
-
- IF ERRORLEVEL 7 GOTO EXP7
- IF ERRORLEVEL 6 GOTO EXP6
- IF ERRORLEVEL 4 GOTO EXP4
- IF ERRORLEVEL 2 GOTO EXP2
- IF ERRORLEVEL 1 GOTO EXP1
- IF ERRORLEVEL 0 GOTO EXP0
-
-
- :EXP0
- REM
- REM Start the programs here which are to be run when undock, or
- REM the port replicator without PCMCIA slots is connected to the computer
- REM
- GOTO END
-
-
- :EXP1
- REM
- REM Start the programs here which are to be run when the port replicator
- REM with PCMCIA slots is connected to the computer
- REM
- GOTO END
-
-
- :EXP2
- REM
- REM Start the programs here which are to be run when the Dock I
- REM is connected to the computer
- REM
- GOTO END
-
-
- :EXP4
- REM
- REM Start the programs here which are to be run when the Dock II
- REM is connected to the computer
- REM
- GOTO END
-
-
- :EXP6
- REM
- REM Start the programs here which are to be run when the SelectaDock II
- REM is connected to the computer
- REM
- GOTO END
-
-
- :EXP7
- REM
- REM Start the programs here which are to be run when the SelectaDock I
- REM is connected to the computer
- REM
- GOTO END
-
-
- :ERROR
- ECHO This version of QExpUnit will not run on this computer
-
-
- :END
-
-