Getting the following error downloading the addressbook with Outlook 2003 and Exchange 2007Task ‘Microsoft Exchange Server’ reported error (0×8004010F) : ‘The operation failed. An object could not be found.’ To debug OAB creation in Exchange 2007 you need to turn up the Eventlogging level for the OABTodo so do the following in Powershell.
Get Current Exchange OAB Eventlogging level.Get-EventLogLevel “MSExchangeSA\OAL Generator” Set-EventLogLevel -Identity “MSExchangeSA\OAL Generator” –Level Expert
Remember to disable the logging when you are finished troubleshooting.
Set-EventLogLevel -Identity “MSExchangeSA\OAL Generator” –Level Lowest
In the end i found two accounts with invalid smtp addresses which the logs identifed easily.
your ads here (468x60) - after 1st post.
Setup SMTP mail receiver
new-receiveconnector -Name ‘Receive from Internet’ -Bindings 0.0.0.0:25 -RemoteIPRanges 0.0.0.0-255.255.255.255 -permissionGroups “AnonymousUsers,ExchangeServers,ExchangeLegacyServers,AnonymousUsers”
Setup Receive MAX Message size 25MB
set-receiveconnector ‘Receive from Internet’ -MaxMessageSize 25Mb
Setup STMP mail sender deliver by DNS resolution
new-SendConnector -Name ‘Sent to Internet’ -Usage ‘Internet’ -AddressSpaces ’smtp:*;1′ -ForceHELO $true -Fqdn mail.domain.com.au -DNSRoutingEnabled $true -UseExternalDNSServersEnabled $false -SourceTransportServers ‘SERVER-EX01′
Setup STMP mail sender deliver using Smarthost
new-SendConnector -Name ‘Sent to Internet’ -Usage ‘Internet’ -AddressSpaces ’smtp:*;1′ -ForceHELO $true -Fqdn mail.domain.com.au -DNSRoutingEnabled $false -SmartHosts ‘[192.168.0.5]‘ -SmartHostAuthMechanism ‘None’ -UseExternalDNSServersEnabled $false -SourceTransportServers ‘SERVER-EX01′
Obviously replace the server name, fqdn and smarthost in the scripts.