Changing logging level using the Exchange Management Shell and Exchange Management Console

In this post I will describe how to set logging levels on your various Exchange logs. Earlier, I received event id 9327, with a source of MSExchangeSA in the event log on our Exchange server that is responsible for generating the offline address list. In order to find the offending entries in the address list, it was necessary to change the logging level for OAL generator:

Event ID: 9327 Source: MSExchangeSA Task Category: OAL Generator

There are 2 methods you can use to set this. The first is via the Exchange Management Shell. You can check the current logging levels for your various exchange logs by issuing the following command in the Exchange Management Shell:

Get-EventLogLevel

This will list logging levels for all Exchange logs, but will also give you the identities of all of the different Exchange logs, which you will need for the next step.

Output from the Get-EventLogLevel command

In this instance, we are interested in the OAL Generator which can be found towards the bottom of the list under ‘MSExchangeSA\OAL Generator’, which is also the identity which we will need for the next command. The logging level for this entry was set to lowest:

OAL Generator showing a logging level of lowest

To change the logging level you can issue the following command using the identity that you discovered in the step above:

Set-EventLogLevel -Identity “MSExchangeSA\OAL Generator” -Level Medium

You can then verify that the new logging level has been set by issuing the Get-EventLogLevel command again:

OAL Generator showing a logging level of medium

If you feel more at home using the Exchange Management Console GUI, the same result can be achieved by doing the following. First open EMC and expand ‘Mailbox’, under ‘Server Configuration’. Next right click on the server that you want to set the logging level for and choose ‘Manage Diagnostic Logging Properties’ as shown below:

Choosing 'Manage Diagnostic Logging Properties' using the Exchange Management Console

Finally, in the ‘Manage Diagnostic Logging Properties’ screen, find the service that you are interested in and set the necessary logging level as appropriate, as show below, then click ‘Configure’, and you’re done.

Setting the logging level using the Exchange Management Console

Advertisement

Get a users mobile device details using the Exchange Management Shell

Here is a quick command to get the details of a particular users mobile device or smartphone, including the device ID and the time it last synced, etc, using the Exchange Management Shell. When you type the command replace Username, with the name of the user that you wish to examine:

Get-ActiveSyncDeviceStatistics -Mailbox Username | Format-List

Display mobile device statistics using get-activesyncdevicestatistics

Ref:

http://technet.microsoft.com/en-us/library/aa996908(EXCHG.80).aspx

Could not load the file or assembly Microsoft.Web.Administration Version=7.0.0.0 when running the Exchange Management Console

Earlier today I received the following error message while using the Exchange 2007 32bit Admin tools on a Windows 7 client computer, when trying to access information under ‘Server Configuration’ in the Exchange Management Console:

 

“Could not load file or assembly ‘Microsoft.Web.Administration, Version 7.0.0.0, Culture=neutral,PublicKeyToken=31bf3856ad364e35’ or one of its dependencies. The system cannot find the file specified.”

Error message Could not load file or assembly Microsoft.Web.Administration

 

To correct this error I opened the ‘Turn Windows features on or off’ screen and enabled the Internet Information Services (IIS) Web Management Tools, as shown below:

 

Enabling the IIS Web Management Tools in Windows 7

 

I then restarted the Exchange Management Console and the desired functionality was restored.