home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1995 April / PCPRO_595.ISO / fprot / update.bat < prev    next >
Encoding:
DOS Batch File  |  1995-01-15  |  940 b   |  49 lines

  1. @echo off
  2. :v-check
  3. v-check
  4. IF ERRORLEVEL 3 GOTO v_newer
  5. IF ERRORLEVEL 2 GOTO v_older
  6. IF ERRORLEVEL 1 GOTO v_not_installed
  7. IF ERRORLEVEL 0 GOTO v_installed
  8.  
  9.  
  10. :v_newer
  11. Echo This verison of VIRSTOP is newer than expected.
  12. goto :end
  13.  
  14. :v_older
  15. Echo This version of VIRSTOP is older than expected.
  16. goto :end
  17.  
  18. :v_not_installed
  19. Echo VIRSTOP is not installed, consequently NOVCAST can not be used!
  20. goto :end
  21.  
  22. :v_installed
  23. Echo VIRSTOP is installed.
  24. goto :b-check
  25.  
  26. :b-check
  27. b-check
  28. IF ERRORLEVEL 1 GOTO b_not_installed
  29. IF ERRORLEVEL 0 GOTO b_installed
  30. goto :end
  31.  
  32. :b_installed
  33. echo Broadcasting TSR (NOVCAST/BANCAST) is installed.
  34. rem  Here you can do whatever is necessary if Broadcasting TSR
  35. rem  is installed.
  36. goto :end
  37.  
  38. :b_not_installed
  39. echo Broadcasting TSR (NOVCAST/BANCAST) is not installed!
  40. rem Here you can do whatever is necessary if Broadcasting TSR
  41. rem is not installed.
  42. goto :end
  43.  
  44. :end
  45.  
  46.  
  47.  
  48.  
  49.