Automation

Gaspari

New Member
I have a rather technical question about eMail Bounce Handler. Currently the program must be launched in order for it to run. To have full automation I'd need to create a shortcut to eMail Bounce Handler in my Start Folder. This should be fine but I'd like to know if it's possible to have a BATCH file start the program, send parameters (such as run) and then export a file. Ideas?

For those interested, you can setup eMail Bounce Handler as a Windows service w/the following information.

1 - go to your Windows Start button
2 - go to RUN, type 'cmd' then click ENTER and a black window will open
3 - (assuming you let the program install w/the default folder) enter this into the black window then click ENTER:
Code:
sc create "eMail Bounce Handler" binPath= "C:\Program Files\eMail Bounce Handler\eMail Bounce Handler.exe" start= auto

The above will create a Windows service that starts automatically when your computer is turned on. If you need to delete it simply go through steps 1-2 and for step 3, enter this:

Code:
sc delete "eMail Bounce Handler"
 
Top