Skip to main content

Importing Message Tracking Logs into a Database without using WMI

A while ago I wrote a little Message Tracking Log application that I posted here on OutlookExchange. Somebody asked me today for a way to import a lot of tracking logs that they have archived in a directory where using WMI wasn't really going to be applicable. Fortunately this isn't that hard a thing to do, the message tracking logs are in essence a tab delimited text file with a few twists. The first twist is you really want to ignore the first 5 lines and the second is there is a double Line Feed at the end of each line. But because this is consistent it isn't hard to script around this.

So to do the hardwork of sorting out the tab delimited data in VBS you can use the Split command which will split the contents of each line into separate array elements where the delimiter separates the column. You still need to apply the same functions such as converting GMT time to local time and the time and data retrievals are a little different as they are stored in a little bit of a weird format.

The last hurdle was to front the code with something that would go though every file in a directory which can be done using the filesystem object.

The result was the following script that imports tracking log data into the database out of the article I mentioned.



set shell = createobject("wscript.shell")
strValueName = "HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation\ActiveTimeBias"
minTimeOffset = shell.regread(strValueName)
toffset = datediff("h",DateAdd("n", minTimeOffset, now()),now())
Set fso = CreateObject("Scripting.FileSystemObject")
Set Cnxn1 = CreateObject("ADODB.Connection")
strCnxn1 = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=d:\Trackinglog.mdb;"
Cnxn1.Open strCnxn1
set f = fso.getfolder("c:\logdir")
Set fc = f.Files
For Each file1 in fc
wscript.echo file1.path
importtodb(file1.path)
next
wscript.echo "Done"

function importtodb(fname)
set wfile = fso.opentextfile(fname,1,true)
for i = 1 to 5
wfile.skipline
next
nline = wfile.readline
do until wfile.AtEndOfStream
if instr(nline," ") then
inplinearray = Split(nline, " ", -1, 1)
if inplinearray(8) = "1020" or inplinearray(8) = "1028" then
ClientIP = inplinearray(2)
if (isnull(ClientIP)) then ClientIP = "N/A"
Entrytype = inplinearray(8)
if (isnull(Entrytype)) then Entrytype = "N/A"
Subject = inplinearray(18)
if (isnull(Subject)) then Subject = "N/A"
RecipientAddress1 = inplinearray(7)
if (isnull(RecipientAddress1)) then RecipientAddress1 = "N/A"
RecipientCount = inplinearray(13)
if (isnull(RecipientCount)) then RecipientCount = "N/A"
SenderAddress = inplinearray(19)
if (isnull(SenderAddress)) then SenderAddress = "N/A"
size1 = inplinearray(12)
if (isnull(size1)) then size1 = "N/A"
datearray = split(inplinearray(0),"-",-1,1)
timearray = split(inplinearray(1),":",-1,1)
odate = dateserial(datearray(0),datearray(1),datearray(2))
otime = timeserial(timearray(0),timearray(1),0)
odate = dateadd("h",toffset,cdate(odate & " " & otime))
wtowrite = "('" & condate(odate) & "','" & formatdatetime(odate,4) & "','" & ClientIP & "','" & EntryType & "','" & RecipientCount & "','" & SenderAddress & "','" & RecipientAddress1 & "','" & left(replace(subject,"'"," "),254) & "','" & size1 & "')"
sqlstate1 = "INSERT INTO TrackingLogRaw ( [Date], [Time], [client-ip], [Event-ID], NoRecipients, [Sender-Address], [Recipient-Address], [Message-Subject], [total-bytes] ) values " & wtowrite
Cnxn1.Execute(sqlstate1)
end if
end if
nline = wfile.readline
loop
wfile.close
set wfile = nothing
end function


function condate(date2con)
dtcon = date2con
if month(dtcon) < 10 then
if day(dtcon) < 10 then
qdat = year(dtcon) & "0" & month(dtcon) & "0" & day(dtcon)
else
qdat = year(dtcon) & "0" & month(dtcon) & day(dtcon)
end if
else
if day(dtcon) < 10 then
qdat = year(dtcon) & month(dtcon) & "0" & day(dtcon)
else
qdat = year(dtcon) & month(dtcon) & day(dtcon)
end if
end if
condate = qdat
end function

Popular posts from this blog

The MailboxConcurrency limit and using Batching in the Microsoft Graph API

If your getting an error such as Application is over its MailboxConcurrency limit while using the Microsoft Graph API this post may help you understand why. Background   The Mailbox  concurrency limit when your using the Graph API is 4 as per https://docs.microsoft.com/en-us/graph/throttling#outlook-service-limits . This is evaluated for each app ID and mailbox combination so this means you can have different apps running under the same credentials and the poor behavior of one won't cause the other to be throttled. If you compared that to EWS you could have up to 27 concurrent connections but they are shared across all apps on a first come first served basis. Batching Batching in the Graph API is a way of combining multiple requests into a single HTTP request. Batching in the Exchange Mail API's EWS and MAPI has been around for a long time and its common, for email Apps to process large numbers of smaller items for a variety of reasons.  Batching in the Gr...

EWS-FAI Module for browsing and updating Exchange Folder Associated Items from PowerShell

Folder Associated Items are hidden Items in Exchange Mailbox folders that are commonly used to hold configuration settings for various Mailbox Clients and services that use Mailboxes. Some common examples of FAI's are Categories,OWA Signatures and WorkHours there is some more detailed documentation in the https://msdn.microsoft.com/en-us/library/cc463899(v=exchg.80).aspx protocol document. In EWS these configuration items can be accessed via the UserConfiguration operation https://msdn.microsoft.com/en-us/library/office/dd899439(v=exchg.150).aspx which will give you access to either the RoamingDictionary, XMLStream or BinaryStream data properties that holds the configuration depending on what type of FAI data is being stored. I've written a number of scripts over the years that target particular FAI's (eg this one that reads the workhours  http://gsexdev.blogspot.com.au/2015/11/finding-timezone-being-used-in-mailbox.html is a good example ) but I didn't have a gene...

Sending a MimeMessage via the Microsoft Graph using the Graph SDK, MimeKit and MSAL

One of the new features added to the Microsoft Graph recently was the ability to create and send Mime Messages (you have been able to get Message as Mime for a while). This is useful in a number of different scenarios especially when trying to create a Message with inline Images which has historically been hard to do with both the Graph and EWS (if you don't use MIME). It also opens up using SMIME for encryption and a more easy migration path for sending using SMTP in some apps. MimeKit is a great open source library for parsing and creating MIME messages so it offers a really easy solution for tackling this issue. The current documentation on Send message via MIME lacks any real sample so I've put together a quick console app that use MSAL, MIME kit and the Graph SDK to send a Message via MIME. As the current Graph SDK also doesn't support sending via MIME either there is a workaround for this in the future my guess is this will be supported.
All sample scripts and source code is provided by for illustrative purposes only. All examples are untested in different environments and therefore, I cannot guarantee or imply reliability, serviceability, or function of these programs.

All code contained herein is provided to you "AS IS" without any warranties of any kind. The implied warranties of non-infringement, merchantability and fitness for a particular purpose are expressly disclaimed.