Exchange Server name instead of User in reports
Netwrix Auditor report shows the Exchange server name instead of the user name in the Who changed column for group membership changes.
Cause
This happens because by default the LogLevel parameter of the Administrator Audit Log is set to None, and the following properties are included in log entries:
CmdletNameObjectNameParameters(values)CallerSucceededRunDate
However, the data required to show the correct Who changed is missing because ModifiedProperties (old and new) and ModifiedObjectResolvedName properties are NOT included in the log entries when LogLevel is None.
Resolution
You must change the LogLevel parameter from None to Verbose so the ModifiedProperties (old and new) and ModifiedObjectResolvedName properties are included in the audit log entries.
- Open Exchange Management Shell.
- Run the following cmdlet to enable verbose logging:
Set-AdminAuditLogConfig -LogLevel Verbose
The output should look like this:
[PS] C:Windowssystem32>Set-AdminAuditLogConfig -LogLevel Verbose
WARNING: The admin audit log configuration change you specified could take up to 60 minutes to take effect.
- After that, run the following cmdlet and check that
LogLevelis set toVerbose:
Get-AdminAuditLogConfig
You should see:
LogLevel : Verbose
Once LogLevel is set to Verbose, Netwrix Auditor will receive the ModifiedProperties and ModifiedObjectResolvedName information and will be able to display the correct user in the Who changed column for group membership changes.