Issues updating to Exchange Service Pack 2

Event ID: 1310Source: ASP.NET 2.0.50727.0Exception message: Could not load file or assembly 'Microsoft.Exchange.Security, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. (C:Program FilesMicrosoftExchange ServerV14ClientAccessAutodiscoverweb.config line 940) C:Program FilesMicrosoftExchange ServerV14ClientAccessAutodiscoverweb.configC:Program FilesMicrosoftExchange ServerV14ClientAccessPowerShellweb.configThe transport process couldn't load poison message information from the registry. Access to the registry failed with the following error: Access to the registry key 'HKEY_LOCAL_MACHINESOFTWAREMicrosoftExchangeServer 14TransportPoisonMessageBootProcess' is denied.Administrators: Full ControlSystem: Full ControlNetwork Service: Full Controlhttp://technet.microsoft.com/en-us/library/ff360361(v=exchg.140).aspxThe Pickup directory doesn't have permissions to write the pickup location to registry (HKEY_LOCAL_MACHINESOFTWAREMicrosoftExchangeServer 14Pickup). Please make sure Network Service has Full Control to the registry location. The error was System.UnauthorizedAccessException: Access to the registry key 'HKEY_LOCAL_MACHINESOFTWAREMicrosoftExchangeServer 14Pickup' is denied.Ran a Health Check with exbpa'ClientAccessRole' not configured'HubTransportRole' not configuredEnded up with System Center Endpoint Protection being the issue. Added %ProgramFiles%MicrosoftExchange Server in the exclusion list.

Restricting booking of conference rooms

If you run the following command you will see that the default BookInPolicy is set to true, which means that everyone can use this resource.
 
Get-CalendarProcessing -Identity room-alias | fl *policy*
 
If you want to restrict access to this resource, set this to false.
 
Set-CalendarProcessing -Identity room-alias -AllBookInPolicy:$false
 
Then run the same command but exchange :$false with the mailbox user or the distribution group which should have access to the resource.
 
Set-CalendarProcessing -Identity room-alias -AllBookInPolicy <mailbox user/distribution group>
 
If you want to revert the changes made, run the following commands.
 
Set-CalendarProcessing -Identity room-alias -AllBookInPolicy:$true
Set CalendarProcessing -Identity room-alias -BookInPolicy:$none
 
 

RSS 2.0