So we understand the capability to export logs to CSV and to connect to SQL and we are planning to implement the latter. Right now we have logging enabled for 6 months. We received an audit request that exceeded that time period - we need information from February. We have restored the AdaxesLog.db3 file - we just need some instructions on how to open it up and read the data.
The first link you sent provides a powershell script to bind to the live AdaxesLog.db3 file:
# Bind to the service log
$path = $Context.GetWellKnownContainerPath("ServiceLog")
$serviceLog = $Context.BindToObject($path)
Is there a way to point $path to an alternate .db3 file?
Thanks again!