Enables system administrators to view and evaluate individual users‘ usage and experience with Microsoft Exchange Server.
via Download Microsoft Exchange Server User Monitor from Official Microsoft Download Center.
Enables system administrators to view and evaluate individual users‘ usage and experience with Microsoft Exchange Server.
via Download Microsoft Exchange Server User Monitor from Official Microsoft Download Center.
you have to enable connecotor logs with verbose log level!
do the same for following files
connector logs have a rollover for log files, so if you set a high level for logging, you may have a fewer time range, but more Information
Get-ReceiveConnector | Set-ReceiveConnector -ProtocolLoggingLevel Verbose
Get-TransportService | Set-TransportService -IntraOrgConnectorProtocolLoggingLevel verbose
Get-MailboxTransportService | Set-MailboxTransportService -MailboxDeliveryConnectorProtocolLoggingLevel Verbose
for Exchange 2013
um einen Client-Request am Exchange-Server zu verfolgen
use Disable-InMemoryTracing.ps1 to disable tracing of Exchange
other intersting scripts of exchange via Exchange 2013 Scripts on Server | DonnIgway.
Get-MapiVirtualDirectory | Set-MapiVirtualDirectory -InternalUrl https://exchangehostname/mapi -ExternalUrl https://exchangehostname/mapi -IISAuthenticationMethods Negotiate,NTLM,Basic
Set-OrganizationConfig -MapiHttpEnabled $true
use forfiles (or something like that) for log rollover of Exchange Server to free up disk space – implement it for following folders
C:\Program Files\Microsoft\Exchange Server\V15\Bin\Search\Ceres\Diagnostics\ETLTraces
C:\Program Files\Microsoft\Exchange Server\V15\Bin\Search\Ceres\Diagnostics\Logs
C:\Program Files\Microsoft\Exchange Server\V15\Logging
C:\Program Files\Microsoft\Exchange Server\V15\Logging\Diagnostics\PerformanceLogsToBeProcessed
C:\Program Files\Microsoft\Exchange Server\V15\Logging\Monitoring\Monitoring\MSExchangeHMWorker\ActiveMonitoringTraceLogs
C:\Program Files\Microsoft\Exchange Server\V15\TransportRoles\data\Temp
C:\inetpub\logs
exp: forfiles /p C:\inetpub\logs /m *.log /s /d -10 /c „cmd /c DEL @path“
alternativ with Powershell:
Function Remove-ToolsLog($olderThenDays){
Set-ToolsLogAddLine -LogTXT „Remove old log files“ -Foregroundcolor „green“
$logPath = Split-Path $Script:LogFilePath -Parent
Get-ChildItem -path $logPath | Where-Object { !$_.PSIsContainer -and $_.Extension -eq „.log“ -and $_.CreationTime -lt (Get-Date).AddDays(–$olderThenDays) } | Remove-Item -Force
}
use LogExpert or LogParser to analyse logs of Exchange or other Microsoft products
LogExpert
https://logexpert.codeplex.com/releases/view/610775
LogParser
http://www.microsoft.com/en-us/download/details.aspx?id=24659
remove Folder C:\Program Files\Microsoft\Exchange Server\V15\Logging\lodctr_backups after Installation of Exchange or an CU upgrade to free up disk space