home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 August / PCO0897.ISO / filesbbs / dos / fdt.arj / DEMOSENG.ZIP / DEMO.BAT next >
Encoding:
DOS Batch File  |  1996-02-29  |  2.1 KB  |  100 lines

  1. @echo off
  2. ::
  3. :: DEMO - Batch for FDT
  4. ::
  5. :: Createt  15.08.95    H.Stoevesandt
  6. ::
  7. ::
  8. :: Info:
  9. ::
  10. :: This batch will demonstrate some examples for FDT. i have a look of your
  11. :: data, when i programmed this. You can it start without any change of your
  12. :: FD-Data. Many functions of FDT are created to have look or/and make change
  13. :: FD-Data. But this batch NOT.
  14. ::
  15.  
  16. IF %FD%/==/ Goto NoFDVar
  17. ::GOTO X4
  18.  
  19. ECHO.
  20. ECHO Overview over the last 14 day's
  21. ECHO.
  22.  
  23. FDT /L=.\FDT.LOG LAST
  24. TYPE FDTLAST.HIS
  25. DEL FDTLAST.HIS
  26. pause
  27.  
  28. :X1
  29. ECHO.
  30. ECHO NETMAIL - Overview, to identify whats on hold
  31. ECHO.
  32. FDT /L=.\FDT.LOG WOH /O=.\WOH.TXT
  33. TYPE WOH.TXT|more
  34. DEL WOH.TXT
  35. pause
  36.  
  37. :X2
  38. ECHO.
  39. ECHO writing Netmails
  40. ECHO.
  41.  
  42. ECHO dear Heiko,>TMP.$$$
  43. ECHO.>>TMP.$$$
  44. ECHO I have a look to FDT how it works.>>TMP.$$$
  45. ECHO.>>TMP.$$$
  46. ECHO Ciao,>>TMP.$$$
  47.  
  48. ECHO From: Sysop
  49. ECHO   To: Heiko Stoevesandt, CIA (2:2426/3000)
  50. ECHO   Re: FDT-TEST
  51. ECHO ----------------------------------------------------------------
  52. TYPE TMP.$$$
  53. FDT /L=.\FDT.LOG ROBO TEXT /R2:2426/3000 /TTMP.$$$ "/FFDT-TEST"
  54. DEL TMP.$$$
  55. PAUSE
  56.  
  57. :X3
  58. ECHO.
  59. ECHO the last 20 caller of your system
  60. ECHO.
  61.  
  62. FDT /L=.\FDT.LOG MAILHIST /I+ /W+ /Z /A=20 /R
  63. TYPE %FD%.\TRAFFIC.1
  64. ECHO.
  65. pause
  66. DEL %FD%.\TRAFFIC.1
  67. DEL %FD%.\TRAFFIC.2
  68.  
  69. :X4
  70. CLS
  71. ECHO this is a small overview how to do with FDT.
  72. ECHO.
  73. ECHO this are only simple Sample from the Infopoll from FDT. The most used
  74. ECHO function is the InforScreen of FDT. This is a very heavy infopool
  75. ECHO and will you look your FD-Line(s) as one system.
  76. ECHO.
  77. ECHO start this: FDT INF
  78. ECHO.
  79. ECHO FDT will starts EVENTS (!!) when forced ect. Use to test up this
  80. ECHO a great TASKnumber (eg. FDT INF /T251).
  81. ECHO.
  82. ECHO More information, what can you do with the FDT-Infoscreen, you can find
  83. ECHO by typing ALT-H
  84. ECHO.
  85. ECHO a lot of fun with FD & FDT wish...
  86. ECHO                                    ... Heiko Stoevesandt
  87. PAUSE
  88. ECHO.
  89. ECHO take a look in the LOG-File that was created by using this Batch with FDT.
  90. ECHO.
  91. goto Ende
  92.  
  93. :NoFDVar
  94. ECHO.
  95. ECHO FD-variable not set! This is a MUST for this batch.
  96. ECHO.
  97. goto Ende
  98.  
  99. :Ende
  100.