Create a mailing list of Outlook Connector users

I once had a request to populate a mailing list with Outlook Connector users.  Below is the script that was born.

The script assumes a hardcoded listname of “[email protected]”, use Notepad to search and replace [email protected] with the correct list name.

Also, you need to manually create the list in MDaemon first, otherwise the script will fail.  Lastly, be aware that you cannot manually add users to the list, the entire membership list is wiped and replaced each time the script runs.  The intention is to run the script automatically on a schedule to keep the list up to date.

@ECHO OFF
CD C:\MDaemon\App
IF NOT EXIST GroupWareUsers.dat goto ERROR
IF NOT EXIST [email protected] goto ERROR
COPY [email protected] [email protected]
FIND “;” < [email protected] > [email protected]
FIND “@” < GroupWareUsers.Dat >> [email protected]
GOTO END
:ERROR
ECHO Could not find needed file, check and make sure GroupWareUsers.dat and [email protected] exist
:END