home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / comm / vmg30.zip / VM.DAT / MB.BAT < prev    next >
DOS Batch File  |  1993-03-04  |  1KB  |  83 lines

  1. @echo off
  2. connect %1
  3.  
  4. if errorlevel 150 goto strange
  5. if errorlevel 130 goto fax
  6. if errorlevel 120 goto nocarrier
  7. if errorlevel 90 goto c19200
  8. if errorlevel 80 goto c16800
  9. if errorlevel 70 goto c14400
  10. if errorlevel 60 goto c12000
  11. if errorlevel 50 goto c9600
  12. if errorlevel 40 goto c7200
  13. if errorlevel 30 goto c4800
  14. if errorlevel 20 goto c2400
  15. if errorlevel 10 goto noresponse
  16.  
  17. goto end
  18.  
  19. :strange
  20. echo strange response
  21. goto end
  22.  
  23. :fax
  24. e:\zyxel\zfax\rcvfax 1 /p:%2 /r:0 /w:e:\anruf\fax
  25. goto end
  26.  
  27. :nocarrier
  28. echo no carrier
  29. goto end
  30.  
  31. :c19200
  32. AT %1 "Bitte warten..."
  33. cd \ra
  34. ra -C%1 -B19200
  35. goto end
  36.  
  37. :c16800
  38. AT %1 "Bitte warten..."
  39. cd \ra
  40. ra -C%1 -B16800
  41. goto end
  42.  
  43. :c14400
  44. AT %1 "Bitte warten..."
  45. cd \ra
  46. ra -C%1 -B14400
  47. goto end
  48.  
  49. :c12000
  50. AT %1 "Bitte warten..."
  51. cd \ra
  52. ra -C%1 -B12000
  53. goto end
  54.  
  55. :c9600
  56. AT %1 "Bitte warten..."
  57. cd \ra
  58. ra -C%1 -B9600
  59. goto end
  60.  
  61. :c7200
  62. AT %1 "Bitte warten..."
  63. cd \ra
  64. ra -C%1 -B7200
  65. goto end
  66.  
  67. :c4800
  68. AT %1 "Bitte warten..."
  69. cd \ra
  70. ra -C%1 -B4800
  71. goto end
  72.  
  73. :c2400
  74. AT %1 "Bitte warten..."
  75. cd \ra
  76. ra -C%1 -B2400
  77. goto end
  78.  
  79. :noresponse
  80. echo no response
  81.  
  82. :end
  83.