home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / GENUTIL / NTF100.ZIP / SAMPLE.BAT < prev    next >
DOS Batch File  |  1996-07-04  |  1KB  |  33 lines

  1. @ECHO OFF
  2. REM ****************************************************
  3. REM This is sample code for NTFOSS
  4. REM Modifications are necessary for the right parameters
  5. REM Not all modems support 115200! Be carefull!
  6. REM ****************************************************
  7. IF NOT "%OS%"=="Windows_NT" REM Load old Fossil driver
  8. IF "%OS%"=="Windows_NT" NTFOSS.COM /A0 /L1 COM2 BAUD=115200
  9. REM **********************************************
  10. REM Use this section for ISDN installation
  11. REM (Maybe increase Receive and Transmit buffer in steps of 512 bytes!
  12. REM  Parameters: /R /T)
  13. REM **********************************************
  14. REM IF NOT "%OS%"=="Windows_NT" REM Load old Fossil driver
  15. REM IF "%OS%"=="Windows_NT" NTFOSS.COM /A0 /L1 /R 4096 /T 4096 COM2 BAUD=115200
  16. REM Same, but bigger buffers
  17. REM IF "%OS%"=="Windows_NT" NTFOSS.COM /A0 /L1 /R 10240 /T 10240 COM2 BAUD=115200
  18. REM **********************************************
  19. REM If you have performance troubles read FAQ.DOC!
  20. REM **********************************************
  21. REM If your application uses FOSSIL input and output routines
  22. REM and requires ANSI an ANSI driver should be installed.
  23. ANSI
  24. REM If your application requires VFOSSIL
  25. REM VFOS_IBM
  26. REM ***********************
  27. REM Start here your program
  28. REM ***********************
  29. REM VFOS_DEL
  30. ANSI /U
  31. IF NOT "%OS%"=="Windows_NT" REM Remove old Fossil driver
  32. IF "%OS%"=="Windows_NT" NTFOSS /U
  33.