home *** CD-ROM | disk | FTP | other *** search
- @echo off
- ::
- :: DEMO - Batch for FDT
- ::
- :: Createt 15.08.95 H.Stoevesandt
- ::
- ::
- :: Info:
- ::
- :: This batch will demonstrate some examples for FDT. i have a look of your
- :: data, when i programmed this. You can it start without any change of your
- :: FD-Data. Many functions of FDT are created to have look or/and make change
- :: FD-Data. But this batch NOT.
- ::
-
- IF %FD%/==/ Goto NoFDVar
- ::GOTO X4
-
- ECHO.
- ECHO Overview over the last 14 day's
- ECHO.
-
- FDT /L=.\FDT.LOG LAST
- TYPE FDTLAST.HIS
- DEL FDTLAST.HIS
- pause
-
- :X1
- ECHO.
- ECHO NETMAIL - Overview, to identify whats on hold
- ECHO.
- FDT /L=.\FDT.LOG WOH /O=.\WOH.TXT
- TYPE WOH.TXT|more
- DEL WOH.TXT
- pause
-
- :X2
- ECHO.
- ECHO writing Netmails
- ECHO.
-
- ECHO dear Heiko,>TMP.$$$
- ECHO.>>TMP.$$$
- ECHO I have a look to FDT how it works.>>TMP.$$$
- ECHO.>>TMP.$$$
- ECHO Ciao,>>TMP.$$$
-
- ECHO From: Sysop
- ECHO To: Heiko Stoevesandt, CIA (2:2426/3000)
- ECHO Re: FDT-TEST
- ECHO ----------------------------------------------------------------
- TYPE TMP.$$$
- FDT /L=.\FDT.LOG ROBO TEXT /R2:2426/3000 /TTMP.$$$ "/FFDT-TEST"
- DEL TMP.$$$
- PAUSE
-
- :X3
- ECHO.
- ECHO the last 20 caller of your system
- ECHO.
-
- FDT /L=.\FDT.LOG MAILHIST /I+ /W+ /Z /A=20 /R
- TYPE %FD%.\TRAFFIC.1
- ECHO.
- pause
- DEL %FD%.\TRAFFIC.1
- DEL %FD%.\TRAFFIC.2
-
- :X4
- CLS
- ECHO this is a small overview how to do with FDT.
- ECHO.
- ECHO this are only simple Sample from the Infopoll from FDT. The most used
- ECHO function is the InforScreen of FDT. This is a very heavy infopool
- ECHO and will you look your FD-Line(s) as one system.
- ECHO.
- ECHO start this: FDT INF
- ECHO.
- ECHO FDT will starts EVENTS (!!) when forced ect. Use to test up this
- ECHO a great TASKnumber (eg. FDT INF /T251).
- ECHO.
- ECHO More information, what can you do with the FDT-Infoscreen, you can find
- ECHO by typing ALT-H
- ECHO.
- ECHO a lot of fun with FD & FDT wish...
- ECHO ... Heiko Stoevesandt
- PAUSE
- ECHO.
- ECHO take a look in the LOG-File that was created by using this Batch with FDT.
- ECHO.
- goto Ende
-
- :NoFDVar
- ECHO.
- ECHO FD-variable not set! This is a MUST for this batch.
- ECHO.
- goto Ende
-
- :Ende
-