Does anyone know where Exchange Admin Center (EAC) store the configuration. I writting an application to collect Message Tracking Log configuration from Exchange Server. Thus, i need some programmable way to get Message Tracking Log Path from Exchange Server.
I configured Message Tracking Log Path on EAC gui. Then, I used ADSI and found the
mxExchMessageTrackingPath
attribute underConfiguration/Services/Exchange Server/<Organization Name>/Servers/<Exchange Server Name>/Transport Configuration/Mailbox
but it seem not being set. Other log path configurations are also not as the same as the value i configured on EAC gui.Is there any way to get these settings from Exchange Server. Thanks!
Answer
Run below command to get message tracking log path:
Get-TransportService | Format-List MessageTrackingLog*
For more details: Configure message tracking in Exchange Server and Transport logs in Exchange Server
Attribution
Source : Link , Question Author : Clite Tailor , Answer Author : Joy Zhang