Extracting information

  • Thread starter Thread starter Al Mackay
  • Start date Start date
A

Al Mackay

Tried searching on the newsgroups for this and have visited sites as
recommended by people (including www.developer.com,
www.exchangeadmin.com, www.slipstick.com + www.slovaktech.com).

What I need to be able to do (if possible?), is basically extract an
entry for each e-mail within a 'Shared Folder' to a text file with the
folder name that it has come from and the date the e-mail was last
modified (or created).

I've gone through Tools, Services - and then within Microsoft Exchange
Server (as one of the information services) this is where the shared
e-mail service is recorded.

Appreciate any advise that anyone can offer on this (even if this is
that it is not possible to do?...).

The reason I am doing this is that I need to be able to report on
monthly stats that come into the shared folder, this also contains
several folders which contain our replies depending on the queries
raised.

Appreciate your time, Regards - Al Mackay ([email protected])
 
Assuming you have permissions for that folder from your Outlook login
you can use NameSpace.GetSharedDefaultFolder to open the folder, use
its Items collection to access the items in the folder and check the
CreationTime and LastModificationTime properties for each item. The
folder name would be MAPIFolder.Name. See the Object Browser help for
some code samples that show how to use the GetSharedDefaultFolder
method.
 
Back
Top