home *** CD-ROM | disk | FTP | other *** search
- @echo off
- :v-check
- v-check
- IF ERRORLEVEL 3 GOTO v_newer
- IF ERRORLEVEL 2 GOTO v_older
- IF ERRORLEVEL 1 GOTO v_not_installed
- IF ERRORLEVEL 0 GOTO v_installed
-
-
- :v_newer
- Echo This verison of VIRSTOP is newer than expected.
- goto :end
-
- :v_older
- Echo This version of VIRSTOP is older than expected.
- goto :end
-
- :v_not_installed
- Echo VIRSTOP is not installed, consequently NOVCAST can not be used!
- goto :end
-
- :v_installed
- Echo VIRSTOP is installed.
- goto :b-check
-
- :b-check
- b-check
- IF ERRORLEVEL 1 GOTO b_not_installed
- IF ERRORLEVEL 0 GOTO b_installed
- goto :end
-
- :b_installed
- echo Broadcasting TSR (NOVCAST/BANCAST) is installed.
- rem Here you can do whatever is necessary if Broadcasting TSR
- rem is installed.
- goto :end
-
- :b_not_installed
- echo Broadcasting TSR (NOVCAST/BANCAST) is not installed!
- rem Here you can do whatever is necessary if Broadcasting TSR
- rem is not installed.
- goto :end
-
- :end
-
-
-
-
-