In Exchange 2003, you need to go to "Diagnostic logging tab" in Exchange server properties to enable required logging. This has been simplified in Exchange 2007 and now you can do it through Exchange Shell.
List Logging Levels (Get-EventLogLevel)
To get the current logging levels of a Exchange 2007 server, run the below command. You put your server name after "-server". If you don't specify any it will display the logging levels of local server. The logging level list varies depending on the role of the Exchange 2007 server (MBX, CAS, HTS).
Get-EventLogLevel -Server MYSERVER
Set Logging Level (Set-EventLogLevel)
You can increase the logging level of any listed identify to one of the below values. Below levels are self explanatory and I am hoping no need of further descriptions of them.
- Lowest
- Low
- Medium
- High
Set-EventLogLevel "MSExchange ADAceess\Validation" -Level High
You can do it remaining for identities as well in similar way. Good Luck and Happy Learning..
Sitaram Pamarthi
No comments:
Post a Comment