I'm puzzled with this problem:
I downloaded and installed a nice spam filter, called "email express!"

It seems to meet my needs, but I need a way to start and stop it when I start
and stop my dial up connection. If I leave the filter running when I'm off line, it
becomes unresponsive the next time I check the mail.

I copied and pasted and modified some VBScript code from the net:

Code:
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run("%windir%\RUNDLL32.EXE RNAUI.DLL,RnaDial Internet")
WshShell.Run("C:\Progra~1\Emaile~1\EmailExpress!.exe")
ReturnCode = WshShell.Run("%windir%\RUNDLL32.EXE RNAUI.DLL,RnaDial Internet", 1, True)
So far, this script will start the connection, and the filter, but I've been unable to
discover a way to shut down the processes from a VBScript.
Am I barking up the wrong tree? My system is win98, and I also have perl on
the system, but don't know any perl either.