Advertisement
Guest User

Setup

a guest
Aug 3rd, 2016
590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 303.45 KB | None | 0 0
  1. install-DefaultAcceptedDomain -Name $RoleFullyQualifiedDomainName -DomainName $RoleFullyQualifiedDomainName -DomainController $RoleDomainController
  2.  
  3.  
  4. [08/03/2016 13:46:54.0244] [2] Active Directory session settings for 'Install-DefaultAcceptedDomain' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  5. [08/03/2016 13:46:54.0244] [2] User specified parameters: -Name:'contoso.com' -DomainName:'contoso.com' -DomainController:'SERVERDC2.contoso.com'
  6. [08/03/2016 13:46:54.0244] [2] Beginning processing install-DefaultAcceptedDomain
  7. [08/03/2016 13:46:54.0244] [2] Processing object "contoso.com".
  8. [08/03/2016 13:46:54.0260] [2] Ending processing install-DefaultAcceptedDomain
  9. [08/03/2016 13:46:54.0260] [1] Executing:
  10. install-Container -Name:"Transport Settings","Interceptor Rules" -DomainController $RoleDomainController
  11.  
  12.  
  13. [08/03/2016 13:46:54.0260] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  14. [08/03/2016 13:46:54.0260] [2] User specified parameters: -Name:'Transport Settings','Interceptor Rules' -DomainController:'SERVERDC2.contoso.com'
  15. [08/03/2016 13:46:54.0260] [2] Beginning processing install-Container
  16. [08/03/2016 13:46:54.0260] [2] Processing object "Interceptor Rules".
  17. [08/03/2016 13:46:54.0260] [2] Ending processing install-Container
  18. [08/03/2016 13:46:54.0260] [1] Executing:
  19. install-EmailAddressPolicy -DomainController $RoleDomainController
  20.  
  21.  
  22. [08/03/2016 13:46:54.0276] [2] Active Directory session settings for 'Install-EmailAddressPolicy' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  23. [08/03/2016 13:46:54.0276] [2] User specified parameters: -DomainController:'SERVERDC2.contoso.com'
  24. [08/03/2016 13:46:54.0276] [2] Beginning processing install-EmailAddressPolicy
  25. [08/03/2016 13:46:54.0276] [2] Processing object "Recipient Policies".
  26. [08/03/2016 13:46:54.0291] [2] Ending processing install-EmailAddressPolicy
  27. [08/03/2016 13:46:54.0291] [1] Executing:
  28. $acceptedDomains = @{};
  29. Get-AcceptedDomain | foreach {
  30. $domainName = $_.DomainName.ToString();
  31. if ($acceptedDomains.Contains($domainName)) {
  32. Write-ExchangeSetupLog -Warning "Duplicate AcceptedDomain found. '$($acceptedDomains[$domainName])' and '$($_.Name)' both reference domain '$domainName'";
  33. } else {
  34. $acceptedDomains.Add($domainName, $_.Name);
  35. };
  36. };
  37.  
  38. function getSmtpTemplates ([string]$property)
  39. {
  40. $input |
  41. Select-Object -ExpandProperty $property |
  42. Where-Object {$_.PrefixString -eq "SMTP"} |
  43. Foreach-Object {$_.AddressTemplateString -replace ".*@", ""};
  44. }
  45.  
  46.  
  47. function addDomains ([Microsoft.Exchange.Data.Directory.SystemConfiguration.AcceptedDomainType]$domainType)
  48. {
  49. $domain = $null;
  50. $input |
  51. Where-Object {-not $acceptedDomains.ContainsKey($_) -and -not $acceptedDomains.ContainsKey("*.$_")} |
  52. Where-Object {[Microsoft.Exchange.Data.SmtpDomainWithSubdomains]::TryParse($_, [ref] $domain)} |
  53. Foreach-Object {
  54.  
  55. $name = $domain.ToString();
  56.  
  57. # Test to see if email address policy matches a recipient policy
  58. # with a wildcard domain before adding it
  59. $needToAddDomain = $true;
  60. While ($name.Contains(".")) {
  61. $index = $name.IndexOf(".") + 1;
  62. $name = $name.Substring($index);
  63. if ($acceptedDomains.ContainsKey("*.$name")) {
  64. $needToAddDomain = $false;
  65. Break;
  66. };
  67. };
  68.  
  69. if ($needToAddDomain) {
  70. $name = $domain.ToString();
  71. if ($name.Length -gt 64) { $name = $name.Substring(0, 64) };
  72. if ($acceptedDomains.ContainsValue($name) ) {$name = [System.Guid]::NewGuid().ToString()};
  73.  
  74. New-AcceptedDomain -Name:$name -DomainName:$domain -DomainType:$domainType;
  75. $acceptedDomains[$domain.ToString()] = $name;
  76. };
  77. };
  78. }
  79.  
  80. $emailAddressPolicies = Get-EmailAddressPolicy;
  81. $emailAddressPolicies | getSmtpTemplates "NonAuthoritativeDomains" | addDomains "InternalRelay";
  82. $emailAddressPolicies | getSmtpTemplates "EnabledEmailAddressTemplates" | addDomains "Authoritative";
  83.  
  84. [08/03/2016 13:46:54.0291] [2] Active Directory session settings for 'Get-AcceptedDomain' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  85. [08/03/2016 13:46:54.0291] [2] User specified parameters:
  86. [08/03/2016 13:46:54.0291] [2] Beginning processing Get-AcceptedDomain
  87. [08/03/2016 13:46:54.0291] [2] Searching objects of type "AcceptedDomain" with filter "$null", scope "SubTree" under the root "$null".
  88. [08/03/2016 13:46:54.0291] [2] Request filter in Get Task: (&(objectCategory=msExchAcceptedDomain)(!(msExchAcceptedDomainFlags=16))(!(msExchAcceptedDomainFlags=17))(|(&(msExchVersion<=1125899906842624)(!(msExchVersion=1125899906842624)))(!(msExchVersion=*)))).
  89. [08/03/2016 13:46:54.0307] [2] Previous operation run on domain controller 'SERVERDC2.contoso.com'.
  90. [08/03/2016 13:46:54.0307] [2] Preparing to output objects. The maximum size of the result set is "Unlimited".
  91. [08/03/2016 13:46:54.0322] [2] Ending processing Get-AcceptedDomain
  92. [08/03/2016 13:46:54.0322] [2] Active Directory session settings for 'Get-EmailAddressPolicy' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  93. [08/03/2016 13:46:54.0322] [2] User specified parameters:
  94. [08/03/2016 13:46:54.0322] [2] Beginning processing Get-EmailAddressPolicy
  95. [08/03/2016 13:46:54.0322] [2] Searching objects of type "EmailAddressPolicy" with filter "(PolicyOptionListValue Equal System.Byte[])", scope "SubTree" under the root "Recipient Policies".
  96. [08/03/2016 13:46:54.0322] [2] Request filter in Get Task: (&(msExchPolicyOptionList=\FC\1C\49\26\50\9E\57\48\86\1B\0C\B8\DF\22\B5\D7)(objectCategory=msExchRecipientPolicy)(|(&(msExchVersion<=1125899906842624)(!(msExchVersion=1125899906842624)))(!(msExchVersion=*)))).
  97. [08/03/2016 13:46:54.0322] [2] Internal Query Filter in Get Task: (PolicyOptionListValue Equal System.Byte[]).
  98. [08/03/2016 13:46:54.0338] [2] Previous operation run on domain controller 'SERVERDC2.contoso.com'.
  99. [08/03/2016 13:46:54.0338] [2] Preparing to output objects. The maximum size of the result set is "Unlimited".
  100. [08/03/2016 13:46:54.0369] [2] Searching objects of type "EmailAddressPolicy" with filter "(PolicyOptionListValue NotEqual System.Byte[])", scope "SubTree" under the root "Recipient Policies".
  101. [08/03/2016 13:46:54.0369] [2] Ending processing Get-EmailAddressPolicy
  102. [08/03/2016 13:46:54.0400] [1] Executing:
  103. Write-ExchangeSetupLog -Info "Set the default Accepted domain from the default recipient policy";
  104. $defaultEmailAddressPolicy = get-EmailAddressPolicy -Identity:"Default Policy";
  105.  
  106. $defaultSmtpTemplate = $defaultEmailAddressPolicy.EnabledPrimarySMTPAddressTemplate;
  107.  
  108. $index = $defaultSmtpTemplate.IndexOf("@") + 1;
  109. $eapAuthoritativeDomain = $defaultSmtpTemplate.Substring($index);
  110.  
  111. $acceptedDomains = Get-AcceptedDomain;
  112. $defaultDomain = $acceptedDomains | Where {$_.DomainName -eq $eapAuthoritativeDomain -or $_.DomanName -eq "*.$eapAuthoritativeDomain" };
  113.  
  114. # If an accepted domain couldn't be found which matches the default email address policy, then try and find
  115. # the wildcard domain which matches it and set that as the default
  116. While ($defaultDomain -eq $null -and $eapAuthoritativeDomain.Contains(".")) {
  117. $index = $eapAuthoritativeDomain.IndexOf(".") + 1;
  118. $eapAuthoritativeDomain = $eapAuthoritativeDomain.Substring($index);
  119. $defaultDomain = $acceptedDomains | Where {$_.DomainName -eq "*.$eapAuthoritativeDomain" };
  120. };
  121.  
  122. $defaultDomain | set-accepteddomain -MakeDefault:$true;
  123. Write-ExchangeSetupLog -Info "Default domain $defaultDomain";
  124.  
  125. [08/03/2016 13:46:54.0400] [2] Beginning processing Write-ExchangeSetupLog
  126. [08/03/2016 13:46:54.0400] [2] Set the default Accepted domain from the default recipient policy
  127. [08/03/2016 13:46:54.0400] [2] Ending processing Write-ExchangeSetupLog
  128. [08/03/2016 13:46:54.0400] [2] Active Directory session settings for 'Get-EmailAddressPolicy' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  129. [08/03/2016 13:46:54.0400] [2] User specified parameters: -Identity:'Default Policy'
  130. [08/03/2016 13:46:54.0400] [2] Beginning processing get-EmailAddressPolicy
  131. [08/03/2016 13:46:54.0400] [2] Searching objects "Default Policy" of type "EmailAddressPolicy" under the root "$null".
  132. [08/03/2016 13:46:54.0432] [2] Previous operation run on domain controller 'SERVERDC2.contoso.com'.
  133. [08/03/2016 13:46:54.0432] [2] Previous operation run on domain controller 'SERVERDC2.contoso.com'.
  134. [08/03/2016 13:46:54.0432] [2] Preparing to output objects. The maximum size of the result set is "Unlimited".
  135. [08/03/2016 13:46:54.0447] [2] Ending processing get-EmailAddressPolicy
  136. [08/03/2016 13:46:54.0447] [2] Active Directory session settings for 'Get-AcceptedDomain' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  137. [08/03/2016 13:46:54.0447] [2] User specified parameters:
  138. [08/03/2016 13:46:54.0447] [2] Beginning processing Get-AcceptedDomain
  139. [08/03/2016 13:46:54.0447] [2] Searching objects of type "AcceptedDomain" with filter "$null", scope "SubTree" under the root "$null".
  140. [08/03/2016 13:46:54.0447] [2] Request filter in Get Task: (&(objectCategory=msExchAcceptedDomain)(!(msExchAcceptedDomainFlags=16))(!(msExchAcceptedDomainFlags=17))(|(&(msExchVersion<=1125899906842624)(!(msExchVersion=1125899906842624)))(!(msExchVersion=*)))).
  141. [08/03/2016 13:46:54.0447] [2] Previous operation run on domain controller 'SERVERDC2.contoso.com'.
  142. [08/03/2016 13:46:54.0447] [2] Preparing to output objects. The maximum size of the result set is "Unlimited".
  143. [08/03/2016 13:46:54.0463] [2] Ending processing Get-AcceptedDomain
  144. [08/03/2016 13:46:54.0463] [2] Active Directory session settings for 'Set-AcceptedDomain' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  145. [08/03/2016 13:46:54.0463] [2] User specified parameters: -MakeDefault:'True'
  146. [08/03/2016 13:46:54.0463] [2] Beginning processing set-accepteddomain
  147. [08/03/2016 13:46:54.0478] [2] Searching objects "contoso.com" of type "AcceptedDomain" under the root "$null".
  148. [08/03/2016 13:46:54.0494] [2] Previous operation run on domain controller 'SERVERDC2.contoso.com'.
  149. [08/03/2016 13:46:54.0494] [2] Processing object "contoso.com".
  150. [08/03/2016 13:46:54.0541] [2] No properties changed for the object "contoso.com".
  151. [08/03/2016 13:46:54.0541] [2] [WARNING] The command completed successfully but no settings of 'contoso.com' have been modified.
  152. [08/03/2016 13:46:54.0541] [2] Saving object "contoso.com" of type "AcceptedDomain" and state "Unchanged".
  153. [08/03/2016 13:46:54.0541] [2] Previous operation run on domain controller 'SERVERDC2.contoso.com'.
  154. [08/03/2016 13:46:54.0541] [2] Ending processing set-accepteddomain
  155. [08/03/2016 13:46:54.0557] [2] Beginning processing Write-ExchangeSetupLog
  156. [08/03/2016 13:46:54.0557] [2] Default domain contoso.com
  157. [08/03/2016 13:46:54.0557] [2] Ending processing Write-ExchangeSetupLog
  158. [08/03/2016 13:46:54.0557] [1] Executing:
  159. Install-Container -Name:"Connections" -DomainController $RoleDomainController
  160.  
  161.  
  162. [08/03/2016 13:46:54.0557] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  163. [08/03/2016 13:46:54.0557] [2] User specified parameters: -Name:'Connections' -DomainController:'SERVERDC2.contoso.com'
  164. [08/03/2016 13:46:54.0557] [2] Beginning processing Install-Container
  165. [08/03/2016 13:46:54.0557] [2] Processing object "Connections".
  166. [08/03/2016 13:46:54.0557] [2] Ending processing Install-Container
  167. [08/03/2016 13:46:54.0557] [1] Executing:
  168. New-ExchangeAssistanceConfig -DomainController $RoleDomainController
  169.  
  170.  
  171. [08/03/2016 13:46:54.0557] [2] Active Directory session settings for 'New-ExchangeAssistanceConfig' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  172. [08/03/2016 13:46:54.0557] [2] User specified parameters: -DomainController:'SERVERDC2.contoso.com'
  173. [08/03/2016 13:46:54.0557] [2] Beginning processing New-ExchangeAssistanceConfig
  174. [08/03/2016 13:46:54.0572] [2] Processing object "ExchangeAssistance".
  175. [08/03/2016 13:46:54.0572] [2] Ending processing New-ExchangeAssistanceConfig
  176. [08/03/2016 13:46:54.0572] [1] Executing:
  177. Install-GlobalSettingsContainer -Name:"Global Settings" -DomainController $RoleDomainController
  178.  
  179.  
  180. [08/03/2016 13:46:54.0572] [2] Active Directory session settings for 'Install-GlobalSettingsContainer' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  181. [08/03/2016 13:46:54.0572] [2] User specified parameters: -Name:'Global Settings' -DomainController:'SERVERDC2.contoso.com'
  182. [08/03/2016 13:46:54.0572] [2] Beginning processing Install-GlobalSettingsContainer
  183. [08/03/2016 13:46:54.0572] [2] Processing object "Global Settings".
  184. [08/03/2016 13:46:54.0588] [2] Ending processing Install-GlobalSettingsContainer
  185. [08/03/2016 13:46:54.0588] [1] Executing:
  186. Install-MessageDeliveryContainer -DomainController $RoleDomainController
  187.  
  188.  
  189. [08/03/2016 13:46:54.0588] [2] Active Directory session settings for 'install-MessageDeliveryContainer' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  190. [08/03/2016 13:46:54.0588] [2] User specified parameters: -DomainController:'SERVERDC2.contoso.com'
  191. [08/03/2016 13:46:54.0588] [2] Beginning processing Install-MessageDeliveryContainer
  192. [08/03/2016 13:46:54.0588] [2] Processing object "Message Delivery".
  193. [08/03/2016 13:46:54.0588] [2] Ending processing Install-MessageDeliveryContainer
  194. [08/03/2016 13:46:54.0588] [1] Executing:
  195. Install-DefaultMessageFilterContainer -DomainController $RoleDomainController
  196.  
  197.  
  198. [08/03/2016 13:46:54.0588] [2] Active Directory session settings for 'install-DefaultMessageFilterContainer' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  199. [08/03/2016 13:46:54.0588] [2] User specified parameters: -DomainController:'SERVERDC2.contoso.com'
  200. [08/03/2016 13:46:54.0588] [2] Beginning processing Install-DefaultMessageFilterContainer
  201. [08/03/2016 13:46:54.0588] [2] Processing object "Default Message Filter".
  202. [08/03/2016 13:46:54.0603] [2] Ending processing Install-DefaultMessageFilterContainer
  203. [08/03/2016 13:46:54.0603] [1] Executing:
  204. Install-DefaultConnectionFilterContainer -DomainController $RoleDomainController
  205.  
  206.  
  207. [08/03/2016 13:46:54.0603] [2] Active Directory session settings for 'install-DefaultConnectionFilterContainer' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  208. [08/03/2016 13:46:54.0603] [2] User specified parameters: -DomainController:'SERVERDC2.contoso.com'
  209. [08/03/2016 13:46:54.0603] [2] Beginning processing Install-DefaultConnectionFilterContainer
  210. [08/03/2016 13:46:54.0603] [2] Processing object "Default Connection Filter".
  211. [08/03/2016 13:46:54.0603] [2] Ending processing Install-DefaultConnectionFilterContainer
  212. [08/03/2016 13:46:54.0603] [1] Executing:
  213. Install-InternetMessageFormat -DomainController $RoleDomainController
  214.  
  215.  
  216. [08/03/2016 13:46:54.0603] [2] Active Directory session settings for 'Install-InternetMessageFormat' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  217. [08/03/2016 13:46:54.0603] [2] User specified parameters: -DomainController:'SERVERDC2.contoso.com'
  218. [08/03/2016 13:46:54.0603] [2] Beginning processing Install-InternetMessageFormat
  219. [08/03/2016 13:46:54.0619] [2] Processing object "Internet Message Formats".
  220. [08/03/2016 13:46:54.0635] [2] Ending processing Install-InternetMessageFormat
  221. [08/03/2016 13:46:54.0635] [1] Executing:
  222. buildToBuildUpgrade-ExsetDataAtom -AtomName OrgCtChildren -DomainController $RoleDomainController
  223.  
  224.  
  225. [08/03/2016 13:46:54.0635] [2] Active Directory session settings for 'BuildToBuildUpgrade-ExsetdataAtom' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  226. [08/03/2016 13:46:54.0635] [2] User specified parameters: -AtomName:'OrgCtChildren' -DomainController:'SERVERDC2.contoso.com'
  227. [08/03/2016 13:46:54.0635] [2] Beginning processing buildToBuildUpgrade-ExsetDataAtom
  228. [08/03/2016 13:46:54.0635] [2] Calling exsetdata atom OrgCtChildren in mode "Reinstall".
  229. [08/03/2016 13:46:54.0635] [2] Entering ScSetAdminGroupNamesOnManagedCodeContext
  230. [08/03/2016 13:46:54.0635] [2] Leaving ScSetAdminGroupOnManagedCodeContext
  231. [08/03/2016 13:46:54.0635] [2] Entering ScSetupAtom
  232. [08/03/2016 13:46:54.0635] [2] Parameters:
  233. [08/03/2016 13:46:54.0635] [2] idsAtomID: 0X0000FAB3 ("Microsoft Exchange Organization-Level container children")
  234. [08/03/2016 13:46:54.0635] [2] idsSetupMode: 0X0000F203 ("Reinstall")
  235. [08/03/2016 13:46:54.0635] [2] szDestDir: "C:\Windows\Temp\ExchangeSetup" [context value is: "C:\Windows\Temp\ExchangeSetup"]
  236. [08/03/2016 13:46:54.0635] [2] szSourceDir: "C:\Windows\Temp\ExchangeSetup" [context value is: "C:\Windows\Temp\ExchangeSetup"]
  237. [08/03/2016 13:46:54.0635] [2] szOrg: "" [context value is: "contoso"]
  238. [08/03/2016 13:46:54.0635] [2] szLegacyOrg: "" [context value is: "contoso"]
  239. [08/03/2016 13:46:54.0635] [2] szAdminGroup: "Exchange Administrative Group (FYDIBOHF23SPDLT)" [context value is: "Exchange Administrative Group (FYDIBOHF23SPDLT)"]
  240. [08/03/2016 13:46:54.0635] [2] szLegacyAdminGroup: "Exchange Administrative Group (FYDIBOHF23SPDLT)" [context value is: "Exchange Administrative Group (FYDIBOHF23SPDLT)"]
  241. [08/03/2016 13:46:54.0635] [2] szAdminGroupContainingRoutingGroup: "Exchange Administrative Group (FYDIBOHF23SPDLT)" [context value is: "Exchange Administrative Group (FYDIBOHF23SPDLT)"]
  242. [08/03/2016 13:46:54.0635] [2] szRoutingGroup: "Exchange Routing Group (DWBGZMFD01QNBJR)" [context value is: "Exchange Routing Group (DWBGZMFD01QNBJR)"]
  243. [08/03/2016 13:46:54.0635] [2] Entering CAtomOrgCtChildren::ScPreSetup
  244. [08/03/2016 13:46:54.0635] [2] Entering CBaseServiceAtom(Microsoft Exchange Organization-Level container children)::ScPreSetup
  245. [08/03/2016 13:46:54.0635] [2] Entering CBaseServiceAtom(Microsoft Exchange Organization-Level container children)::ScStopAtomServices
  246. [08/03/2016 13:46:54.0635] [2] Leaving CBaseServiceAtom(Microsoft Exchange Organization-Level container children)::ScStopAtomServices
  247. [08/03/2016 13:46:54.0635] [2] Leaving CBaseServiceAtom(Microsoft Exchange Organization-Level container children)::ScPreSetup
  248. [08/03/2016 13:46:54.0635] [2] Leaving CAtomOrgCtChildren::ScPreSetup
  249. [08/03/2016 13:46:54.0635] [2] Beginning Reinstall of Microsoft Exchange Organization-Level container children sub-component.
  250. [08/03/2016 13:46:54.0635] [2] Entering CBaseAtom(Microsoft Exchange Organization-Level container children)::ScRefreshDSObjects
  251. [08/03/2016 13:46:54.0635] [2] Creating Active Directory objects for Microsoft Exchange Organization-Level container children.
  252. [08/03/2016 13:46:54.0635] [2] Creating addressing container
  253. [08/03/2016 13:46:54.0635] [2] Entering CAtomOrgCtChildren::ScCreateOrgLevelAddressingCTAndObjs
  254. [08/03/2016 13:46:54.0635] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  255. Error code 0X8000500D (20493): This property can't be found in the cache.
  256. [08/03/2016 13:46:54.0635] [2] Entering CAtomOrgCtChildren::ScLinkTemplateRoot
  257. [08/03/2016 13:46:54.0635] [2] Leaving CAtomOrgCtChildren::ScLinkTemplateRoot
  258. [08/03/2016 13:46:54.0650] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  259. Error code 0X8000500D (20493): This property can't be found in the cache.
  260. [08/03/2016 13:46:54.0650] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  261. Error code 0X8000500D (20493): This property can't be found in the cache.
  262. [08/03/2016 13:46:54.0650] [2] Leaving CAtomOrgCtChildren::ScCreateOrgLevelAddressingCTAndObjs
  263. [08/03/2016 13:46:54.0650] [2] Creating templates
  264. [08/03/2016 13:46:54.0650] [2] Entering CAtomOrgCtChildren::ScUpdateTemplates
  265. [08/03/2016 13:46:54.0650] [2] Attempt to get an exclusive access to the directory
  266. [08/03/2016 13:46:54.0650] [2] Checking if the user has enough persmissions to update templates.
  267. [08/03/2016 13:46:54.0650] [2] Entering ScHavePermissionToCreateDSObject
  268. [08/03/2016 13:46:54.0650] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  269. Error code 0X8000500D (20493): This property can't be found in the cache.
  270. [08/03/2016 13:46:54.0650] [2] Leaving ScHavePermissionToCreateDSObject
  271. [08/03/2016 13:46:54.0650] [2] User has enough permissions to update templates.
  272. [08/03/2016 13:46:55.0524] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  273. Error code 0X8000500D (20493): This property can't be found in the cache.
  274. [08/03/2016 13:46:55.0524] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  275. Error code 0X8000500D (20493): This property can't be found in the cache.
  276. [08/03/2016 13:46:55.0524] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  277. Error code 0X8000500D (20493): This property can't be found in the cache.
  278. [08/03/2016 13:46:55.0524] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  279. Error code 0X8000500D (20493): This property can't be found in the cache.
  280. [08/03/2016 13:46:55.0540] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  281. Error code 0X8000500D (20493): This property can't be found in the cache.
  282. [08/03/2016 13:46:55.0540] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  283. Error code 0X8000500D (20493): This property can't be found in the cache.
  284. [08/03/2016 13:46:55.0540] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=419/cn=0
  285. [08/03/2016 13:46:55.0540] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  286. Error code 0X8000500D (20493): This property can't be found in the cache.
  287. [08/03/2016 13:46:55.0571] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=419/cn=1
  288. [08/03/2016 13:46:55.0571] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  289. Error code 0X8000500D (20493): This property can't be found in the cache.
  290. [08/03/2016 13:46:55.0602] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=419/cn=2
  291. [08/03/2016 13:46:55.0602] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  292. Error code 0X8000500D (20493): This property can't be found in the cache.
  293. [08/03/2016 13:46:55.0634] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=419/cn=3
  294. [08/03/2016 13:46:55.0634] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  295. Error code 0X8000500D (20493): This property can't be found in the cache.
  296. [08/03/2016 13:46:55.0681] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=419/cn=6
  297. [08/03/2016 13:46:55.0681] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  298. Error code 0X8000500D (20493): This property can't be found in the cache.
  299. [08/03/2016 13:46:55.0727] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  300. Error code 0X8000500D (20493): This property can't be found in the cache.
  301. [08/03/2016 13:46:55.0727] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  302. Error code 0X8000500D (20493): This property can't be found in the cache.
  303. [08/03/2016 13:46:55.0727] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  304. Error code 0X8000500D (20493): This property can't be found in the cache.
  305. [08/03/2016 13:46:55.0727] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  306. Error code 0X8000500D (20493): This property can't be found in the cache.
  307. [08/03/2016 13:46:55.0727] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  308. Error code 0X8000500D (20493): This property can't be found in the cache.
  309. [08/03/2016 13:46:55.0727] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  310. Error code 0X8000500D (20493): This property can't be found in the cache.
  311. [08/03/2016 13:46:55.0727] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41B/cn=0
  312. [08/03/2016 13:46:55.0743] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  313. Error code 0X8000500D (20493): This property can't be found in the cache.
  314. [08/03/2016 13:46:55.0759] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41B/cn=1
  315. [08/03/2016 13:46:55.0774] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  316. Error code 0X8000500D (20493): This property can't be found in the cache.
  317. [08/03/2016 13:46:55.0805] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41B/cn=2
  318. [08/03/2016 13:46:55.0805] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  319. Error code 0X8000500D (20493): This property can't be found in the cache.
  320. [08/03/2016 13:46:55.0852] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41B/cn=3
  321. [08/03/2016 13:46:55.0852] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  322. Error code 0X8000500D (20493): This property can't be found in the cache.
  323. [08/03/2016 13:46:55.0884] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41B/cn=6
  324. [08/03/2016 13:46:55.0899] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  325. Error code 0X8000500D (20493): This property can't be found in the cache.
  326. [08/03/2016 13:46:55.0915] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  327. Error code 0X8000500D (20493): This property can't be found in the cache.
  328. [08/03/2016 13:46:55.0915] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  329. Error code 0X8000500D (20493): This property can't be found in the cache.
  330. [08/03/2016 13:46:55.0915] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  331. Error code 0X8000500D (20493): This property can't be found in the cache.
  332. [08/03/2016 13:46:55.0915] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  333. Error code 0X8000500D (20493): This property can't be found in the cache.
  334. [08/03/2016 13:46:55.0915] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  335. Error code 0X8000500D (20493): This property can't be found in the cache.
  336. [08/03/2016 13:46:55.0930] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  337. Error code 0X8000500D (20493): This property can't be found in the cache.
  338. [08/03/2016 13:46:55.0930] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=424/cn=0
  339. [08/03/2016 13:46:55.0930] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  340. Error code 0X8000500D (20493): This property can't be found in the cache.
  341. [08/03/2016 13:46:55.0977] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=424/cn=1
  342. [08/03/2016 13:46:55.0993] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  343. Error code 0X8000500D (20493): This property can't be found in the cache.
  344. [08/03/2016 13:46:56.0024] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=424/cn=2
  345. [08/03/2016 13:46:56.0024] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  346. Error code 0X8000500D (20493): This property can't be found in the cache.
  347. [08/03/2016 13:46:56.0055] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=424/cn=3
  348. [08/03/2016 13:46:56.0055] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  349. Error code 0X8000500D (20493): This property can't be found in the cache.
  350. [08/03/2016 13:46:56.0071] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=424/cn=6
  351. [08/03/2016 13:46:56.0071] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  352. Error code 0X8000500D (20493): This property can't be found in the cache.
  353. [08/03/2016 13:46:56.0102] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  354. Error code 0X8000500D (20493): This property can't be found in the cache.
  355. [08/03/2016 13:46:56.0102] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  356. Error code 0X8000500D (20493): This property can't be found in the cache.
  357. [08/03/2016 13:46:56.0118] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  358. Error code 0X8000500D (20493): This property can't be found in the cache.
  359. [08/03/2016 13:46:56.0118] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  360. Error code 0X8000500D (20493): This property can't be found in the cache.
  361. [08/03/2016 13:46:56.0118] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  362. Error code 0X8000500D (20493): This property can't be found in the cache.
  363. [08/03/2016 13:46:56.0118] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  364. Error code 0X8000500D (20493): This property can't be found in the cache.
  365. [08/03/2016 13:46:56.0118] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=81A/cn=0
  366. [08/03/2016 13:46:56.0118] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  367. Error code 0X8000500D (20493): This property can't be found in the cache.
  368. [08/03/2016 13:46:56.0165] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=81A/cn=1
  369. [08/03/2016 13:46:56.0165] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  370. Error code 0X8000500D (20493): This property can't be found in the cache.
  371. [08/03/2016 13:46:56.0196] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=81A/cn=2
  372. [08/03/2016 13:46:56.0196] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  373. Error code 0X8000500D (20493): This property can't be found in the cache.
  374. [08/03/2016 13:46:56.0227] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=81A/cn=3
  375. [08/03/2016 13:46:56.0227] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  376. Error code 0X8000500D (20493): This property can't be found in the cache.
  377. [08/03/2016 13:46:56.0258] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=81A/cn=6
  378. [08/03/2016 13:46:56.0258] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  379. Error code 0X8000500D (20493): This property can't be found in the cache.
  380. [08/03/2016 13:46:56.0305] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  381. Error code 0X8000500D (20493): This property can't be found in the cache.
  382. [08/03/2016 13:46:56.0305] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  383. Error code 0X8000500D (20493): This property can't be found in the cache.
  384. [08/03/2016 13:46:56.0305] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  385. Error code 0X8000500D (20493): This property can't be found in the cache.
  386. [08/03/2016 13:46:56.0305] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  387. Error code 0X8000500D (20493): This property can't be found in the cache.
  388. [08/03/2016 13:46:56.0305] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  389. Error code 0X8000500D (20493): This property can't be found in the cache.
  390. [08/03/2016 13:46:56.0305] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  391. Error code 0X8000500D (20493): This property can't be found in the cache.
  392. [08/03/2016 13:46:56.0305] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C1A/cn=0
  393. [08/03/2016 13:46:56.0305] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  394. Error code 0X8000500D (20493): This property can't be found in the cache.
  395. [08/03/2016 13:46:56.0352] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C1A/cn=1
  396. [08/03/2016 13:46:56.0352] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  397. Error code 0X8000500D (20493): This property can't be found in the cache.
  398. [08/03/2016 13:46:56.0383] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C1A/cn=2
  399. [08/03/2016 13:46:56.0383] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  400. Error code 0X8000500D (20493): This property can't be found in the cache.
  401. [08/03/2016 13:46:56.0414] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C1A/cn=3
  402. [08/03/2016 13:46:56.0414] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  403. Error code 0X8000500D (20493): This property can't be found in the cache.
  404. [08/03/2016 13:46:56.0446] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C1A/cn=6
  405. [08/03/2016 13:46:56.0446] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  406. Error code 0X8000500D (20493): This property can't be found in the cache.
  407. [08/03/2016 13:46:56.0492] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  408. Error code 0X8000500D (20493): This property can't be found in the cache.
  409. [08/03/2016 13:46:56.0492] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  410. Error code 0X8000500D (20493): This property can't be found in the cache.
  411. [08/03/2016 13:46:56.0492] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  412. Error code 0X8000500D (20493): This property can't be found in the cache.
  413. [08/03/2016 13:46:56.0492] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  414. Error code 0X8000500D (20493): This property can't be found in the cache.
  415. [08/03/2016 13:46:56.0492] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  416. Error code 0X8000500D (20493): This property can't be found in the cache.
  417. [08/03/2016 13:46:56.0492] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  418. Error code 0X8000500D (20493): This property can't be found in the cache.
  419. [08/03/2016 13:46:56.0492] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41D/cn=0
  420. [08/03/2016 13:46:56.0508] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  421. Error code 0X8000500D (20493): This property can't be found in the cache.
  422. [08/03/2016 13:46:56.0539] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41D/cn=1
  423. [08/03/2016 13:46:56.0539] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  424. Error code 0X8000500D (20493): This property can't be found in the cache.
  425. [08/03/2016 13:46:56.0570] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41D/cn=2
  426. [08/03/2016 13:46:56.0570] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  427. Error code 0X8000500D (20493): This property can't be found in the cache.
  428. [08/03/2016 13:46:56.0602] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41D/cn=3
  429. [08/03/2016 13:46:56.0602] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  430. Error code 0X8000500D (20493): This property can't be found in the cache.
  431. [08/03/2016 13:46:56.0648] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41D/cn=6
  432. [08/03/2016 13:46:56.0648] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  433. Error code 0X8000500D (20493): This property can't be found in the cache.
  434. [08/03/2016 13:46:56.0680] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  435. Error code 0X8000500D (20493): This property can't be found in the cache.
  436. [08/03/2016 13:46:56.0680] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  437. Error code 0X8000500D (20493): This property can't be found in the cache.
  438. [08/03/2016 13:46:56.0680] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  439. Error code 0X8000500D (20493): This property can't be found in the cache.
  440. [08/03/2016 13:46:56.0680] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  441. Error code 0X8000500D (20493): This property can't be found in the cache.
  442. [08/03/2016 13:46:56.0695] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  443. Error code 0X8000500D (20493): This property can't be found in the cache.
  444. [08/03/2016 13:46:56.0695] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  445. Error code 0X8000500D (20493): This property can't be found in the cache.
  446. [08/03/2016 13:46:56.0695] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41E/cn=0
  447. [08/03/2016 13:46:56.0695] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  448. Error code 0X8000500D (20493): This property can't be found in the cache.
  449. [08/03/2016 13:46:56.0727] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41E/cn=1
  450. [08/03/2016 13:46:56.0727] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  451. Error code 0X8000500D (20493): This property can't be found in the cache.
  452. [08/03/2016 13:46:56.0758] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41E/cn=2
  453. [08/03/2016 13:46:56.0773] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  454. Error code 0X8000500D (20493): This property can't be found in the cache.
  455. [08/03/2016 13:46:56.0805] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41E/cn=3
  456. [08/03/2016 13:46:56.0805] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  457. Error code 0X8000500D (20493): This property can't be found in the cache.
  458. [08/03/2016 13:46:56.0836] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41E/cn=6
  459. [08/03/2016 13:46:56.0836] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  460. Error code 0X8000500D (20493): This property can't be found in the cache.
  461. [08/03/2016 13:46:56.0867] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  462. Error code 0X8000500D (20493): This property can't be found in the cache.
  463. [08/03/2016 13:46:56.0867] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  464. Error code 0X8000500D (20493): This property can't be found in the cache.
  465. [08/03/2016 13:46:56.0867] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  466. Error code 0X8000500D (20493): This property can't be found in the cache.
  467. [08/03/2016 13:46:56.0867] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  468. Error code 0X8000500D (20493): This property can't be found in the cache.
  469. [08/03/2016 13:46:56.0867] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  470. Error code 0X8000500D (20493): This property can't be found in the cache.
  471. [08/03/2016 13:46:56.0867] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  472. Error code 0X8000500D (20493): This property can't be found in the cache.
  473. [08/03/2016 13:46:56.0883] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41F/cn=0
  474. [08/03/2016 13:46:56.0883] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  475. Error code 0X8000500D (20493): This property can't be found in the cache.
  476. [08/03/2016 13:46:56.0914] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41F/cn=1
  477. [08/03/2016 13:46:56.0914] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  478. Error code 0X8000500D (20493): This property can't be found in the cache.
  479. [08/03/2016 13:46:56.0961] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41F/cn=2
  480. [08/03/2016 13:46:56.0961] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  481. Error code 0X8000500D (20493): This property can't be found in the cache.
  482. [08/03/2016 13:46:56.0992] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41F/cn=3
  483. [08/03/2016 13:46:56.0992] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  484. Error code 0X8000500D (20493): This property can't be found in the cache.
  485. [08/03/2016 13:46:57.0023] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41F/cn=6
  486. [08/03/2016 13:46:57.0023] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  487. Error code 0X8000500D (20493): This property can't be found in the cache.
  488. [08/03/2016 13:46:57.0054] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  489. Error code 0X8000500D (20493): This property can't be found in the cache.
  490. [08/03/2016 13:46:57.0054] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  491. Error code 0X8000500D (20493): This property can't be found in the cache.
  492. [08/03/2016 13:46:57.0054] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  493. Error code 0X8000500D (20493): This property can't be found in the cache.
  494. [08/03/2016 13:46:57.0070] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  495. Error code 0X8000500D (20493): This property can't be found in the cache.
  496. [08/03/2016 13:46:57.0070] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  497. Error code 0X8000500D (20493): This property can't be found in the cache.
  498. [08/03/2016 13:46:57.0070] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  499. Error code 0X8000500D (20493): This property can't be found in the cache.
  500. [08/03/2016 13:46:57.0070] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=422/cn=0
  501. [08/03/2016 13:46:57.0070] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  502. Error code 0X8000500D (20493): This property can't be found in the cache.
  503. [08/03/2016 13:46:57.0086] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=422/cn=1
  504. [08/03/2016 13:46:57.0101] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  505. Error code 0X8000500D (20493): This property can't be found in the cache.
  506. [08/03/2016 13:46:57.0242] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=422/cn=2
  507. [08/03/2016 13:46:57.0242] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  508. Error code 0X8000500D (20493): This property can't be found in the cache.
  509. [08/03/2016 13:46:57.0320] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=422/cn=3
  510. [08/03/2016 13:46:57.0320] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  511. Error code 0X8000500D (20493): This property can't be found in the cache.
  512. [08/03/2016 13:46:57.0429] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=422/cn=6
  513. [08/03/2016 13:46:57.0429] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  514. Error code 0X8000500D (20493): This property can't be found in the cache.
  515. [08/03/2016 13:46:57.0616] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  516. Error code 0X8000500D (20493): This property can't be found in the cache.
  517. [08/03/2016 13:46:57.0632] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  518. Error code 0X8000500D (20493): This property can't be found in the cache.
  519. [08/03/2016 13:46:57.0632] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  520. Error code 0X8000500D (20493): This property can't be found in the cache.
  521. [08/03/2016 13:46:57.0632] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  522. Error code 0X8000500D (20493): This property can't be found in the cache.
  523. [08/03/2016 13:46:57.0632] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  524. Error code 0X8000500D (20493): This property can't be found in the cache.
  525. [08/03/2016 13:46:57.0632] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  526. Error code 0X8000500D (20493): This property can't be found in the cache.
  527. [08/03/2016 13:46:57.0632] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=420/cn=0
  528. [08/03/2016 13:46:57.0632] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  529. Error code 0X8000500D (20493): This property can't be found in the cache.
  530. [08/03/2016 13:46:57.0788] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=420/cn=1
  531. [08/03/2016 13:46:57.0788] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  532. Error code 0X8000500D (20493): This property can't be found in the cache.
  533. [08/03/2016 13:46:57.0929] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=420/cn=2
  534. [08/03/2016 13:46:57.0929] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  535. Error code 0X8000500D (20493): This property can't be found in the cache.
  536. [08/03/2016 13:46:57.0960] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=420/cn=3
  537. [08/03/2016 13:46:57.0960] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  538. Error code 0X8000500D (20493): This property can't be found in the cache.
  539. [08/03/2016 13:46:57.0991] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=420/cn=6
  540. [08/03/2016 13:46:57.0991] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  541. Error code 0X8000500D (20493): This property can't be found in the cache.
  542. [08/03/2016 13:46:58.0505] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  543. Error code 0X8000500D (20493): This property can't be found in the cache.
  544. [08/03/2016 13:46:58.0505] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  545. Error code 0X8000500D (20493): This property can't be found in the cache.
  546. [08/03/2016 13:46:58.0505] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  547. Error code 0X8000500D (20493): This property can't be found in the cache.
  548. [08/03/2016 13:46:58.0505] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  549. Error code 0X8000500D (20493): This property can't be found in the cache.
  550. [08/03/2016 13:46:58.0505] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  551. Error code 0X8000500D (20493): This property can't be found in the cache.
  552. [08/03/2016 13:46:58.0505] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  553. Error code 0X8000500D (20493): This property can't be found in the cache.
  554. [08/03/2016 13:46:58.0505] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=42A/cn=0
  555. [08/03/2016 13:46:58.0521] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  556. Error code 0X8000500D (20493): This property can't be found in the cache.
  557. [08/03/2016 13:46:58.0537] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=42A/cn=1
  558. [08/03/2016 13:46:58.0537] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  559. Error code 0X8000500D (20493): This property can't be found in the cache.
  560. [08/03/2016 13:46:58.0568] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=42A/cn=2
  561. [08/03/2016 13:46:58.0568] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  562. Error code 0X8000500D (20493): This property can't be found in the cache.
  563. [08/03/2016 13:46:58.0599] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=42A/cn=3
  564. [08/03/2016 13:46:58.0599] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  565. Error code 0X8000500D (20493): This property can't be found in the cache.
  566. [08/03/2016 13:46:58.0630] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=42A/cn=6
  567. [08/03/2016 13:46:58.0630] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  568. Error code 0X8000500D (20493): This property can't be found in the cache.
  569. [08/03/2016 13:46:58.0662] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  570. Error code 0X8000500D (20493): This property can't be found in the cache.
  571. [08/03/2016 13:46:58.0677] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  572. Error code 0X8000500D (20493): This property can't be found in the cache.
  573. [08/03/2016 13:46:58.0677] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  574. Error code 0X8000500D (20493): This property can't be found in the cache.
  575. [08/03/2016 13:46:58.0677] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  576. Error code 0X8000500D (20493): This property can't be found in the cache.
  577. [08/03/2016 13:46:58.0677] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  578. Error code 0X8000500D (20493): This property can't be found in the cache.
  579. [08/03/2016 13:46:58.0677] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  580. Error code 0X8000500D (20493): This property can't be found in the cache.
  581. [08/03/2016 13:46:58.0677] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=804/cn=0
  582. [08/03/2016 13:46:58.0677] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  583. Error code 0X8000500D (20493): This property can't be found in the cache.
  584. [08/03/2016 13:46:58.0724] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=804/cn=1
  585. [08/03/2016 13:46:58.0724] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  586. Error code 0X8000500D (20493): This property can't be found in the cache.
  587. [08/03/2016 13:46:58.0755] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=804/cn=2
  588. [08/03/2016 13:46:58.0755] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  589. Error code 0X8000500D (20493): This property can't be found in the cache.
  590. [08/03/2016 13:46:58.0786] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=804/cn=3
  591. [08/03/2016 13:46:58.0786] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  592. Error code 0X8000500D (20493): This property can't be found in the cache.
  593. [08/03/2016 13:46:58.0818] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=804/cn=6
  594. [08/03/2016 13:46:58.0833] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  595. Error code 0X8000500D (20493): This property can't be found in the cache.
  596. [08/03/2016 13:46:58.0865] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=404/cn=0
  597. [08/03/2016 13:46:58.0865] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  598. Error code 0X8000500D (20493): This property can't be found in the cache.
  599. [08/03/2016 13:46:58.0896] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=404/cn=1
  600. [08/03/2016 13:46:58.0896] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  601. Error code 0X8000500D (20493): This property can't be found in the cache.
  602. [08/03/2016 13:46:58.0911] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=404/cn=2
  603. [08/03/2016 13:46:58.0911] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  604. Error code 0X8000500D (20493): This property can't be found in the cache.
  605. [08/03/2016 13:46:58.0943] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=404/cn=3
  606. [08/03/2016 13:46:58.0943] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  607. Error code 0X8000500D (20493): This property can't be found in the cache.
  608. [08/03/2016 13:46:58.0974] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=404/cn=6
  609. [08/03/2016 13:46:58.0989] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  610. Error code 0X8000500D (20493): This property can't be found in the cache.
  611. [08/03/2016 13:46:59.0021] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  612. Error code 0X8000500D (20493): This property can't be found in the cache.
  613. [08/03/2016 13:46:59.0021] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  614. Error code 0X8000500D (20493): This property can't be found in the cache.
  615. [08/03/2016 13:46:59.0021] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  616. Error code 0X8000500D (20493): This property can't be found in the cache.
  617. [08/03/2016 13:46:59.0036] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  618. Error code 0X8000500D (20493): This property can't be found in the cache.
  619. [08/03/2016 13:46:59.0036] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  620. Error code 0X8000500D (20493): This property can't be found in the cache.
  621. [08/03/2016 13:46:59.0036] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  622. Error code 0X8000500D (20493): This property can't be found in the cache.
  623. [08/03/2016 13:46:59.0036] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C04/cn=0
  624. [08/03/2016 13:46:59.0036] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  625. Error code 0X8000500D (20493): This property can't be found in the cache.
  626. [08/03/2016 13:46:59.0067] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C04/cn=1
  627. [08/03/2016 13:46:59.0067] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  628. Error code 0X8000500D (20493): This property can't be found in the cache.
  629. [08/03/2016 13:46:59.0083] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C04/cn=2
  630. [08/03/2016 13:46:59.0083] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  631. Error code 0X8000500D (20493): This property can't be found in the cache.
  632. [08/03/2016 13:46:59.0114] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C04/cn=3
  633. [08/03/2016 13:46:59.0114] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  634. Error code 0X8000500D (20493): This property can't be found in the cache.
  635. [08/03/2016 13:46:59.0146] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C04/cn=6
  636. [08/03/2016 13:46:59.0146] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  637. Error code 0X8000500D (20493): This property can't be found in the cache.
  638. [08/03/2016 13:46:59.0177] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  639. Error code 0X8000500D (20493): This property can't be found in the cache.
  640. [08/03/2016 13:46:59.0192] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  641. Error code 0X8000500D (20493): This property can't be found in the cache.
  642. [08/03/2016 13:46:59.0192] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  643. Error code 0X8000500D (20493): This property can't be found in the cache.
  644. [08/03/2016 13:46:59.0192] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  645. Error code 0X8000500D (20493): This property can't be found in the cache.
  646. [08/03/2016 13:46:59.0192] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  647. Error code 0X8000500D (20493): This property can't be found in the cache.
  648. [08/03/2016 13:46:59.0192] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  649. Error code 0X8000500D (20493): This property can't be found in the cache.
  650. [08/03/2016 13:46:59.0192] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=409/cn=0
  651. [08/03/2016 13:46:59.0192] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  652. Error code 0X8000500D (20493): This property can't be found in the cache.
  653. [08/03/2016 13:46:59.0239] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=409/cn=1
  654. [08/03/2016 13:46:59.0239] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  655. Error code 0X8000500D (20493): This property can't be found in the cache.
  656. [08/03/2016 13:46:59.0255] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=409/cn=2
  657. [08/03/2016 13:46:59.0255] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  658. Error code 0X8000500D (20493): This property can't be found in the cache.
  659. [08/03/2016 13:46:59.0286] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=409/cn=3
  660. [08/03/2016 13:46:59.0286] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  661. Error code 0X8000500D (20493): This property can't be found in the cache.
  662. [08/03/2016 13:46:59.0317] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=409/cn=6
  663. [08/03/2016 13:46:59.0317] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  664. Error code 0X8000500D (20493): This property can't be found in the cache.
  665. [08/03/2016 13:46:59.0395] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  666. Error code 0X8000500D (20493): This property can't be found in the cache.
  667. [08/03/2016 13:46:59.0395] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  668. Error code 0X8000500D (20493): This property can't be found in the cache.
  669. [08/03/2016 13:46:59.0395] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  670. Error code 0X8000500D (20493): This property can't be found in the cache.
  671. [08/03/2016 13:46:59.0395] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  672. Error code 0X8000500D (20493): This property can't be found in the cache.
  673. [08/03/2016 13:46:59.0395] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  674. Error code 0X8000500D (20493): This property can't be found in the cache.
  675. [08/03/2016 13:46:59.0411] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  676. Error code 0X8000500D (20493): This property can't be found in the cache.
  677. [08/03/2016 13:46:59.0411] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=401/cn=0
  678. [08/03/2016 13:46:59.0411] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  679. Error code 0X8000500D (20493): This property can't be found in the cache.
  680. [08/03/2016 13:46:59.0458] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=401/cn=1
  681. [08/03/2016 13:46:59.0458] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  682. Error code 0X8000500D (20493): This property can't be found in the cache.
  683. [08/03/2016 13:46:59.0489] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=401/cn=2
  684. [08/03/2016 13:46:59.0505] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  685. Error code 0X8000500D (20493): This property can't be found in the cache.
  686. [08/03/2016 13:46:59.0536] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=401/cn=3
  687. [08/03/2016 13:46:59.0536] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  688. Error code 0X8000500D (20493): This property can't be found in the cache.
  689. [08/03/2016 13:46:59.0551] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=401/cn=6
  690. [08/03/2016 13:46:59.0567] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  691. Error code 0X8000500D (20493): This property can't be found in the cache.
  692. [08/03/2016 13:46:59.0598] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  693. Error code 0X8000500D (20493): This property can't be found in the cache.
  694. [08/03/2016 13:46:59.0598] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  695. Error code 0X8000500D (20493): This property can't be found in the cache.
  696. [08/03/2016 13:46:59.0598] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  697. Error code 0X8000500D (20493): This property can't be found in the cache.
  698. [08/03/2016 13:46:59.0614] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  699. Error code 0X8000500D (20493): This property can't be found in the cache.
  700. [08/03/2016 13:46:59.0614] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  701. Error code 0X8000500D (20493): This property can't be found in the cache.
  702. [08/03/2016 13:46:59.0614] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  703. Error code 0X8000500D (20493): This property can't be found in the cache.
  704. [08/03/2016 13:46:59.0614] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=402/cn=0
  705. [08/03/2016 13:46:59.0614] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  706. Error code 0X8000500D (20493): This property can't be found in the cache.
  707. [08/03/2016 13:46:59.0645] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=402/cn=1
  708. [08/03/2016 13:46:59.0645] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  709. Error code 0X8000500D (20493): This property can't be found in the cache.
  710. [08/03/2016 13:46:59.0676] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=402/cn=2
  711. [08/03/2016 13:46:59.0692] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  712. Error code 0X8000500D (20493): This property can't be found in the cache.
  713. [08/03/2016 13:46:59.0708] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=402/cn=3
  714. [08/03/2016 13:46:59.0723] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  715. Error code 0X8000500D (20493): This property can't be found in the cache.
  716. [08/03/2016 13:46:59.0754] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=402/cn=6
  717. [08/03/2016 13:46:59.0754] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  718. Error code 0X8000500D (20493): This property can't be found in the cache.
  719. [08/03/2016 13:46:59.0786] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  720. Error code 0X8000500D (20493): This property can't be found in the cache.
  721. [08/03/2016 13:46:59.0786] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  722. Error code 0X8000500D (20493): This property can't be found in the cache.
  723. [08/03/2016 13:46:59.0786] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  724. Error code 0X8000500D (20493): This property can't be found in the cache.
  725. [08/03/2016 13:46:59.0801] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  726. Error code 0X8000500D (20493): This property can't be found in the cache.
  727. [08/03/2016 13:46:59.0801] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  728. Error code 0X8000500D (20493): This property can't be found in the cache.
  729. [08/03/2016 13:46:59.0801] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  730. Error code 0X8000500D (20493): This property can't be found in the cache.
  731. [08/03/2016 13:46:59.0801] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=403/cn=0
  732. [08/03/2016 13:46:59.0801] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  733. Error code 0X8000500D (20493): This property can't be found in the cache.
  734. [08/03/2016 13:46:59.0832] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=403/cn=1
  735. [08/03/2016 13:46:59.0832] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  736. Error code 0X8000500D (20493): This property can't be found in the cache.
  737. [08/03/2016 13:46:59.0879] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=403/cn=2
  738. [08/03/2016 13:46:59.0879] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  739. Error code 0X8000500D (20493): This property can't be found in the cache.
  740. [08/03/2016 13:46:59.0911] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=403/cn=3
  741. [08/03/2016 13:46:59.0911] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  742. Error code 0X8000500D (20493): This property can't be found in the cache.
  743. [08/03/2016 13:46:59.0957] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=403/cn=6
  744. [08/03/2016 13:46:59.0957] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  745. Error code 0X8000500D (20493): This property can't be found in the cache.
  746. [08/03/2016 13:46:59.0989] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  747. Error code 0X8000500D (20493): This property can't be found in the cache.
  748. [08/03/2016 13:46:59.0989] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  749. Error code 0X8000500D (20493): This property can't be found in the cache.
  750. [08/03/2016 13:46:59.0989] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  751. Error code 0X8000500D (20493): This property can't be found in the cache.
  752. [08/03/2016 13:46:59.0989] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  753. Error code 0X8000500D (20493): This property can't be found in the cache.
  754. [08/03/2016 13:46:59.0989] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  755. Error code 0X8000500D (20493): This property can't be found in the cache.
  756. [08/03/2016 13:46:59.0989] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  757. Error code 0X8000500D (20493): This property can't be found in the cache.
  758. [08/03/2016 13:46:59.0989] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=405/cn=0
  759. [08/03/2016 13:46:59.0989] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  760. Error code 0X8000500D (20493): This property can't be found in the cache.
  761. [08/03/2016 13:47:00.0020] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=405/cn=1
  762. [08/03/2016 13:47:00.0035] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  763. Error code 0X8000500D (20493): This property can't be found in the cache.
  764. [08/03/2016 13:47:00.0067] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=405/cn=2
  765. [08/03/2016 13:47:00.0067] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  766. Error code 0X8000500D (20493): This property can't be found in the cache.
  767. [08/03/2016 13:47:00.0098] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=405/cn=3
  768. [08/03/2016 13:47:00.0098] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  769. Error code 0X8000500D (20493): This property can't be found in the cache.
  770. [08/03/2016 13:47:00.0129] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=405/cn=6
  771. [08/03/2016 13:47:00.0129] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  772. Error code 0X8000500D (20493): This property can't be found in the cache.
  773. [08/03/2016 13:47:00.0176] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  774. Error code 0X8000500D (20493): This property can't be found in the cache.
  775. [08/03/2016 13:47:00.0176] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  776. Error code 0X8000500D (20493): This property can't be found in the cache.
  777. [08/03/2016 13:47:00.0176] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  778. Error code 0X8000500D (20493): This property can't be found in the cache.
  779. [08/03/2016 13:47:00.0176] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  780. Error code 0X8000500D (20493): This property can't be found in the cache.
  781. [08/03/2016 13:47:00.0176] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  782. Error code 0X8000500D (20493): This property can't be found in the cache.
  783. [08/03/2016 13:47:00.0176] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  784. Error code 0X8000500D (20493): This property can't be found in the cache.
  785. [08/03/2016 13:47:00.0176] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=406/cn=0
  786. [08/03/2016 13:47:00.0192] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  787. Error code 0X8000500D (20493): This property can't be found in the cache.
  788. [08/03/2016 13:47:00.0207] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=406/cn=1
  789. [08/03/2016 13:47:00.0223] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  790. Error code 0X8000500D (20493): This property can't be found in the cache.
  791. [08/03/2016 13:47:00.0254] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=406/cn=2
  792. [08/03/2016 13:47:00.0254] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  793. Error code 0X8000500D (20493): This property can't be found in the cache.
  794. [08/03/2016 13:47:00.0285] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=406/cn=3
  795. [08/03/2016 13:47:00.0285] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  796. Error code 0X8000500D (20493): This property can't be found in the cache.
  797. [08/03/2016 13:47:00.0332] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=406/cn=6
  798. [08/03/2016 13:47:00.0332] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  799. Error code 0X8000500D (20493): This property can't be found in the cache.
  800. [08/03/2016 13:47:00.0363] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  801. Error code 0X8000500D (20493): This property can't be found in the cache.
  802. [08/03/2016 13:47:00.0363] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  803. Error code 0X8000500D (20493): This property can't be found in the cache.
  804. [08/03/2016 13:47:00.0363] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  805. Error code 0X8000500D (20493): This property can't be found in the cache.
  806. [08/03/2016 13:47:00.0363] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  807. Error code 0X8000500D (20493): This property can't be found in the cache.
  808. [08/03/2016 13:47:00.0363] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  809. Error code 0X8000500D (20493): This property can't be found in the cache.
  810. [08/03/2016 13:47:00.0363] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  811. Error code 0X8000500D (20493): This property can't be found in the cache.
  812. [08/03/2016 13:47:00.0363] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=407/cn=0
  813. [08/03/2016 13:47:00.0379] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  814. Error code 0X8000500D (20493): This property can't be found in the cache.
  815. [08/03/2016 13:47:00.0426] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=407/cn=1
  816. [08/03/2016 13:47:00.0426] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  817. Error code 0X8000500D (20493): This property can't be found in the cache.
  818. [08/03/2016 13:47:00.0473] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=407/cn=2
  819. [08/03/2016 13:47:00.0473] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  820. Error code 0X8000500D (20493): This property can't be found in the cache.
  821. [08/03/2016 13:47:00.0504] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=407/cn=3
  822. [08/03/2016 13:47:00.0519] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  823. Error code 0X8000500D (20493): This property can't be found in the cache.
  824. [08/03/2016 13:47:00.0551] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=407/cn=6
  825. [08/03/2016 13:47:00.0551] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  826. Error code 0X8000500D (20493): This property can't be found in the cache.
  827. [08/03/2016 13:47:00.0566] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  828. Error code 0X8000500D (20493): This property can't be found in the cache.
  829. [08/03/2016 13:47:00.0566] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  830. Error code 0X8000500D (20493): This property can't be found in the cache.
  831. [08/03/2016 13:47:00.0582] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  832. Error code 0X8000500D (20493): This property can't be found in the cache.
  833. [08/03/2016 13:47:00.0582] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  834. Error code 0X8000500D (20493): This property can't be found in the cache.
  835. [08/03/2016 13:47:00.0582] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  836. Error code 0X8000500D (20493): This property can't be found in the cache.
  837. [08/03/2016 13:47:00.0582] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  838. Error code 0X8000500D (20493): This property can't be found in the cache.
  839. [08/03/2016 13:47:00.0582] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=408/cn=0
  840. [08/03/2016 13:47:00.0582] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  841. Error code 0X8000500D (20493): This property can't be found in the cache.
  842. [08/03/2016 13:47:00.0629] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=408/cn=1
  843. [08/03/2016 13:47:00.0629] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  844. Error code 0X8000500D (20493): This property can't be found in the cache.
  845. [08/03/2016 13:47:00.0660] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=408/cn=2
  846. [08/03/2016 13:47:00.0660] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  847. Error code 0X8000500D (20493): This property can't be found in the cache.
  848. [08/03/2016 13:47:00.0691] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=408/cn=3
  849. [08/03/2016 13:47:00.0691] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  850. Error code 0X8000500D (20493): This property can't be found in the cache.
  851. [08/03/2016 13:47:00.0722] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=408/cn=6
  852. [08/03/2016 13:47:00.0722] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  853. Error code 0X8000500D (20493): This property can't be found in the cache.
  854. [08/03/2016 13:47:00.0800] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  855. Error code 0X8000500D (20493): This property can't be found in the cache.
  856. [08/03/2016 13:47:00.0800] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  857. Error code 0X8000500D (20493): This property can't be found in the cache.
  858. [08/03/2016 13:47:00.0816] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  859. Error code 0X8000500D (20493): This property can't be found in the cache.
  860. [08/03/2016 13:47:00.0816] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  861. Error code 0X8000500D (20493): This property can't be found in the cache.
  862. [08/03/2016 13:47:00.0816] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  863. Error code 0X8000500D (20493): This property can't be found in the cache.
  864. [08/03/2016 13:47:00.0816] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  865. Error code 0X8000500D (20493): This property can't be found in the cache.
  866. [08/03/2016 13:47:00.0816] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C0A/cn=0
  867. [08/03/2016 13:47:00.0816] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  868. Error code 0X8000500D (20493): This property can't be found in the cache.
  869. [08/03/2016 13:47:00.0847] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C0A/cn=1
  870. [08/03/2016 13:47:00.0847] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  871. Error code 0X8000500D (20493): This property can't be found in the cache.
  872. [08/03/2016 13:47:00.0878] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C0A/cn=2
  873. [08/03/2016 13:47:00.0878] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  874. Error code 0X8000500D (20493): This property can't be found in the cache.
  875. [08/03/2016 13:47:00.0925] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C0A/cn=3
  876. [08/03/2016 13:47:00.0925] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  877. Error code 0X8000500D (20493): This property can't be found in the cache.
  878. [08/03/2016 13:47:00.0956] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=C0A/cn=6
  879. [08/03/2016 13:47:00.0972] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  880. Error code 0X8000500D (20493): This property can't be found in the cache.
  881. [08/03/2016 13:47:01.0003] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  882. Error code 0X8000500D (20493): This property can't be found in the cache.
  883. [08/03/2016 13:47:01.0003] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  884. Error code 0X8000500D (20493): This property can't be found in the cache.
  885. [08/03/2016 13:47:01.0003] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  886. Error code 0X8000500D (20493): This property can't be found in the cache.
  887. [08/03/2016 13:47:01.0003] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  888. Error code 0X8000500D (20493): This property can't be found in the cache.
  889. [08/03/2016 13:47:01.0003] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  890. Error code 0X8000500D (20493): This property can't be found in the cache.
  891. [08/03/2016 13:47:01.0019] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  892. Error code 0X8000500D (20493): This property can't be found in the cache.
  893. [08/03/2016 13:47:01.0019] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=425/cn=0
  894. [08/03/2016 13:47:01.0019] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  895. Error code 0X8000500D (20493): This property can't be found in the cache.
  896. [08/03/2016 13:47:01.0050] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=425/cn=1
  897. [08/03/2016 13:47:01.0050] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  898. Error code 0X8000500D (20493): This property can't be found in the cache.
  899. [08/03/2016 13:47:01.0097] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=425/cn=2
  900. [08/03/2016 13:47:01.0097] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  901. Error code 0X8000500D (20493): This property can't be found in the cache.
  902. [08/03/2016 13:47:01.0144] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=425/cn=3
  903. [08/03/2016 13:47:01.0144] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  904. Error code 0X8000500D (20493): This property can't be found in the cache.
  905. [08/03/2016 13:47:01.0175] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=425/cn=6
  906. [08/03/2016 13:47:01.0175] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  907. Error code 0X8000500D (20493): This property can't be found in the cache.
  908. [08/03/2016 13:47:01.0191] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  909. Error code 0X8000500D (20493): This property can't be found in the cache.
  910. [08/03/2016 13:47:01.0206] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  911. Error code 0X8000500D (20493): This property can't be found in the cache.
  912. [08/03/2016 13:47:01.0206] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  913. Error code 0X8000500D (20493): This property can't be found in the cache.
  914. [08/03/2016 13:47:01.0206] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  915. Error code 0X8000500D (20493): This property can't be found in the cache.
  916. [08/03/2016 13:47:01.0206] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  917. Error code 0X8000500D (20493): This property can't be found in the cache.
  918. [08/03/2016 13:47:01.0206] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  919. Error code 0X8000500D (20493): This property can't be found in the cache.
  920. [08/03/2016 13:47:01.0206] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=42D/cn=0
  921. [08/03/2016 13:47:01.0206] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  922. Error code 0X8000500D (20493): This property can't be found in the cache.
  923. [08/03/2016 13:47:01.0253] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=42D/cn=1
  924. [08/03/2016 13:47:01.0253] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  925. Error code 0X8000500D (20493): This property can't be found in the cache.
  926. [08/03/2016 13:47:01.0284] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=42D/cn=2
  927. [08/03/2016 13:47:01.0284] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  928. Error code 0X8000500D (20493): This property can't be found in the cache.
  929. [08/03/2016 13:47:01.0316] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=42D/cn=3
  930. [08/03/2016 13:47:01.0316] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  931. Error code 0X8000500D (20493): This property can't be found in the cache.
  932. [08/03/2016 13:47:01.0347] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=42D/cn=6
  933. [08/03/2016 13:47:01.0347] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  934. Error code 0X8000500D (20493): This property can't be found in the cache.
  935. [08/03/2016 13:47:01.0394] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  936. Error code 0X8000500D (20493): This property can't be found in the cache.
  937. [08/03/2016 13:47:01.0394] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  938. Error code 0X8000500D (20493): This property can't be found in the cache.
  939. [08/03/2016 13:47:01.0394] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  940. Error code 0X8000500D (20493): This property can't be found in the cache.
  941. [08/03/2016 13:47:01.0394] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  942. Error code 0X8000500D (20493): This property can't be found in the cache.
  943. [08/03/2016 13:47:01.0394] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  944. Error code 0X8000500D (20493): This property can't be found in the cache.
  945. [08/03/2016 13:47:01.0394] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  946. Error code 0X8000500D (20493): This property can't be found in the cache.
  947. [08/03/2016 13:47:01.0394] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=429/cn=0
  948. [08/03/2016 13:47:01.0394] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  949. Error code 0X8000500D (20493): This property can't be found in the cache.
  950. [08/03/2016 13:47:01.0440] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=429/cn=1
  951. [08/03/2016 13:47:01.0440] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  952. Error code 0X8000500D (20493): This property can't be found in the cache.
  953. [08/03/2016 13:47:01.0472] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=429/cn=2
  954. [08/03/2016 13:47:01.0472] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  955. Error code 0X8000500D (20493): This property can't be found in the cache.
  956. [08/03/2016 13:47:01.0503] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=429/cn=3
  957. [08/03/2016 13:47:01.0503] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  958. Error code 0X8000500D (20493): This property can't be found in the cache.
  959. [08/03/2016 13:47:01.0550] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=429/cn=6
  960. [08/03/2016 13:47:01.0550] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  961. Error code 0X8000500D (20493): This property can't be found in the cache.
  962. [08/03/2016 13:47:01.0581] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  963. Error code 0X8000500D (20493): This property can't be found in the cache.
  964. [08/03/2016 13:47:01.0597] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  965. Error code 0X8000500D (20493): This property can't be found in the cache.
  966. [08/03/2016 13:47:01.0597] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  967. Error code 0X8000500D (20493): This property can't be found in the cache.
  968. [08/03/2016 13:47:01.0597] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  969. Error code 0X8000500D (20493): This property can't be found in the cache.
  970. [08/03/2016 13:47:01.0597] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  971. Error code 0X8000500D (20493): This property can't be found in the cache.
  972. [08/03/2016 13:47:01.0597] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  973. Error code 0X8000500D (20493): This property can't be found in the cache.
  974. [08/03/2016 13:47:01.0597] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=464/cn=0
  975. [08/03/2016 13:47:01.0597] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  976. Error code 0X8000500D (20493): This property can't be found in the cache.
  977. [08/03/2016 13:47:01.0628] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=464/cn=1
  978. [08/03/2016 13:47:01.0628] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  979. Error code 0X8000500D (20493): This property can't be found in the cache.
  980. [08/03/2016 13:47:01.0659] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=464/cn=2
  981. [08/03/2016 13:47:01.0659] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  982. Error code 0X8000500D (20493): This property can't be found in the cache.
  983. [08/03/2016 13:47:01.0706] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=464/cn=3
  984. [08/03/2016 13:47:01.0706] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  985. Error code 0X8000500D (20493): This property can't be found in the cache.
  986. [08/03/2016 13:47:01.0753] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=464/cn=6
  987. [08/03/2016 13:47:01.0753] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  988. Error code 0X8000500D (20493): This property can't be found in the cache.
  989. [08/03/2016 13:47:01.0784] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  990. Error code 0X8000500D (20493): This property can't be found in the cache.
  991. [08/03/2016 13:47:01.0784] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  992. Error code 0X8000500D (20493): This property can't be found in the cache.
  993. [08/03/2016 13:47:01.0784] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  994. Error code 0X8000500D (20493): This property can't be found in the cache.
  995. [08/03/2016 13:47:01.0784] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  996. Error code 0X8000500D (20493): This property can't be found in the cache.
  997. [08/03/2016 13:47:01.0784] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  998. Error code 0X8000500D (20493): This property can't be found in the cache.
  999. [08/03/2016 13:47:01.0784] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1000. Error code 0X8000500D (20493): This property can't be found in the cache.
  1001. [08/03/2016 13:47:01.0784] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40B/cn=0
  1002. [08/03/2016 13:47:01.0784] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1003. Error code 0X8000500D (20493): This property can't be found in the cache.
  1004. [08/03/2016 13:47:01.0815] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40B/cn=1
  1005. [08/03/2016 13:47:01.0831] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1006. Error code 0X8000500D (20493): This property can't be found in the cache.
  1007. [08/03/2016 13:47:01.0862] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40B/cn=2
  1008. [08/03/2016 13:47:01.0862] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1009. Error code 0X8000500D (20493): This property can't be found in the cache.
  1010. [08/03/2016 13:47:01.0987] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1011. Error code 0X8000500D (20493): This property can't be found in the cache.
  1012. [08/03/2016 13:47:01.0987] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1013. Error code 0X8000500D (20493): This property can't be found in the cache.
  1014. [08/03/2016 13:47:01.0987] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40B/cn=3
  1015. [08/03/2016 13:47:01.0987] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1016. Error code 0X8000500D (20493): This property can't be found in the cache.
  1017. [08/03/2016 13:47:02.0049] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1018. Error code 0X8000500D (20493): This property can't be found in the cache.
  1019. [08/03/2016 13:47:02.0065] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1020. Error code 0X8000500D (20493): This property can't be found in the cache.
  1021. [08/03/2016 13:47:02.0065] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1022. Error code 0X8000500D (20493): This property can't be found in the cache.
  1023. [08/03/2016 13:47:02.0065] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1024. Error code 0X8000500D (20493): This property can't be found in the cache.
  1025. [08/03/2016 13:47:02.0065] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40B/cn=6
  1026. [08/03/2016 13:47:02.0065] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1027. Error code 0X8000500D (20493): This property can't be found in the cache.
  1028. [08/03/2016 13:47:02.0081] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1029. Error code 0X8000500D (20493): This property can't be found in the cache.
  1030. [08/03/2016 13:47:02.0081] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1031. Error code 0X8000500D (20493): This property can't be found in the cache.
  1032. [08/03/2016 13:47:02.0081] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1033. Error code 0X8000500D (20493): This property can't be found in the cache.
  1034. [08/03/2016 13:47:02.0081] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1035. Error code 0X8000500D (20493): This property can't be found in the cache.
  1036. [08/03/2016 13:47:02.0096] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1037. Error code 0X8000500D (20493): This property can't be found in the cache.
  1038. [08/03/2016 13:47:02.0096] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1039. Error code 0X8000500D (20493): This property can't be found in the cache.
  1040. [08/03/2016 13:47:02.0096] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40C/cn=0
  1041. [08/03/2016 13:47:02.0096] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1042. Error code 0X8000500D (20493): This property can't be found in the cache.
  1043. [08/03/2016 13:47:02.0159] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40C/cn=1
  1044. [08/03/2016 13:47:02.0174] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1045. Error code 0X8000500D (20493): This property can't be found in the cache.
  1046. [08/03/2016 13:47:02.0283] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40C/cn=2
  1047. [08/03/2016 13:47:02.0283] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1048. Error code 0X8000500D (20493): This property can't be found in the cache.
  1049. [08/03/2016 13:47:02.0346] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40C/cn=3
  1050. [08/03/2016 13:47:02.0346] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1051. Error code 0X8000500D (20493): This property can't be found in the cache.
  1052. [08/03/2016 13:47:02.0377] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40C/cn=6
  1053. [08/03/2016 13:47:02.0393] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1054. Error code 0X8000500D (20493): This property can't be found in the cache.
  1055. [08/03/2016 13:47:02.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1056. Error code 0X8000500D (20493): This property can't be found in the cache.
  1057. [08/03/2016 13:47:02.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1058. Error code 0X8000500D (20493): This property can't be found in the cache.
  1059. [08/03/2016 13:47:02.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1060. Error code 0X8000500D (20493): This property can't be found in the cache.
  1061. [08/03/2016 13:47:02.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1062. Error code 0X8000500D (20493): This property can't be found in the cache.
  1063. [08/03/2016 13:47:02.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1064. Error code 0X8000500D (20493): This property can't be found in the cache.
  1065. [08/03/2016 13:47:02.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1066. Error code 0X8000500D (20493): This property can't be found in the cache.
  1067. [08/03/2016 13:47:02.0440] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=456/cn=0
  1068. [08/03/2016 13:47:02.0440] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1069. Error code 0X8000500D (20493): This property can't be found in the cache.
  1070. [08/03/2016 13:47:02.0471] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=456/cn=1
  1071. [08/03/2016 13:47:02.0471] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1072. Error code 0X8000500D (20493): This property can't be found in the cache.
  1073. [08/03/2016 13:47:02.0518] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=456/cn=2
  1074. [08/03/2016 13:47:02.0518] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1075. Error code 0X8000500D (20493): This property can't be found in the cache.
  1076. [08/03/2016 13:47:02.0549] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=456/cn=3
  1077. [08/03/2016 13:47:02.0549] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1078. Error code 0X8000500D (20493): This property can't be found in the cache.
  1079. [08/03/2016 13:47:02.0564] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=456/cn=6
  1080. [08/03/2016 13:47:02.0564] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1081. Error code 0X8000500D (20493): This property can't be found in the cache.
  1082. [08/03/2016 13:47:02.0596] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1083. Error code 0X8000500D (20493): This property can't be found in the cache.
  1084. [08/03/2016 13:47:02.0596] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1085. Error code 0X8000500D (20493): This property can't be found in the cache.
  1086. [08/03/2016 13:47:02.0596] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1087. Error code 0X8000500D (20493): This property can't be found in the cache.
  1088. [08/03/2016 13:47:02.0596] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1089. Error code 0X8000500D (20493): This property can't be found in the cache.
  1090. [08/03/2016 13:47:02.0596] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1091. Error code 0X8000500D (20493): This property can't be found in the cache.
  1092. [08/03/2016 13:47:02.0596] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1093. Error code 0X8000500D (20493): This property can't be found in the cache.
  1094. [08/03/2016 13:47:02.0596] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40D/cn=0
  1095. [08/03/2016 13:47:02.0596] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1096. Error code 0X8000500D (20493): This property can't be found in the cache.
  1097. [08/03/2016 13:47:02.0643] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40D/cn=1
  1098. [08/03/2016 13:47:02.0643] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1099. Error code 0X8000500D (20493): This property can't be found in the cache.
  1100. [08/03/2016 13:47:02.0674] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40D/cn=2
  1101. [08/03/2016 13:47:02.0674] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1102. Error code 0X8000500D (20493): This property can't be found in the cache.
  1103. [08/03/2016 13:47:02.0705] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40D/cn=3
  1104. [08/03/2016 13:47:02.0705] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1105. Error code 0X8000500D (20493): This property can't be found in the cache.
  1106. [08/03/2016 13:47:02.0752] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40D/cn=6
  1107. [08/03/2016 13:47:02.0752] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1108. Error code 0X8000500D (20493): This property can't be found in the cache.
  1109. [08/03/2016 13:47:02.0783] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1110. Error code 0X8000500D (20493): This property can't be found in the cache.
  1111. [08/03/2016 13:47:02.0783] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1112. Error code 0X8000500D (20493): This property can't be found in the cache.
  1113. [08/03/2016 13:47:02.0799] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1114. Error code 0X8000500D (20493): This property can't be found in the cache.
  1115. [08/03/2016 13:47:02.0799] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1116. Error code 0X8000500D (20493): This property can't be found in the cache.
  1117. [08/03/2016 13:47:02.0799] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1118. Error code 0X8000500D (20493): This property can't be found in the cache.
  1119. [08/03/2016 13:47:02.0799] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1120. Error code 0X8000500D (20493): This property can't be found in the cache.
  1121. [08/03/2016 13:47:02.0799] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=439/cn=0
  1122. [08/03/2016 13:47:02.0799] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1123. Error code 0X8000500D (20493): This property can't be found in the cache.
  1124. [08/03/2016 13:47:02.0830] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=439/cn=1
  1125. [08/03/2016 13:47:02.0830] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1126. Error code 0X8000500D (20493): This property can't be found in the cache.
  1127. [08/03/2016 13:47:02.0861] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=439/cn=2
  1128. [08/03/2016 13:47:02.0861] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1129. Error code 0X8000500D (20493): This property can't be found in the cache.
  1130. [08/03/2016 13:47:02.0892] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=439/cn=3
  1131. [08/03/2016 13:47:02.0908] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1132. Error code 0X8000500D (20493): This property can't be found in the cache.
  1133. [08/03/2016 13:47:02.0939] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=439/cn=6
  1134. [08/03/2016 13:47:02.0939] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1135. Error code 0X8000500D (20493): This property can't be found in the cache.
  1136. [08/03/2016 13:47:02.0986] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1137. Error code 0X8000500D (20493): This property can't be found in the cache.
  1138. [08/03/2016 13:47:02.0986] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1139. Error code 0X8000500D (20493): This property can't be found in the cache.
  1140. [08/03/2016 13:47:02.0986] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1141. Error code 0X8000500D (20493): This property can't be found in the cache.
  1142. [08/03/2016 13:47:03.0002] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1143. Error code 0X8000500D (20493): This property can't be found in the cache.
  1144. [08/03/2016 13:47:03.0002] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1145. Error code 0X8000500D (20493): This property can't be found in the cache.
  1146. [08/03/2016 13:47:03.0002] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1147. Error code 0X8000500D (20493): This property can't be found in the cache.
  1148. [08/03/2016 13:47:03.0002] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41A/cn=0
  1149. [08/03/2016 13:47:03.0002] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1150. Error code 0X8000500D (20493): This property can't be found in the cache.
  1151. [08/03/2016 13:47:03.0033] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41A/cn=1
  1152. [08/03/2016 13:47:03.0033] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1153. Error code 0X8000500D (20493): This property can't be found in the cache.
  1154. [08/03/2016 13:47:03.0064] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41A/cn=2
  1155. [08/03/2016 13:47:03.0080] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1156. Error code 0X8000500D (20493): This property can't be found in the cache.
  1157. [08/03/2016 13:47:03.0111] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41A/cn=3
  1158. [08/03/2016 13:47:03.0111] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1159. Error code 0X8000500D (20493): This property can't be found in the cache.
  1160. [08/03/2016 13:47:03.0161] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=41A/cn=6
  1161. [08/03/2016 13:47:03.0165] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1162. Error code 0X8000500D (20493): This property can't be found in the cache.
  1163. [08/03/2016 13:47:03.0195] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1164. Error code 0X8000500D (20493): This property can't be found in the cache.
  1165. [08/03/2016 13:47:03.0198] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1166. Error code 0X8000500D (20493): This property can't be found in the cache.
  1167. [08/03/2016 13:47:03.0199] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1168. Error code 0X8000500D (20493): This property can't be found in the cache.
  1169. [08/03/2016 13:47:03.0202] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1170. Error code 0X8000500D (20493): This property can't be found in the cache.
  1171. [08/03/2016 13:47:03.0203] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1172. Error code 0X8000500D (20493): This property can't be found in the cache.
  1173. [08/03/2016 13:47:03.0204] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1174. Error code 0X8000500D (20493): This property can't be found in the cache.
  1175. [08/03/2016 13:47:03.0206] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40E/cn=0
  1176. [08/03/2016 13:47:03.0210] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1177. Error code 0X8000500D (20493): This property can't be found in the cache.
  1178. [08/03/2016 13:47:03.0250] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40E/cn=1
  1179. [08/03/2016 13:47:03.0252] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1180. Error code 0X8000500D (20493): This property can't be found in the cache.
  1181. [08/03/2016 13:47:03.0291] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40E/cn=2
  1182. [08/03/2016 13:47:03.0294] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1183. Error code 0X8000500D (20493): This property can't be found in the cache.
  1184. [08/03/2016 13:47:03.0320] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40E/cn=3
  1185. [08/03/2016 13:47:03.0323] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1186. Error code 0X8000500D (20493): This property can't be found in the cache.
  1187. [08/03/2016 13:47:03.0354] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40E/cn=6
  1188. [08/03/2016 13:47:03.0357] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1189. Error code 0X8000500D (20493): This property can't be found in the cache.
  1190. [08/03/2016 13:47:03.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1191. Error code 0X8000500D (20493): This property can't be found in the cache.
  1192. [08/03/2016 13:47:03.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1193. Error code 0X8000500D (20493): This property can't be found in the cache.
  1194. [08/03/2016 13:47:03.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1195. Error code 0X8000500D (20493): This property can't be found in the cache.
  1196. [08/03/2016 13:47:03.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1197. Error code 0X8000500D (20493): This property can't be found in the cache.
  1198. [08/03/2016 13:47:03.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1199. Error code 0X8000500D (20493): This property can't be found in the cache.
  1200. [08/03/2016 13:47:03.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1201. Error code 0X8000500D (20493): This property can't be found in the cache.
  1202. [08/03/2016 13:47:03.0424] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=421/cn=0
  1203. [08/03/2016 13:47:03.0424] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1204. Error code 0X8000500D (20493): This property can't be found in the cache.
  1205. [08/03/2016 13:47:03.0471] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=421/cn=1
  1206. [08/03/2016 13:47:03.0471] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1207. Error code 0X8000500D (20493): This property can't be found in the cache.
  1208. [08/03/2016 13:47:03.0502] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=421/cn=2
  1209. [08/03/2016 13:47:03.0502] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1210. Error code 0X8000500D (20493): This property can't be found in the cache.
  1211. [08/03/2016 13:47:03.0534] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=421/cn=3
  1212. [08/03/2016 13:47:03.0534] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1213. Error code 0X8000500D (20493): This property can't be found in the cache.
  1214. [08/03/2016 13:47:03.0580] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=421/cn=6
  1215. [08/03/2016 13:47:03.0580] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1216. Error code 0X8000500D (20493): This property can't be found in the cache.
  1217. [08/03/2016 13:47:03.0612] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1218. Error code 0X8000500D (20493): This property can't be found in the cache.
  1219. [08/03/2016 13:47:03.0627] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1220. Error code 0X8000500D (20493): This property can't be found in the cache.
  1221. [08/03/2016 13:47:03.0627] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1222. Error code 0X8000500D (20493): This property can't be found in the cache.
  1223. [08/03/2016 13:47:03.0627] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1224. Error code 0X8000500D (20493): This property can't be found in the cache.
  1225. [08/03/2016 13:47:03.0627] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1226. Error code 0X8000500D (20493): This property can't be found in the cache.
  1227. [08/03/2016 13:47:03.0627] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1228. Error code 0X8000500D (20493): This property can't be found in the cache.
  1229. [08/03/2016 13:47:03.0627] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40F/cn=0
  1230. [08/03/2016 13:47:03.0627] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1231. Error code 0X8000500D (20493): This property can't be found in the cache.
  1232. [08/03/2016 13:47:03.0659] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40F/cn=1
  1233. [08/03/2016 13:47:03.0659] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1234. Error code 0X8000500D (20493): This property can't be found in the cache.
  1235. [08/03/2016 13:47:03.0690] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40F/cn=2
  1236. [08/03/2016 13:47:03.0690] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1237. Error code 0X8000500D (20493): This property can't be found in the cache.
  1238. [08/03/2016 13:47:03.0737] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40F/cn=3
  1239. [08/03/2016 13:47:03.0737] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1240. Error code 0X8000500D (20493): This property can't be found in the cache.
  1241. [08/03/2016 13:47:03.0768] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=40F/cn=6
  1242. [08/03/2016 13:47:03.0768] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1243. Error code 0X8000500D (20493): This property can't be found in the cache.
  1244. [08/03/2016 13:47:03.0799] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=410/cn=0
  1245. [08/03/2016 13:47:03.0815] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1246. Error code 0X8000500D (20493): This property can't be found in the cache.
  1247. [08/03/2016 13:47:03.0830] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=410/cn=1
  1248. [08/03/2016 13:47:03.0830] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1249. Error code 0X8000500D (20493): This property can't be found in the cache.
  1250. [08/03/2016 13:47:03.0877] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=410/cn=2
  1251. [08/03/2016 13:47:03.0877] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1252. Error code 0X8000500D (20493): This property can't be found in the cache.
  1253. [08/03/2016 13:47:03.0940] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=410/cn=3
  1254. [08/03/2016 13:47:03.0940] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1255. Error code 0X8000500D (20493): This property can't be found in the cache.
  1256. [08/03/2016 13:47:03.0971] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=410/cn=6
  1257. [08/03/2016 13:47:03.0971] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1258. Error code 0X8000500D (20493): This property can't be found in the cache.
  1259. [08/03/2016 13:47:04.0002] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1260. Error code 0X8000500D (20493): This property can't be found in the cache.
  1261. [08/03/2016 13:47:04.0002] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1262. Error code 0X8000500D (20493): This property can't be found in the cache.
  1263. [08/03/2016 13:47:04.0002] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1264. Error code 0X8000500D (20493): This property can't be found in the cache.
  1265. [08/03/2016 13:47:04.0002] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1266. Error code 0X8000500D (20493): This property can't be found in the cache.
  1267. [08/03/2016 13:47:04.0002] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1268. Error code 0X8000500D (20493): This property can't be found in the cache.
  1269. [08/03/2016 13:47:04.0002] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1270. Error code 0X8000500D (20493): This property can't be found in the cache.
  1271. [08/03/2016 13:47:04.0018] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=411/cn=0
  1272. [08/03/2016 13:47:04.0018] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1273. Error code 0X8000500D (20493): This property can't be found in the cache.
  1274. [08/03/2016 13:47:04.0049] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=411/cn=1
  1275. [08/03/2016 13:47:04.0049] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1276. Error code 0X8000500D (20493): This property can't be found in the cache.
  1277. [08/03/2016 13:47:04.0096] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=411/cn=2
  1278. [08/03/2016 13:47:04.0096] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1279. Error code 0X8000500D (20493): This property can't be found in the cache.
  1280. [08/03/2016 13:47:04.0127] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=411/cn=3
  1281. [08/03/2016 13:47:04.0127] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1282. Error code 0X8000500D (20493): This property can't be found in the cache.
  1283. [08/03/2016 13:47:04.0158] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=411/cn=6
  1284. [08/03/2016 13:47:04.0174] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1285. Error code 0X8000500D (20493): This property can't be found in the cache.
  1286. [08/03/2016 13:47:04.0236] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1287. Error code 0X8000500D (20493): This property can't be found in the cache.
  1288. [08/03/2016 13:47:04.0236] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1289. Error code 0X8000500D (20493): This property can't be found in the cache.
  1290. [08/03/2016 13:47:04.0236] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1291. Error code 0X8000500D (20493): This property can't be found in the cache.
  1292. [08/03/2016 13:47:04.0236] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1293. Error code 0X8000500D (20493): This property can't be found in the cache.
  1294. [08/03/2016 13:47:04.0236] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1295. Error code 0X8000500D (20493): This property can't be found in the cache.
  1296. [08/03/2016 13:47:04.0236] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1297. Error code 0X8000500D (20493): This property can't be found in the cache.
  1298. [08/03/2016 13:47:04.0236] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=8411/cn=0
  1299. [08/03/2016 13:47:04.0236] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1300. Error code 0X8000500D (20493): This property can't be found in the cache.
  1301. [08/03/2016 13:47:04.0283] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=8411/cn=1
  1302. [08/03/2016 13:47:04.0283] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1303. Error code 0X8000500D (20493): This property can't be found in the cache.
  1304. [08/03/2016 13:47:04.0330] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=8411/cn=2
  1305. [08/03/2016 13:47:04.0330] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1306. Error code 0X8000500D (20493): This property can't be found in the cache.
  1307. [08/03/2016 13:47:04.0361] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=8411/cn=3
  1308. [08/03/2016 13:47:04.0361] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1309. Error code 0X8000500D (20493): This property can't be found in the cache.
  1310. [08/03/2016 13:47:04.0392] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=8411/cn=6
  1311. [08/03/2016 13:47:04.0392] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1312. Error code 0X8000500D (20493): This property can't be found in the cache.
  1313. [08/03/2016 13:47:04.0408] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1314. Error code 0X8000500D (20493): This property can't be found in the cache.
  1315. [08/03/2016 13:47:04.0408] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1316. Error code 0X8000500D (20493): This property can't be found in the cache.
  1317. [08/03/2016 13:47:04.0408] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1318. Error code 0X8000500D (20493): This property can't be found in the cache.
  1319. [08/03/2016 13:47:04.0423] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1320. Error code 0X8000500D (20493): This property can't be found in the cache.
  1321. [08/03/2016 13:47:04.0423] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1322. Error code 0X8000500D (20493): This property can't be found in the cache.
  1323. [08/03/2016 13:47:04.0423] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1324. Error code 0X8000500D (20493): This property can't be found in the cache.
  1325. [08/03/2016 13:47:04.0423] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=43F/cn=0
  1326. [08/03/2016 13:47:04.0423] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1327. Error code 0X8000500D (20493): This property can't be found in the cache.
  1328. [08/03/2016 13:47:04.0455] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=43F/cn=1
  1329. [08/03/2016 13:47:04.0455] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1330. Error code 0X8000500D (20493): This property can't be found in the cache.
  1331. [08/03/2016 13:47:04.0502] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=43F/cn=2
  1332. [08/03/2016 13:47:04.0502] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1333. Error code 0X8000500D (20493): This property can't be found in the cache.
  1334. [08/03/2016 13:47:04.0533] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=43F/cn=3
  1335. [08/03/2016 13:47:04.0533] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1336. Error code 0X8000500D (20493): This property can't be found in the cache.
  1337. [08/03/2016 13:47:04.0564] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=43F/cn=6
  1338. [08/03/2016 13:47:04.0564] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1339. Error code 0X8000500D (20493): This property can't be found in the cache.
  1340. [08/03/2016 13:47:04.0611] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1341. Error code 0X8000500D (20493): This property can't be found in the cache.
  1342. [08/03/2016 13:47:04.0611] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1343. Error code 0X8000500D (20493): This property can't be found in the cache.
  1344. [08/03/2016 13:47:04.0611] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1345. Error code 0X8000500D (20493): This property can't be found in the cache.
  1346. [08/03/2016 13:47:04.0611] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1347. Error code 0X8000500D (20493): This property can't be found in the cache.
  1348. [08/03/2016 13:47:04.0611] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1349. Error code 0X8000500D (20493): This property can't be found in the cache.
  1350. [08/03/2016 13:47:04.0611] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1351. Error code 0X8000500D (20493): This property can't be found in the cache.
  1352. [08/03/2016 13:47:04.0611] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=412/cn=0
  1353. [08/03/2016 13:47:04.0626] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1354. Error code 0X8000500D (20493): This property can't be found in the cache.
  1355. [08/03/2016 13:47:04.0642] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=412/cn=1
  1356. [08/03/2016 13:47:04.0658] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1357. Error code 0X8000500D (20493): This property can't be found in the cache.
  1358. [08/03/2016 13:47:04.0689] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=412/cn=2
  1359. [08/03/2016 13:47:04.0689] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1360. Error code 0X8000500D (20493): This property can't be found in the cache.
  1361. [08/03/2016 13:47:04.0720] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=412/cn=3
  1362. [08/03/2016 13:47:04.0720] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1363. Error code 0X8000500D (20493): This property can't be found in the cache.
  1364. [08/03/2016 13:47:04.0767] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=412/cn=6
  1365. [08/03/2016 13:47:04.0767] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1366. Error code 0X8000500D (20493): This property can't be found in the cache.
  1367. [08/03/2016 13:47:04.0798] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1368. Error code 0X8000500D (20493): This property can't be found in the cache.
  1369. [08/03/2016 13:47:04.0798] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1370. Error code 0X8000500D (20493): This property can't be found in the cache.
  1371. [08/03/2016 13:47:04.0798] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1372. Error code 0X8000500D (20493): This property can't be found in the cache.
  1373. [08/03/2016 13:47:04.0798] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1374. Error code 0X8000500D (20493): This property can't be found in the cache.
  1375. [08/03/2016 13:47:04.0798] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1376. Error code 0X8000500D (20493): This property can't be found in the cache.
  1377. [08/03/2016 13:47:04.0814] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1378. Error code 0X8000500D (20493): This property can't be found in the cache.
  1379. [08/03/2016 13:47:04.0814] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=427/cn=0
  1380. [08/03/2016 13:47:04.0814] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1381. Error code 0X8000500D (20493): This property can't be found in the cache.
  1382. [08/03/2016 13:47:04.0829] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=427/cn=1
  1383. [08/03/2016 13:47:04.0845] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1384. Error code 0X8000500D (20493): This property can't be found in the cache.
  1385. [08/03/2016 13:47:04.0876] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=427/cn=2
  1386. [08/03/2016 13:47:04.0876] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1387. Error code 0X8000500D (20493): This property can't be found in the cache.
  1388. [08/03/2016 13:47:04.0923] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=427/cn=3
  1389. [08/03/2016 13:47:04.0923] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1390. Error code 0X8000500D (20493): This property can't be found in the cache.
  1391. [08/03/2016 13:47:04.0954] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=427/cn=6
  1392. [08/03/2016 13:47:04.0954] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1393. Error code 0X8000500D (20493): This property can't be found in the cache.
  1394. [08/03/2016 13:47:04.0986] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1395. Error code 0X8000500D (20493): This property can't be found in the cache.
  1396. [08/03/2016 13:47:04.0986] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1397. Error code 0X8000500D (20493): This property can't be found in the cache.
  1398. [08/03/2016 13:47:04.0986] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1399. Error code 0X8000500D (20493): This property can't be found in the cache.
  1400. [08/03/2016 13:47:04.0986] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1401. Error code 0X8000500D (20493): This property can't be found in the cache.
  1402. [08/03/2016 13:47:04.0986] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1403. Error code 0X8000500D (20493): This property can't be found in the cache.
  1404. [08/03/2016 13:47:04.0986] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1405. Error code 0X8000500D (20493): This property can't be found in the cache.
  1406. [08/03/2016 13:47:04.0986] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=426/cn=0
  1407. [08/03/2016 13:47:05.0001] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1408. Error code 0X8000500D (20493): This property can't be found in the cache.
  1409. [08/03/2016 13:47:05.0032] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=426/cn=1
  1410. [08/03/2016 13:47:05.0032] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1411. Error code 0X8000500D (20493): This property can't be found in the cache.
  1412. [08/03/2016 13:47:05.0079] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=426/cn=2
  1413. [08/03/2016 13:47:05.0079] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1414. Error code 0X8000500D (20493): This property can't be found in the cache.
  1415. [08/03/2016 13:47:05.0110] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=426/cn=3
  1416. [08/03/2016 13:47:05.0110] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1417. Error code 0X8000500D (20493): This property can't be found in the cache.
  1418. [08/03/2016 13:47:05.0173] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=426/cn=6
  1419. [08/03/2016 13:47:05.0173] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1420. Error code 0X8000500D (20493): This property can't be found in the cache.
  1421. [08/03/2016 13:47:05.0220] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1422. Error code 0X8000500D (20493): This property can't be found in the cache.
  1423. [08/03/2016 13:47:05.0220] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1424. Error code 0X8000500D (20493): This property can't be found in the cache.
  1425. [08/03/2016 13:47:05.0220] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1426. Error code 0X8000500D (20493): This property can't be found in the cache.
  1427. [08/03/2016 13:47:05.0220] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1428. Error code 0X8000500D (20493): This property can't be found in the cache.
  1429. [08/03/2016 13:47:05.0235] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1430. Error code 0X8000500D (20493): This property can't be found in the cache.
  1431. [08/03/2016 13:47:05.0235] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1432. Error code 0X8000500D (20493): This property can't be found in the cache.
  1433. [08/03/2016 13:47:05.0235] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=43E/cn=0
  1434. [08/03/2016 13:47:05.0235] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1435. Error code 0X8000500D (20493): This property can't be found in the cache.
  1436. [08/03/2016 13:47:05.0267] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=43E/cn=1
  1437. [08/03/2016 13:47:05.0282] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1438. Error code 0X8000500D (20493): This property can't be found in the cache.
  1439. [08/03/2016 13:47:05.0298] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=43E/cn=2
  1440. [08/03/2016 13:47:05.0313] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1441. Error code 0X8000500D (20493): This property can't be found in the cache.
  1442. [08/03/2016 13:47:05.0329] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=43E/cn=3
  1443. [08/03/2016 13:47:05.0329] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1444. Error code 0X8000500D (20493): This property can't be found in the cache.
  1445. [08/03/2016 13:47:05.0376] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=43E/cn=6
  1446. [08/03/2016 13:47:05.0376] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1447. Error code 0X8000500D (20493): This property can't be found in the cache.
  1448. [08/03/2016 13:47:05.0423] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1449. Error code 0X8000500D (20493): This property can't be found in the cache.
  1450. [08/03/2016 13:47:05.0423] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1451. Error code 0X8000500D (20493): This property can't be found in the cache.
  1452. [08/03/2016 13:47:05.0423] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1453. Error code 0X8000500D (20493): This property can't be found in the cache.
  1454. [08/03/2016 13:47:05.0423] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1455. Error code 0X8000500D (20493): This property can't be found in the cache.
  1456. [08/03/2016 13:47:05.0423] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1457. Error code 0X8000500D (20493): This property can't be found in the cache.
  1458. [08/03/2016 13:47:05.0423] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1459. Error code 0X8000500D (20493): This property can't be found in the cache.
  1460. [08/03/2016 13:47:05.0423] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=414/cn=0
  1461. [08/03/2016 13:47:05.0423] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1462. Error code 0X8000500D (20493): This property can't be found in the cache.
  1463. [08/03/2016 13:47:05.0454] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=414/cn=1
  1464. [08/03/2016 13:47:05.0454] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1465. Error code 0X8000500D (20493): This property can't be found in the cache.
  1466. [08/03/2016 13:47:05.0485] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=414/cn=2
  1467. [08/03/2016 13:47:05.0485] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1468. Error code 0X8000500D (20493): This property can't be found in the cache.
  1469. [08/03/2016 13:47:05.0532] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=414/cn=3
  1470. [08/03/2016 13:47:05.0532] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1471. Error code 0X8000500D (20493): This property can't be found in the cache.
  1472. [08/03/2016 13:47:05.0563] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=414/cn=6
  1473. [08/03/2016 13:47:05.0563] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1474. Error code 0X8000500D (20493): This property can't be found in the cache.
  1475. [08/03/2016 13:47:05.0641] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1476. Error code 0X8000500D (20493): This property can't be found in the cache.
  1477. [08/03/2016 13:47:05.0641] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1478. Error code 0X8000500D (20493): This property can't be found in the cache.
  1479. [08/03/2016 13:47:05.0641] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1480. Error code 0X8000500D (20493): This property can't be found in the cache.
  1481. [08/03/2016 13:47:05.0641] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1482. Error code 0X8000500D (20493): This property can't be found in the cache.
  1483. [08/03/2016 13:47:05.0641] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1484. Error code 0X8000500D (20493): This property can't be found in the cache.
  1485. [08/03/2016 13:47:05.0641] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1486. Error code 0X8000500D (20493): This property can't be found in the cache.
  1487. [08/03/2016 13:47:05.0641] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=413/cn=0
  1488. [08/03/2016 13:47:05.0657] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1489. Error code 0X8000500D (20493): This property can't be found in the cache.
  1490. [08/03/2016 13:47:05.0688] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=413/cn=1
  1491. [08/03/2016 13:47:05.0688] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1492. Error code 0X8000500D (20493): This property can't be found in the cache.
  1493. [08/03/2016 13:47:05.0735] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=413/cn=2
  1494. [08/03/2016 13:47:05.0735] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1495. Error code 0X8000500D (20493): This property can't be found in the cache.
  1496. [08/03/2016 13:47:05.0782] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=413/cn=3
  1497. [08/03/2016 13:47:05.0782] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1498. Error code 0X8000500D (20493): This property can't be found in the cache.
  1499. [08/03/2016 13:47:05.0813] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=413/cn=6
  1500. [08/03/2016 13:47:05.0813] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1501. Error code 0X8000500D (20493): This property can't be found in the cache.
  1502. [08/03/2016 13:47:05.0844] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1503. Error code 0X8000500D (20493): This property can't be found in the cache.
  1504. [08/03/2016 13:47:05.0844] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1505. Error code 0X8000500D (20493): This property can't be found in the cache.
  1506. [08/03/2016 13:47:05.0844] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1507. Error code 0X8000500D (20493): This property can't be found in the cache.
  1508. [08/03/2016 13:47:05.0844] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1509. Error code 0X8000500D (20493): This property can't be found in the cache.
  1510. [08/03/2016 13:47:05.0844] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1511. Error code 0X8000500D (20493): This property can't be found in the cache.
  1512. [08/03/2016 13:47:05.0844] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1513. Error code 0X8000500D (20493): This property can't be found in the cache.
  1514. [08/03/2016 13:47:05.0844] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=415/cn=0
  1515. [08/03/2016 13:47:05.0844] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1516. Error code 0X8000500D (20493): This property can't be found in the cache.
  1517. [08/03/2016 13:47:05.0891] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=415/cn=1
  1518. [08/03/2016 13:47:05.0891] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1519. Error code 0X8000500D (20493): This property can't be found in the cache.
  1520. [08/03/2016 13:47:05.0907] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=415/cn=2
  1521. [08/03/2016 13:47:05.0922] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1522. Error code 0X8000500D (20493): This property can't be found in the cache.
  1523. [08/03/2016 13:47:05.0938] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=415/cn=3
  1524. [08/03/2016 13:47:05.0938] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1525. Error code 0X8000500D (20493): This property can't be found in the cache.
  1526. [08/03/2016 13:47:05.0969] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=415/cn=6
  1527. [08/03/2016 13:47:05.0969] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1528. Error code 0X8000500D (20493): This property can't be found in the cache.
  1529. [08/03/2016 13:47:06.0016] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1530. Error code 0X8000500D (20493): This property can't be found in the cache.
  1531. [08/03/2016 13:47:06.0016] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1532. Error code 0X8000500D (20493): This property can't be found in the cache.
  1533. [08/03/2016 13:47:06.0016] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1534. Error code 0X8000500D (20493): This property can't be found in the cache.
  1535. [08/03/2016 13:47:06.0016] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1536. Error code 0X8000500D (20493): This property can't be found in the cache.
  1537. [08/03/2016 13:47:06.0016] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1538. Error code 0X8000500D (20493): This property can't be found in the cache.
  1539. [08/03/2016 13:47:06.0016] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1540. Error code 0X8000500D (20493): This property can't be found in the cache.
  1541. [08/03/2016 13:47:06.0016] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=816/cn=0
  1542. [08/03/2016 13:47:06.0031] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1543. Error code 0X8000500D (20493): This property can't be found in the cache.
  1544. [08/03/2016 13:47:06.0063] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=816/cn=1
  1545. [08/03/2016 13:47:06.0063] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1546. Error code 0X8000500D (20493): This property can't be found in the cache.
  1547. [08/03/2016 13:47:06.0110] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=816/cn=2
  1548. [08/03/2016 13:47:06.0110] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1549. Error code 0X8000500D (20493): This property can't be found in the cache.
  1550. [08/03/2016 13:47:06.0156] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=816/cn=3
  1551. [08/03/2016 13:47:06.0156] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1552. Error code 0X8000500D (20493): This property can't be found in the cache.
  1553. [08/03/2016 13:47:06.0203] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=816/cn=6
  1554. [08/03/2016 13:47:06.0203] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1555. Error code 0X8000500D (20493): This property can't be found in the cache.
  1556. [08/03/2016 13:47:06.0234] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1557. Error code 0X8000500D (20493): This property can't be found in the cache.
  1558. [08/03/2016 13:47:06.0234] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1559. Error code 0X8000500D (20493): This property can't be found in the cache.
  1560. [08/03/2016 13:47:06.0234] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1561. Error code 0X8000500D (20493): This property can't be found in the cache.
  1562. [08/03/2016 13:47:06.0234] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1563. Error code 0X8000500D (20493): This property can't be found in the cache.
  1564. [08/03/2016 13:47:06.0234] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1565. Error code 0X8000500D (20493): This property can't be found in the cache.
  1566. [08/03/2016 13:47:06.0234] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1567. Error code 0X8000500D (20493): This property can't be found in the cache.
  1568. [08/03/2016 13:47:06.0234] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=416/cn=0
  1569. [08/03/2016 13:47:06.0250] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1570. Error code 0X8000500D (20493): This property can't be found in the cache.
  1571. [08/03/2016 13:47:06.0266] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=416/cn=1
  1572. [08/03/2016 13:47:06.0281] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1573. Error code 0X8000500D (20493): This property can't be found in the cache.
  1574. [08/03/2016 13:47:06.0312] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=416/cn=2
  1575. [08/03/2016 13:47:06.0312] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1576. Error code 0X8000500D (20493): This property can't be found in the cache.
  1577. [08/03/2016 13:47:06.0359] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=416/cn=3
  1578. [08/03/2016 13:47:06.0359] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1579. Error code 0X8000500D (20493): This property can't be found in the cache.
  1580. [08/03/2016 13:47:06.0391] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=416/cn=6
  1581. [08/03/2016 13:47:06.0391] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1582. Error code 0X8000500D (20493): This property can't be found in the cache.
  1583. [08/03/2016 13:47:06.0422] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1584. Error code 0X8000500D (20493): This property can't be found in the cache.
  1585. [08/03/2016 13:47:06.0422] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1586. Error code 0X8000500D (20493): This property can't be found in the cache.
  1587. [08/03/2016 13:47:06.0422] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1588. Error code 0X8000500D (20493): This property can't be found in the cache.
  1589. [08/03/2016 13:47:06.0422] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1590. Error code 0X8000500D (20493): This property can't be found in the cache.
  1591. [08/03/2016 13:47:06.0422] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1592. Error code 0X8000500D (20493): This property can't be found in the cache.
  1593. [08/03/2016 13:47:06.0422] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1594. Error code 0X8000500D (20493): This property can't be found in the cache.
  1595. [08/03/2016 13:47:06.0437] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1596. Error code 0X8000500D (20493): This property can't be found in the cache.
  1597. [08/03/2016 13:47:06.0437] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1598. Error code 0X8000500D (20493): This property can't be found in the cache.
  1599. [08/03/2016 13:47:06.0437] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1600. Error code 0X8000500D (20493): This property can't be found in the cache.
  1601. [08/03/2016 13:47:06.0437] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1602. Error code 0X8000500D (20493): This property can't be found in the cache.
  1603. [08/03/2016 13:47:06.0437] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1604. Error code 0X8000500D (20493): This property can't be found in the cache.
  1605. [08/03/2016 13:47:06.0437] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1606. Error code 0X8000500D (20493): This property can't be found in the cache.
  1607. [08/03/2016 13:47:06.0437] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=418/cn=0
  1608. [08/03/2016 13:47:06.0437] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1609. Error code 0X8000500D (20493): This property can't be found in the cache.
  1610. [08/03/2016 13:47:06.0469] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=418/cn=1
  1611. [08/03/2016 13:47:06.0469] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1612. Error code 0X8000500D (20493): This property can't be found in the cache.
  1613. [08/03/2016 13:47:06.0500] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=418/cn=2
  1614. [08/03/2016 13:47:06.0500] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1615. Error code 0X8000500D (20493): This property can't be found in the cache.
  1616. [08/03/2016 13:47:06.0515] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=418/cn=3
  1617. [08/03/2016 13:47:06.0531] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1618. Error code 0X8000500D (20493): This property can't be found in the cache.
  1619. [08/03/2016 13:47:06.0562] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Display-Templates/cn=418/cn=6
  1620. [08/03/2016 13:47:06.0562] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1621. Error code 0X8000500D (20493): This property can't be found in the cache.
  1622. [08/03/2016 13:47:06.0593] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=419/cn=X400
  1623. [08/03/2016 13:47:06.0609] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1624. Error code 0X8000500D (20493): This property can't be found in the cache.
  1625. [08/03/2016 13:47:06.0640] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=419/cn=MS
  1626. [08/03/2016 13:47:06.0640] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1627. Error code 0X8000500D (20493): This property can't be found in the cache.
  1628. [08/03/2016 13:47:06.0672] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=419/cn=SMTP
  1629. [08/03/2016 13:47:06.0672] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1630. Error code 0X8000500D (20493): This property can't be found in the cache.
  1631. [08/03/2016 13:47:06.0703] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=419/cn=MSA
  1632. [08/03/2016 13:47:06.0703] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1633. Error code 0X8000500D (20493): This property can't be found in the cache.
  1634. [08/03/2016 13:47:06.0765] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=419/cn=CCMAIL
  1635. [08/03/2016 13:47:06.0781] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1636. Error code 0X8000500D (20493): This property can't be found in the cache.
  1637. [08/03/2016 13:47:06.0812] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41B/cn=X400
  1638. [08/03/2016 13:47:06.0812] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1639. Error code 0X8000500D (20493): This property can't be found in the cache.
  1640. [08/03/2016 13:47:06.0843] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41B/cn=MS
  1641. [08/03/2016 13:47:06.0859] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1642. Error code 0X8000500D (20493): This property can't be found in the cache.
  1643. [08/03/2016 13:47:06.0875] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41B/cn=SMTP
  1644. [08/03/2016 13:47:06.0890] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1645. Error code 0X8000500D (20493): This property can't be found in the cache.
  1646. [08/03/2016 13:47:06.0921] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41B/cn=MSA
  1647. [08/03/2016 13:47:06.0921] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1648. Error code 0X8000500D (20493): This property can't be found in the cache.
  1649. [08/03/2016 13:47:06.0968] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41B/cn=CCMAIL
  1650. [08/03/2016 13:47:06.0968] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1651. Error code 0X8000500D (20493): This property can't be found in the cache.
  1652. [08/03/2016 13:47:06.0999] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=424/cn=X400
  1653. [08/03/2016 13:47:07.0015] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1654. Error code 0X8000500D (20493): This property can't be found in the cache.
  1655. [08/03/2016 13:47:07.0046] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=424/cn=MS
  1656. [08/03/2016 13:47:07.0046] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1657. Error code 0X8000500D (20493): This property can't be found in the cache.
  1658. [08/03/2016 13:47:07.0062] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=424/cn=SMTP
  1659. [08/03/2016 13:47:07.0062] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1660. Error code 0X8000500D (20493): This property can't be found in the cache.
  1661. [08/03/2016 13:47:07.0109] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=424/cn=MSA
  1662. [08/03/2016 13:47:07.0109] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1663. Error code 0X8000500D (20493): This property can't be found in the cache.
  1664. [08/03/2016 13:47:07.0156] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=424/cn=CCMAIL
  1665. [08/03/2016 13:47:07.0156] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1666. Error code 0X8000500D (20493): This property can't be found in the cache.
  1667. [08/03/2016 13:47:07.0187] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=81A/cn=X400
  1668. [08/03/2016 13:47:07.0187] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1669. Error code 0X8000500D (20493): This property can't be found in the cache.
  1670. [08/03/2016 13:47:07.0218] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=81A/cn=MS
  1671. [08/03/2016 13:47:07.0218] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1672. Error code 0X8000500D (20493): This property can't be found in the cache.
  1673. [08/03/2016 13:47:07.0249] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=81A/cn=SMTP
  1674. [08/03/2016 13:47:07.0265] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1675. Error code 0X8000500D (20493): This property can't be found in the cache.
  1676. [08/03/2016 13:47:07.0296] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=81A/cn=MSA
  1677. [08/03/2016 13:47:07.0296] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1678. Error code 0X8000500D (20493): This property can't be found in the cache.
  1679. [08/03/2016 13:47:07.0343] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=81A/cn=CCMAIL
  1680. [08/03/2016 13:47:07.0343] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1681. Error code 0X8000500D (20493): This property can't be found in the cache.
  1682. [08/03/2016 13:47:07.0374] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C1A/cn=X400
  1683. [08/03/2016 13:47:07.0374] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1684. Error code 0X8000500D (20493): This property can't be found in the cache.
  1685. [08/03/2016 13:47:07.0437] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C1A/cn=MS
  1686. [08/03/2016 13:47:07.0437] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1687. Error code 0X8000500D (20493): This property can't be found in the cache.
  1688. [08/03/2016 13:47:07.0468] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C1A/cn=SMTP
  1689. [08/03/2016 13:47:07.0483] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1690. Error code 0X8000500D (20493): This property can't be found in the cache.
  1691. [08/03/2016 13:47:07.0515] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C1A/cn=MSA
  1692. [08/03/2016 13:47:07.0515] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1693. Error code 0X8000500D (20493): This property can't be found in the cache.
  1694. [08/03/2016 13:47:07.0546] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C1A/cn=CCMAIL
  1695. [08/03/2016 13:47:07.0546] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1696. Error code 0X8000500D (20493): This property can't be found in the cache.
  1697. [08/03/2016 13:47:07.0577] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41D/cn=X400
  1698. [08/03/2016 13:47:07.0593] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1699. Error code 0X8000500D (20493): This property can't be found in the cache.
  1700. [08/03/2016 13:47:07.0624] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41D/cn=MS
  1701. [08/03/2016 13:47:07.0624] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1702. Error code 0X8000500D (20493): This property can't be found in the cache.
  1703. [08/03/2016 13:47:07.0671] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41D/cn=SMTP
  1704. [08/03/2016 13:47:07.0671] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1705. Error code 0X8000500D (20493): This property can't be found in the cache.
  1706. [08/03/2016 13:47:07.0702] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41D/cn=MSA
  1707. [08/03/2016 13:47:07.0702] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1708. Error code 0X8000500D (20493): This property can't be found in the cache.
  1709. [08/03/2016 13:47:07.0718] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41D/cn=CCMAIL
  1710. [08/03/2016 13:47:07.0733] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1711. Error code 0X8000500D (20493): This property can't be found in the cache.
  1712. [08/03/2016 13:47:07.0764] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41E/cn=X400
  1713. [08/03/2016 13:47:07.0764] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1714. Error code 0X8000500D (20493): This property can't be found in the cache.
  1715. [08/03/2016 13:47:07.0811] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41E/cn=MS
  1716. [08/03/2016 13:47:07.0811] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1717. Error code 0X8000500D (20493): This property can't be found in the cache.
  1718. [08/03/2016 13:47:07.0842] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41E/cn=SMTP
  1719. [08/03/2016 13:47:07.0858] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1720. Error code 0X8000500D (20493): This property can't be found in the cache.
  1721. [08/03/2016 13:47:07.0889] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41E/cn=MSA
  1722. [08/03/2016 13:47:07.0889] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1723. Error code 0X8000500D (20493): This property can't be found in the cache.
  1724. [08/03/2016 13:47:07.0905] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41E/cn=CCMAIL
  1725. [08/03/2016 13:47:07.0905] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1726. Error code 0X8000500D (20493): This property can't be found in the cache.
  1727. [08/03/2016 13:47:07.0952] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41F/cn=X400
  1728. [08/03/2016 13:47:07.0952] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1729. Error code 0X8000500D (20493): This property can't be found in the cache.
  1730. [08/03/2016 13:47:07.0983] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41F/cn=MS
  1731. [08/03/2016 13:47:07.0999] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1732. Error code 0X8000500D (20493): This property can't be found in the cache.
  1733. [08/03/2016 13:47:08.0030] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41F/cn=SMTP
  1734. [08/03/2016 13:47:08.0030] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1735. Error code 0X8000500D (20493): This property can't be found in the cache.
  1736. [08/03/2016 13:47:08.0061] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41F/cn=MSA
  1737. [08/03/2016 13:47:08.0077] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1738. Error code 0X8000500D (20493): This property can't be found in the cache.
  1739. [08/03/2016 13:47:08.0092] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41F/cn=CCMAIL
  1740. [08/03/2016 13:47:08.0108] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1741. Error code 0X8000500D (20493): This property can't be found in the cache.
  1742. [08/03/2016 13:47:08.0124] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=422/cn=X400
  1743. [08/03/2016 13:47:08.0125] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1744. Error code 0X8000500D (20493): This property can't be found in the cache.
  1745. [08/03/2016 13:47:08.0161] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=422/cn=MS
  1746. [08/03/2016 13:47:08.0166] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1747. Error code 0X8000500D (20493): This property can't be found in the cache.
  1748. [08/03/2016 13:47:08.0194] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=422/cn=SMTP
  1749. [08/03/2016 13:47:08.0200] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1750. Error code 0X8000500D (20493): This property can't be found in the cache.
  1751. [08/03/2016 13:47:08.0229] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=422/cn=MSA
  1752. [08/03/2016 13:47:08.0234] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1753. Error code 0X8000500D (20493): This property can't be found in the cache.
  1754. [08/03/2016 13:47:08.0254] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=422/cn=CCMAIL
  1755. [08/03/2016 13:47:08.0259] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1756. Error code 0X8000500D (20493): This property can't be found in the cache.
  1757. [08/03/2016 13:47:08.0287] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=420/cn=X400
  1758. [08/03/2016 13:47:08.0293] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1759. Error code 0X8000500D (20493): This property can't be found in the cache.
  1760. [08/03/2016 13:47:08.0320] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=420/cn=MS
  1761. [08/03/2016 13:47:08.0326] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1762. Error code 0X8000500D (20493): This property can't be found in the cache.
  1763. [08/03/2016 13:47:08.0467] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=420/cn=SMTP
  1764. [08/03/2016 13:47:08.0467] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1765. Error code 0X8000500D (20493): This property can't be found in the cache.
  1766. [08/03/2016 13:47:08.0530] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=420/cn=MSA
  1767. [08/03/2016 13:47:08.0545] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1768. Error code 0X8000500D (20493): This property can't be found in the cache.
  1769. [08/03/2016 13:47:08.0576] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=420/cn=CCMAIL
  1770. [08/03/2016 13:47:08.0608] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1771. Error code 0X8000500D (20493): This property can't be found in the cache.
  1772. [08/03/2016 13:47:08.0654] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=42A/cn=X400
  1773. [08/03/2016 13:47:08.0654] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1774. Error code 0X8000500D (20493): This property can't be found in the cache.
  1775. [08/03/2016 13:47:08.0686] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=42A/cn=MS
  1776. [08/03/2016 13:47:08.0686] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1777. Error code 0X8000500D (20493): This property can't be found in the cache.
  1778. [08/03/2016 13:47:08.0717] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=42A/cn=SMTP
  1779. [08/03/2016 13:47:08.0717] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1780. Error code 0X8000500D (20493): This property can't be found in the cache.
  1781. [08/03/2016 13:47:08.0764] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=42A/cn=MSA
  1782. [08/03/2016 13:47:08.0764] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1783. Error code 0X8000500D (20493): This property can't be found in the cache.
  1784. [08/03/2016 13:47:08.0795] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=42A/cn=CCMAIL
  1785. [08/03/2016 13:47:08.0811] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1786. Error code 0X8000500D (20493): This property can't be found in the cache.
  1787. [08/03/2016 13:47:08.0842] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=804/cn=X400
  1788. [08/03/2016 13:47:08.0842] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1789. Error code 0X8000500D (20493): This property can't be found in the cache.
  1790. [08/03/2016 13:47:08.0873] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=804/cn=MS
  1791. [08/03/2016 13:47:08.0873] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1792. Error code 0X8000500D (20493): This property can't be found in the cache.
  1793. [08/03/2016 13:47:08.0904] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=804/cn=SMTP
  1794. [08/03/2016 13:47:08.0920] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1795. Error code 0X8000500D (20493): This property can't be found in the cache.
  1796. [08/03/2016 13:47:08.0951] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=804/cn=MSA
  1797. [08/03/2016 13:47:08.0951] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1798. Error code 0X8000500D (20493): This property can't be found in the cache.
  1799. [08/03/2016 13:47:08.0998] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=804/cn=CCMAIL
  1800. [08/03/2016 13:47:08.0998] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1801. Error code 0X8000500D (20493): This property can't be found in the cache.
  1802. [08/03/2016 13:47:09.0029] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=404/cn=MS
  1803. [08/03/2016 13:47:09.0029] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1804. Error code 0X8000500D (20493): This property can't be found in the cache.
  1805. [08/03/2016 13:47:09.0060] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=404/cn=SMTP
  1806. [08/03/2016 13:47:09.0060] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1807. Error code 0X8000500D (20493): This property can't be found in the cache.
  1808. [08/03/2016 13:47:09.0107] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=404/cn=MSA
  1809. [08/03/2016 13:47:09.0107] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1810. Error code 0X8000500D (20493): This property can't be found in the cache.
  1811. [08/03/2016 13:47:09.0138] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=404/cn=CCMAIL
  1812. [08/03/2016 13:47:09.0154] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1813. Error code 0X8000500D (20493): This property can't be found in the cache.
  1814. [08/03/2016 13:47:09.0170] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=404/cn=X400
  1815. [08/03/2016 13:47:09.0185] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1816. Error code 0X8000500D (20493): This property can't be found in the cache.
  1817. [08/03/2016 13:47:09.0216] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C04/cn=X400
  1818. [08/03/2016 13:47:09.0216] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1819. Error code 0X8000500D (20493): This property can't be found in the cache.
  1820. [08/03/2016 13:47:09.0248] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C04/cn=MS
  1821. [08/03/2016 13:47:09.0263] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1822. Error code 0X8000500D (20493): This property can't be found in the cache.
  1823. [08/03/2016 13:47:09.0295] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C04/cn=SMTP
  1824. [08/03/2016 13:47:09.0295] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1825. Error code 0X8000500D (20493): This property can't be found in the cache.
  1826. [08/03/2016 13:47:09.0529] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C04/cn=MSA
  1827. [08/03/2016 13:47:09.0544] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1828. Error code 0X8000500D (20493): This property can't be found in the cache.
  1829. [08/03/2016 13:47:09.0591] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C04/cn=CCMAIL
  1830. [08/03/2016 13:47:09.0591] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1831. Error code 0X8000500D (20493): This property can't be found in the cache.
  1832. [08/03/2016 13:47:09.0622] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=409/cn=X400
  1833. [08/03/2016 13:47:09.0638] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1834. Error code 0X8000500D (20493): This property can't be found in the cache.
  1835. [08/03/2016 13:47:09.0716] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=409/cn=MS
  1836. [08/03/2016 13:47:09.0716] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1837. Error code 0X8000500D (20493): This property can't be found in the cache.
  1838. [08/03/2016 13:47:09.0747] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=409/cn=SMTP
  1839. [08/03/2016 13:47:09.0763] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1840. Error code 0X8000500D (20493): This property can't be found in the cache.
  1841. [08/03/2016 13:47:09.0778] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=409/cn=MSA
  1842. [08/03/2016 13:47:09.0794] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1843. Error code 0X8000500D (20493): This property can't be found in the cache.
  1844. [08/03/2016 13:47:09.0825] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=409/cn=CCMAIL
  1845. [08/03/2016 13:47:09.0825] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1846. Error code 0X8000500D (20493): This property can't be found in the cache.
  1847. [08/03/2016 13:47:09.0857] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=401/cn=X400
  1848. [08/03/2016 13:47:09.0872] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1849. Error code 0X8000500D (20493): This property can't be found in the cache.
  1850. [08/03/2016 13:47:09.0903] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=401/cn=MS
  1851. [08/03/2016 13:47:09.0919] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1852. Error code 0X8000500D (20493): This property can't be found in the cache.
  1853. [08/03/2016 13:47:09.0950] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=401/cn=SMTP
  1854. [08/03/2016 13:47:09.0950] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1855. Error code 0X8000500D (20493): This property can't be found in the cache.
  1856. [08/03/2016 13:47:09.0981] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=401/cn=MSA
  1857. [08/03/2016 13:47:09.0997] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1858. Error code 0X8000500D (20493): This property can't be found in the cache.
  1859. [08/03/2016 13:47:10.0013] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=401/cn=CCMAIL
  1860. [08/03/2016 13:47:10.0028] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1861. Error code 0X8000500D (20493): This property can't be found in the cache.
  1862. [08/03/2016 13:47:10.0059] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=402/cn=X400
  1863. [08/03/2016 13:47:10.0059] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1864. Error code 0X8000500D (20493): This property can't be found in the cache.
  1865. [08/03/2016 13:47:10.0106] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=402/cn=MS
  1866. [08/03/2016 13:47:10.0106] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1867. Error code 0X8000500D (20493): This property can't be found in the cache.
  1868. [08/03/2016 13:47:10.0138] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=402/cn=SMTP
  1869. [08/03/2016 13:47:10.0153] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1870. Error code 0X8000500D (20493): This property can't be found in the cache.
  1871. [08/03/2016 13:47:10.0184] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=402/cn=MSA
  1872. [08/03/2016 13:47:10.0184] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1873. Error code 0X8000500D (20493): This property can't be found in the cache.
  1874. [08/03/2016 13:47:10.0231] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=402/cn=CCMAIL
  1875. [08/03/2016 13:47:10.0231] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1876. Error code 0X8000500D (20493): This property can't be found in the cache.
  1877. [08/03/2016 13:47:10.0247] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=403/cn=X400
  1878. [08/03/2016 13:47:10.0262] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1879. Error code 0X8000500D (20493): This property can't be found in the cache.
  1880. [08/03/2016 13:47:10.0278] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=403/cn=MS
  1881. [08/03/2016 13:47:10.0278] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1882. Error code 0X8000500D (20493): This property can't be found in the cache.
  1883. [08/03/2016 13:47:10.0309] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=403/cn=SMTP
  1884. [08/03/2016 13:47:10.0309] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1885. Error code 0X8000500D (20493): This property can't be found in the cache.
  1886. [08/03/2016 13:47:10.0340] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=403/cn=MSA
  1887. [08/03/2016 13:47:10.0340] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1888. Error code 0X8000500D (20493): This property can't be found in the cache.
  1889. [08/03/2016 13:47:10.0372] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=403/cn=CCMAIL
  1890. [08/03/2016 13:47:10.0387] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1891. Error code 0X8000500D (20493): This property can't be found in the cache.
  1892. [08/03/2016 13:47:10.0419] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=405/cn=X400
  1893. [08/03/2016 13:47:10.0434] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1894. Error code 0X8000500D (20493): This property can't be found in the cache.
  1895. [08/03/2016 13:47:10.0465] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=405/cn=MS
  1896. [08/03/2016 13:47:10.0465] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1897. Error code 0X8000500D (20493): This property can't be found in the cache.
  1898. [08/03/2016 13:47:10.0497] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=405/cn=SMTP
  1899. [08/03/2016 13:47:10.0497] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1900. Error code 0X8000500D (20493): This property can't be found in the cache.
  1901. [08/03/2016 13:47:10.0543] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=405/cn=MSA
  1902. [08/03/2016 13:47:10.0543] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1903. Error code 0X8000500D (20493): This property can't be found in the cache.
  1904. [08/03/2016 13:47:10.0590] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=405/cn=CCMAIL
  1905. [08/03/2016 13:47:10.0590] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1906. Error code 0X8000500D (20493): This property can't be found in the cache.
  1907. [08/03/2016 13:47:10.0622] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=406/cn=X400
  1908. [08/03/2016 13:47:10.0637] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1909. Error code 0X8000500D (20493): This property can't be found in the cache.
  1910. [08/03/2016 13:47:10.0668] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=406/cn=MS
  1911. [08/03/2016 13:47:10.0668] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1912. Error code 0X8000500D (20493): This property can't be found in the cache.
  1913. [08/03/2016 13:47:10.0715] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=406/cn=SMTP
  1914. [08/03/2016 13:47:10.0715] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1915. Error code 0X8000500D (20493): This property can't be found in the cache.
  1916. [08/03/2016 13:47:10.0746] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=406/cn=MSA
  1917. [08/03/2016 13:47:10.0762] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1918. Error code 0X8000500D (20493): This property can't be found in the cache.
  1919. [08/03/2016 13:47:10.0793] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=406/cn=CCMAIL
  1920. [08/03/2016 13:47:10.0809] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1921. Error code 0X8000500D (20493): This property can't be found in the cache.
  1922. [08/03/2016 13:47:10.0840] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=407/cn=X400
  1923. [08/03/2016 13:47:10.0840] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1924. Error code 0X8000500D (20493): This property can't be found in the cache.
  1925. [08/03/2016 13:47:10.0871] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=407/cn=MS
  1926. [08/03/2016 13:47:10.0887] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1927. Error code 0X8000500D (20493): This property can't be found in the cache.
  1928. [08/03/2016 13:47:10.0918] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=407/cn=SMTP
  1929. [08/03/2016 13:47:10.0934] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1930. Error code 0X8000500D (20493): This property can't be found in the cache.
  1931. [08/03/2016 13:47:10.0949] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=407/cn=MSA
  1932. [08/03/2016 13:47:10.0949] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1933. Error code 0X8000500D (20493): This property can't be found in the cache.
  1934. [08/03/2016 13:47:10.0981] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=407/cn=CCMAIL
  1935. [08/03/2016 13:47:10.0981] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1936. Error code 0X8000500D (20493): This property can't be found in the cache.
  1937. [08/03/2016 13:47:11.0012] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=408/cn=X400
  1938. [08/03/2016 13:47:11.0027] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1939. Error code 0X8000500D (20493): This property can't be found in the cache.
  1940. [08/03/2016 13:47:11.0059] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=408/cn=MS
  1941. [08/03/2016 13:47:11.0074] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1942. Error code 0X8000500D (20493): This property can't be found in the cache.
  1943. [08/03/2016 13:47:11.0105] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=408/cn=SMTP
  1944. [08/03/2016 13:47:11.0121] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1945. Error code 0X8000500D (20493): This property can't be found in the cache.
  1946. [08/03/2016 13:47:11.0152] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=408/cn=MSA
  1947. [08/03/2016 13:47:11.0152] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1948. Error code 0X8000500D (20493): This property can't be found in the cache.
  1949. [08/03/2016 13:47:11.0184] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=408/cn=CCMAIL
  1950. [08/03/2016 13:47:11.0184] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1951. Error code 0X8000500D (20493): This property can't be found in the cache.
  1952. [08/03/2016 13:47:11.0230] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C0A/cn=X400
  1953. [08/03/2016 13:47:11.0230] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1954. Error code 0X8000500D (20493): This property can't be found in the cache.
  1955. [08/03/2016 13:47:11.0277] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C0A/cn=MS
  1956. [08/03/2016 13:47:11.0277] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1957. Error code 0X8000500D (20493): This property can't be found in the cache.
  1958. [08/03/2016 13:47:11.0605] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C0A/cn=SMTP
  1959. [08/03/2016 13:47:11.0621] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1960. Error code 0X8000500D (20493): This property can't be found in the cache.
  1961. [08/03/2016 13:47:11.0683] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C0A/cn=MSA
  1962. [08/03/2016 13:47:11.0683] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1963. Error code 0X8000500D (20493): This property can't be found in the cache.
  1964. [08/03/2016 13:47:11.0714] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=C0A/cn=CCMAIL
  1965. [08/03/2016 13:47:11.0730] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1966. Error code 0X8000500D (20493): This property can't be found in the cache.
  1967. [08/03/2016 13:47:11.0761] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=425/cn=X400
  1968. [08/03/2016 13:47:11.0761] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1969. Error code 0X8000500D (20493): This property can't be found in the cache.
  1970. [08/03/2016 13:47:11.0808] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=425/cn=MS
  1971. [08/03/2016 13:47:11.0808] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1972. Error code 0X8000500D (20493): This property can't be found in the cache.
  1973. [08/03/2016 13:47:11.0839] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=425/cn=SMTP
  1974. [08/03/2016 13:47:11.0855] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1975. Error code 0X8000500D (20493): This property can't be found in the cache.
  1976. [08/03/2016 13:47:11.0886] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=425/cn=MSA
  1977. [08/03/2016 13:47:11.0886] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1978. Error code 0X8000500D (20493): This property can't be found in the cache.
  1979. [08/03/2016 13:47:11.0917] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=425/cn=CCMAIL
  1980. [08/03/2016 13:47:11.0933] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1981. Error code 0X8000500D (20493): This property can't be found in the cache.
  1982. [08/03/2016 13:47:11.0964] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=42D/cn=X400
  1983. [08/03/2016 13:47:11.0980] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1984. Error code 0X8000500D (20493): This property can't be found in the cache.
  1985. [08/03/2016 13:47:12.0011] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=42D/cn=MS
  1986. [08/03/2016 13:47:12.0027] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1987. Error code 0X8000500D (20493): This property can't be found in the cache.
  1988. [08/03/2016 13:47:12.0089] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=42D/cn=SMTP
  1989. [08/03/2016 13:47:12.0089] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1990. Error code 0X8000500D (20493): This property can't be found in the cache.
  1991. [08/03/2016 13:47:12.0120] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=42D/cn=MSA
  1992. [08/03/2016 13:47:12.0120] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1993. Error code 0X8000500D (20493): This property can't be found in the cache.
  1994. [08/03/2016 13:47:12.0151] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=42D/cn=CCMAIL
  1995. [08/03/2016 13:47:12.0167] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1996. Error code 0X8000500D (20493): This property can't be found in the cache.
  1997. [08/03/2016 13:47:12.0198] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=429/cn=X400
  1998. [08/03/2016 13:47:12.0214] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  1999. Error code 0X8000500D (20493): This property can't be found in the cache.
  2000. [08/03/2016 13:47:12.0245] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=429/cn=MS
  2001. [08/03/2016 13:47:12.0245] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2002. Error code 0X8000500D (20493): This property can't be found in the cache.
  2003. [08/03/2016 13:47:12.0276] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=429/cn=SMTP
  2004. [08/03/2016 13:47:12.0292] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2005. Error code 0X8000500D (20493): This property can't be found in the cache.
  2006. [08/03/2016 13:47:12.0323] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=429/cn=MSA
  2007. [08/03/2016 13:47:12.0323] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2008. Error code 0X8000500D (20493): This property can't be found in the cache.
  2009. [08/03/2016 13:47:12.0370] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=429/cn=CCMAIL
  2010. [08/03/2016 13:47:12.0370] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2011. Error code 0X8000500D (20493): This property can't be found in the cache.
  2012. [08/03/2016 13:47:12.0401] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=464/cn=X400
  2013. [08/03/2016 13:47:12.0401] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2014. Error code 0X8000500D (20493): This property can't be found in the cache.
  2015. [08/03/2016 13:47:12.0432] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=464/cn=MS
  2016. [08/03/2016 13:47:12.0432] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2017. Error code 0X8000500D (20493): This property can't be found in the cache.
  2018. [08/03/2016 13:47:12.0464] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=464/cn=SMTP
  2019. [08/03/2016 13:47:12.0479] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2020. Error code 0X8000500D (20493): This property can't be found in the cache.
  2021. [08/03/2016 13:47:12.0511] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=464/cn=MSA
  2022. [08/03/2016 13:47:12.0511] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2023. Error code 0X8000500D (20493): This property can't be found in the cache.
  2024. [08/03/2016 13:47:12.0557] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=464/cn=CCMAIL
  2025. [08/03/2016 13:47:12.0557] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2026. Error code 0X8000500D (20493): This property can't be found in the cache.
  2027. [08/03/2016 13:47:12.0604] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40B/cn=X400
  2028. [08/03/2016 13:47:12.0604] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2029. Error code 0X8000500D (20493): This property can't be found in the cache.
  2030. [08/03/2016 13:47:12.0635] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40B/cn=MS
  2031. [08/03/2016 13:47:12.0635] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2032. Error code 0X8000500D (20493): This property can't be found in the cache.
  2033. [08/03/2016 13:47:12.0667] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40B/cn=SMTP
  2034. [08/03/2016 13:47:12.0667] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2035. Error code 0X8000500D (20493): This property can't be found in the cache.
  2036. [08/03/2016 13:47:12.0713] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40B/cn=MSA
  2037. [08/03/2016 13:47:12.0713] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2038. Error code 0X8000500D (20493): This property can't be found in the cache.
  2039. [08/03/2016 13:47:12.0776] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40B/cn=CCMAIL
  2040. [08/03/2016 13:47:12.0776] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2041. Error code 0X8000500D (20493): This property can't be found in the cache.
  2042. [08/03/2016 13:47:12.0838] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40C/cn=X400
  2043. [08/03/2016 13:47:12.0838] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2044. Error code 0X8000500D (20493): This property can't be found in the cache.
  2045. [08/03/2016 13:47:12.0870] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40C/cn=MS
  2046. [08/03/2016 13:47:12.0870] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2047. Error code 0X8000500D (20493): This property can't be found in the cache.
  2048. [08/03/2016 13:47:12.0916] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40C/cn=SMTP
  2049. [08/03/2016 13:47:12.0916] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2050. Error code 0X8000500D (20493): This property can't be found in the cache.
  2051. [08/03/2016 13:47:12.0948] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40C/cn=MSA
  2052. [08/03/2016 13:47:12.0963] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2053. Error code 0X8000500D (20493): This property can't be found in the cache.
  2054. [08/03/2016 13:47:12.0979] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40C/cn=CCMAIL
  2055. [08/03/2016 13:47:12.0979] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2056. Error code 0X8000500D (20493): This property can't be found in the cache.
  2057. [08/03/2016 13:47:13.0010] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=456/cn=X400
  2058. [08/03/2016 13:47:13.0026] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2059. Error code 0X8000500D (20493): This property can't be found in the cache.
  2060. [08/03/2016 13:47:13.0057] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=456/cn=MS
  2061. [08/03/2016 13:47:13.0057] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2062. Error code 0X8000500D (20493): This property can't be found in the cache.
  2063. [08/03/2016 13:47:13.0104] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=456/cn=SMTP
  2064. [08/03/2016 13:47:13.0104] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2065. Error code 0X8000500D (20493): This property can't be found in the cache.
  2066. [08/03/2016 13:47:13.0135] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=456/cn=MSA
  2067. [08/03/2016 13:47:13.0136] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2068. Error code 0X8000500D (20493): This property can't be found in the cache.
  2069. [08/03/2016 13:47:13.0184] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=456/cn=CCMAIL
  2070. [08/03/2016 13:47:13.0190] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2071. Error code 0X8000500D (20493): This property can't be found in the cache.
  2072. [08/03/2016 13:47:13.0221] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40D/cn=X400
  2073. [08/03/2016 13:47:13.0227] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2074. Error code 0X8000500D (20493): This property can't be found in the cache.
  2075. [08/03/2016 13:47:13.0259] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40D/cn=MS
  2076. [08/03/2016 13:47:13.0265] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2077. Error code 0X8000500D (20493): This property can't be found in the cache.
  2078. [08/03/2016 13:47:13.0304] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40D/cn=SMTP
  2079. [08/03/2016 13:47:13.0309] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2080. Error code 0X8000500D (20493): This property can't be found in the cache.
  2081. [08/03/2016 13:47:13.0345] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40D/cn=MSA
  2082. [08/03/2016 13:47:13.0351] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2083. Error code 0X8000500D (20493): This property can't be found in the cache.
  2084. [08/03/2016 13:47:13.0379] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40D/cn=CCMAIL
  2085. [08/03/2016 13:47:13.0384] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2086. Error code 0X8000500D (20493): This property can't be found in the cache.
  2087. [08/03/2016 13:47:13.0412] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=439/cn=X400
  2088. [08/03/2016 13:47:13.0446] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2089. Error code 0X8000500D (20493): This property can't be found in the cache.
  2090. [08/03/2016 13:47:13.0478] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=439/cn=MS
  2091. [08/03/2016 13:47:13.0493] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2092. Error code 0X8000500D (20493): This property can't be found in the cache.
  2093. [08/03/2016 13:47:13.0540] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=439/cn=SMTP
  2094. [08/03/2016 13:47:13.0540] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2095. Error code 0X8000500D (20493): This property can't be found in the cache.
  2096. [08/03/2016 13:47:13.0587] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=439/cn=MSA
  2097. [08/03/2016 13:47:13.0587] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2098. Error code 0X8000500D (20493): This property can't be found in the cache.
  2099. [08/03/2016 13:47:13.0618] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=439/cn=CCMAIL
  2100. [08/03/2016 13:47:13.0618] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2101. Error code 0X8000500D (20493): This property can't be found in the cache.
  2102. [08/03/2016 13:47:13.0649] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41A/cn=X400
  2103. [08/03/2016 13:47:13.0665] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2104. Error code 0X8000500D (20493): This property can't be found in the cache.
  2105. [08/03/2016 13:47:13.0696] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41A/cn=MS
  2106. [08/03/2016 13:47:13.0712] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2107. Error code 0X8000500D (20493): This property can't be found in the cache.
  2108. [08/03/2016 13:47:13.0743] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41A/cn=SMTP
  2109. [08/03/2016 13:47:13.0759] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2110. Error code 0X8000500D (20493): This property can't be found in the cache.
  2111. [08/03/2016 13:47:13.0790] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41A/cn=MSA
  2112. [08/03/2016 13:47:13.0790] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2113. Error code 0X8000500D (20493): This property can't be found in the cache.
  2114. [08/03/2016 13:47:13.0821] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=41A/cn=CCMAIL
  2115. [08/03/2016 13:47:13.0837] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2116. Error code 0X8000500D (20493): This property can't be found in the cache.
  2117. [08/03/2016 13:47:13.0868] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40E/cn=X400
  2118. [08/03/2016 13:47:13.0868] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2119. Error code 0X8000500D (20493): This property can't be found in the cache.
  2120. [08/03/2016 13:47:13.0915] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40E/cn=MS
  2121. [08/03/2016 13:47:13.0915] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2122. Error code 0X8000500D (20493): This property can't be found in the cache.
  2123. [08/03/2016 13:47:13.0946] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40E/cn=SMTP
  2124. [08/03/2016 13:47:13.0962] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2125. Error code 0X8000500D (20493): This property can't be found in the cache.
  2126. [08/03/2016 13:47:13.0993] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40E/cn=MSA
  2127. [08/03/2016 13:47:13.0993] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2128. Error code 0X8000500D (20493): This property can't be found in the cache.
  2129. [08/03/2016 13:47:14.0040] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40E/cn=CCMAIL
  2130. [08/03/2016 13:47:14.0040] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2131. Error code 0X8000500D (20493): This property can't be found in the cache.
  2132. [08/03/2016 13:47:14.0086] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=421/cn=X400
  2133. [08/03/2016 13:47:14.0086] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2134. Error code 0X8000500D (20493): This property can't be found in the cache.
  2135. [08/03/2016 13:47:14.0133] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=421/cn=MS
  2136. [08/03/2016 13:47:14.0133] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2137. Error code 0X8000500D (20493): This property can't be found in the cache.
  2138. [08/03/2016 13:47:14.0165] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=421/cn=SMTP
  2139. [08/03/2016 13:47:14.0165] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2140. Error code 0X8000500D (20493): This property can't be found in the cache.
  2141. [08/03/2016 13:47:14.0196] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=421/cn=MSA
  2142. [08/03/2016 13:47:14.0196] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2143. Error code 0X8000500D (20493): This property can't be found in the cache.
  2144. [08/03/2016 13:47:14.0243] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=421/cn=CCMAIL
  2145. [08/03/2016 13:47:14.0243] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2146. Error code 0X8000500D (20493): This property can't be found in the cache.
  2147. [08/03/2016 13:47:14.0289] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40F/cn=X400
  2148. [08/03/2016 13:47:14.0289] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2149. Error code 0X8000500D (20493): This property can't be found in the cache.
  2150. [08/03/2016 13:47:14.0336] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40F/cn=MS
  2151. [08/03/2016 13:47:14.0336] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2152. Error code 0X8000500D (20493): This property can't be found in the cache.
  2153. [08/03/2016 13:47:14.0368] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40F/cn=SMTP
  2154. [08/03/2016 13:47:14.0368] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2155. Error code 0X8000500D (20493): This property can't be found in the cache.
  2156. [08/03/2016 13:47:14.0399] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40F/cn=MSA
  2157. [08/03/2016 13:47:14.0399] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2158. Error code 0X8000500D (20493): This property can't be found in the cache.
  2159. [08/03/2016 13:47:14.0430] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=40F/cn=CCMAIL
  2160. [08/03/2016 13:47:14.0430] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2161. Error code 0X8000500D (20493): This property can't be found in the cache.
  2162. [08/03/2016 13:47:14.0477] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=410/cn=X400
  2163. [08/03/2016 13:47:14.0477] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2164. Error code 0X8000500D (20493): This property can't be found in the cache.
  2165. [08/03/2016 13:47:14.0508] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=410/cn=MS
  2166. [08/03/2016 13:47:14.0508] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2167. Error code 0X8000500D (20493): This property can't be found in the cache.
  2168. [08/03/2016 13:47:14.0539] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=410/cn=SMTP
  2169. [08/03/2016 13:47:14.0555] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2170. Error code 0X8000500D (20493): This property can't be found in the cache.
  2171. [08/03/2016 13:47:14.0586] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=410/cn=MSA
  2172. [08/03/2016 13:47:14.0586] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2173. Error code 0X8000500D (20493): This property can't be found in the cache.
  2174. [08/03/2016 13:47:14.0633] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=410/cn=CCMAIL
  2175. [08/03/2016 13:47:14.0633] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2176. Error code 0X8000500D (20493): This property can't be found in the cache.
  2177. [08/03/2016 13:47:14.0695] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=411/cn=X400
  2178. [08/03/2016 13:47:14.0695] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2179. Error code 0X8000500D (20493): This property can't be found in the cache.
  2180. [08/03/2016 13:47:14.0727] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=411/cn=MS
  2181. [08/03/2016 13:47:14.0742] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2182. Error code 0X8000500D (20493): This property can't be found in the cache.
  2183. [08/03/2016 13:47:14.0789] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=411/cn=SMTP
  2184. [08/03/2016 13:47:14.0789] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2185. Error code 0X8000500D (20493): This property can't be found in the cache.
  2186. [08/03/2016 13:47:14.0836] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=411/cn=MSA
  2187. [08/03/2016 13:47:14.0851] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2188. Error code 0X8000500D (20493): This property can't be found in the cache.
  2189. [08/03/2016 13:47:14.0883] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=411/cn=CCMAIL
  2190. [08/03/2016 13:47:14.0898] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2191. Error code 0X8000500D (20493): This property can't be found in the cache.
  2192. [08/03/2016 13:47:14.0930] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=8411/cn=X400
  2193. [08/03/2016 13:47:14.0930] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2194. Error code 0X8000500D (20493): This property can't be found in the cache.
  2195. [08/03/2016 13:47:14.0946] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=8411/cn=MS
  2196. [08/03/2016 13:47:14.0950] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2197. Error code 0X8000500D (20493): This property can't be found in the cache.
  2198. [08/03/2016 13:47:14.0989] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=8411/cn=SMTP
  2199. [08/03/2016 13:47:14.0995] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2200. Error code 0X8000500D (20493): This property can't be found in the cache.
  2201. [08/03/2016 13:47:15.0031] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=8411/cn=MSA
  2202. [08/03/2016 13:47:15.0036] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2203. Error code 0X8000500D (20493): This property can't be found in the cache.
  2204. [08/03/2016 13:47:15.0073] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=8411/cn=CCMAIL
  2205. [08/03/2016 13:47:15.0078] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2206. Error code 0X8000500D (20493): This property can't be found in the cache.
  2207. [08/03/2016 13:47:15.0106] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=43F/cn=X400
  2208. [08/03/2016 13:47:15.0112] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2209. Error code 0X8000500D (20493): This property can't be found in the cache.
  2210. [08/03/2016 13:47:15.0145] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=43F/cn=MS
  2211. [08/03/2016 13:47:15.0150] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2212. Error code 0X8000500D (20493): This property can't be found in the cache.
  2213. [08/03/2016 13:47:15.0189] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=43F/cn=SMTP
  2214. [08/03/2016 13:47:15.0195] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2215. Error code 0X8000500D (20493): This property can't be found in the cache.
  2216. [08/03/2016 13:47:15.0258] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=43F/cn=MSA
  2217. [08/03/2016 13:47:15.0258] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2218. Error code 0X8000500D (20493): This property can't be found in the cache.
  2219. [08/03/2016 13:47:15.0289] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=43F/cn=CCMAIL
  2220. [08/03/2016 13:47:15.0289] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2221. Error code 0X8000500D (20493): This property can't be found in the cache.
  2222. [08/03/2016 13:47:15.0320] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=412/cn=X400
  2223. [08/03/2016 13:47:15.0320] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2224. Error code 0X8000500D (20493): This property can't be found in the cache.
  2225. [08/03/2016 13:47:15.0367] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=412/cn=MS
  2226. [08/03/2016 13:47:15.0367] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2227. Error code 0X8000500D (20493): This property can't be found in the cache.
  2228. [08/03/2016 13:47:15.0414] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=412/cn=SMTP
  2229. [08/03/2016 13:47:15.0414] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2230. Error code 0X8000500D (20493): This property can't be found in the cache.
  2231. [08/03/2016 13:47:15.0461] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=412/cn=MSA
  2232. [08/03/2016 13:47:15.0461] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2233. Error code 0X8000500D (20493): This property can't be found in the cache.
  2234. [08/03/2016 13:47:15.0492] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=412/cn=CCMAIL
  2235. [08/03/2016 13:47:15.0492] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2236. Error code 0X8000500D (20493): This property can't be found in the cache.
  2237. [08/03/2016 13:47:15.0523] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=427/cn=X400
  2238. [08/03/2016 13:47:15.0523] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2239. Error code 0X8000500D (20493): This property can't be found in the cache.
  2240. [08/03/2016 13:47:15.0570] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=427/cn=MS
  2241. [08/03/2016 13:47:15.0570] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2242. Error code 0X8000500D (20493): This property can't be found in the cache.
  2243. [08/03/2016 13:47:15.0601] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=427/cn=SMTP
  2244. [08/03/2016 13:47:15.0601] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2245. Error code 0X8000500D (20493): This property can't be found in the cache.
  2246. [08/03/2016 13:47:15.0632] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=427/cn=MSA
  2247. [08/03/2016 13:47:15.0648] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2248. Error code 0X8000500D (20493): This property can't be found in the cache.
  2249. [08/03/2016 13:47:15.0679] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=427/cn=CCMAIL
  2250. [08/03/2016 13:47:15.0679] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2251. Error code 0X8000500D (20493): This property can't be found in the cache.
  2252. [08/03/2016 13:47:15.0710] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=426/cn=X400
  2253. [08/03/2016 13:47:15.0710] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2254. Error code 0X8000500D (20493): This property can't be found in the cache.
  2255. [08/03/2016 13:47:15.0726] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=426/cn=MS
  2256. [08/03/2016 13:47:15.0742] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2257. Error code 0X8000500D (20493): This property can't be found in the cache.
  2258. [08/03/2016 13:47:15.0757] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=426/cn=SMTP
  2259. [08/03/2016 13:47:15.0773] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2260. Error code 0X8000500D (20493): This property can't be found in the cache.
  2261. [08/03/2016 13:47:15.0804] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=426/cn=MSA
  2262. [08/03/2016 13:47:15.0804] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2263. Error code 0X8000500D (20493): This property can't be found in the cache.
  2264. [08/03/2016 13:47:15.0851] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=426/cn=CCMAIL
  2265. [08/03/2016 13:47:15.0851] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2266. Error code 0X8000500D (20493): This property can't be found in the cache.
  2267. [08/03/2016 13:47:15.0882] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=43E/cn=X400
  2268. [08/03/2016 13:47:15.0898] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2269. Error code 0X8000500D (20493): This property can't be found in the cache.
  2270. [08/03/2016 13:47:15.0913] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=43E/cn=MS
  2271. [08/03/2016 13:47:15.0929] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2272. Error code 0X8000500D (20493): This property can't be found in the cache.
  2273. [08/03/2016 13:47:15.0960] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=43E/cn=SMTP
  2274. [08/03/2016 13:47:15.0960] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2275. Error code 0X8000500D (20493): This property can't be found in the cache.
  2276. [08/03/2016 13:47:15.0991] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=43E/cn=MSA
  2277. [08/03/2016 13:47:16.0007] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2278. Error code 0X8000500D (20493): This property can't be found in the cache.
  2279. [08/03/2016 13:47:16.0038] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=43E/cn=CCMAIL
  2280. [08/03/2016 13:47:16.0038] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2281. Error code 0X8000500D (20493): This property can't be found in the cache.
  2282. [08/03/2016 13:47:16.0069] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=414/cn=X400
  2283. [08/03/2016 13:47:16.0069] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2284. Error code 0X8000500D (20493): This property can't be found in the cache.
  2285. [08/03/2016 13:47:16.0116] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=414/cn=MS
  2286. [08/03/2016 13:47:16.0116] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2287. Error code 0X8000500D (20493): This property can't be found in the cache.
  2288. [08/03/2016 13:47:16.0147] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=414/cn=SMTP
  2289. [08/03/2016 13:47:16.0147] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2290. Error code 0X8000500D (20493): This property can't be found in the cache.
  2291. [08/03/2016 13:47:16.0179] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=414/cn=MSA
  2292. [08/03/2016 13:47:16.0179] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2293. Error code 0X8000500D (20493): This property can't be found in the cache.
  2294. [08/03/2016 13:47:16.0226] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=414/cn=CCMAIL
  2295. [08/03/2016 13:47:16.0226] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2296. Error code 0X8000500D (20493): This property can't be found in the cache.
  2297. [08/03/2016 13:47:16.0257] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=413/cn=X400
  2298. [08/03/2016 13:47:16.0272] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2299. Error code 0X8000500D (20493): This property can't be found in the cache.
  2300. [08/03/2016 13:47:16.0350] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=413/cn=MS
  2301. [08/03/2016 13:47:16.0366] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2302. Error code 0X8000500D (20493): This property can't be found in the cache.
  2303. [08/03/2016 13:47:16.0397] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=413/cn=SMTP
  2304. [08/03/2016 13:47:16.0600] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2305. Error code 0X8000500D (20493): This property can't be found in the cache.
  2306. [08/03/2016 13:47:16.0647] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=413/cn=MSA
  2307. [08/03/2016 13:47:16.0647] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2308. Error code 0X8000500D (20493): This property can't be found in the cache.
  2309. [08/03/2016 13:47:16.0678] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=413/cn=CCMAIL
  2310. [08/03/2016 13:47:16.0694] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2311. Error code 0X8000500D (20493): This property can't be found in the cache.
  2312. [08/03/2016 13:47:16.0725] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=415/cn=X400
  2313. [08/03/2016 13:47:16.0741] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2314. Error code 0X8000500D (20493): This property can't be found in the cache.
  2315. [08/03/2016 13:47:16.0756] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=415/cn=MS
  2316. [08/03/2016 13:47:16.0772] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2317. Error code 0X8000500D (20493): This property can't be found in the cache.
  2318. [08/03/2016 13:47:16.0788] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=415/cn=SMTP
  2319. [08/03/2016 13:47:16.0803] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2320. Error code 0X8000500D (20493): This property can't be found in the cache.
  2321. [08/03/2016 13:47:16.0834] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=415/cn=MSA
  2322. [08/03/2016 13:47:16.0850] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2323. Error code 0X8000500D (20493): This property can't be found in the cache.
  2324. [08/03/2016 13:47:16.0866] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=415/cn=CCMAIL
  2325. [08/03/2016 13:47:16.0866] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2326. Error code 0X8000500D (20493): This property can't be found in the cache.
  2327. [08/03/2016 13:47:16.0881] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=816/cn=X400
  2328. [08/03/2016 13:47:16.0897] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2329. Error code 0X8000500D (20493): This property can't be found in the cache.
  2330. [08/03/2016 13:47:16.0959] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=816/cn=MS
  2331. [08/03/2016 13:47:16.0959] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2332. Error code 0X8000500D (20493): This property can't be found in the cache.
  2333. [08/03/2016 13:47:16.0990] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=816/cn=SMTP
  2334. [08/03/2016 13:47:17.0006] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2335. Error code 0X8000500D (20493): This property can't be found in the cache.
  2336. [08/03/2016 13:47:17.0037] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=816/cn=MSA
  2337. [08/03/2016 13:47:17.0037] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2338. Error code 0X8000500D (20493): This property can't be found in the cache.
  2339. [08/03/2016 13:47:17.0069] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=816/cn=CCMAIL
  2340. [08/03/2016 13:47:17.0069] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2341. Error code 0X8000500D (20493): This property can't be found in the cache.
  2342. [08/03/2016 13:47:17.0100] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=416/cn=X400
  2343. [08/03/2016 13:47:17.0115] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2344. Error code 0X8000500D (20493): This property can't be found in the cache.
  2345. [08/03/2016 13:47:17.0147] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=416/cn=MS
  2346. [08/03/2016 13:47:17.0147] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2347. Error code 0X8000500D (20493): This property can't be found in the cache.
  2348. [08/03/2016 13:47:17.0178] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=416/cn=SMTP
  2349. [08/03/2016 13:47:17.0178] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2350. Error code 0X8000500D (20493): This property can't be found in the cache.
  2351. [08/03/2016 13:47:17.0193] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=416/cn=MSA
  2352. [08/03/2016 13:47:17.0193] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2353. Error code 0X8000500D (20493): This property can't be found in the cache.
  2354. [08/03/2016 13:47:17.0225] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=416/cn=CCMAIL
  2355. [08/03/2016 13:47:17.0240] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2356. Error code 0X8000500D (20493): This property can't be found in the cache.
  2357. [08/03/2016 13:47:17.0271] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=418/cn=X400
  2358. [08/03/2016 13:47:17.0271] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2359. Error code 0X8000500D (20493): This property can't be found in the cache.
  2360. [08/03/2016 13:47:17.0318] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=418/cn=MS
  2361. [08/03/2016 13:47:17.0318] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2362. Error code 0X8000500D (20493): This property can't be found in the cache.
  2363. [08/03/2016 13:47:17.0350] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=418/cn=SMTP
  2364. [08/03/2016 13:47:17.0350] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2365. Error code 0X8000500D (20493): This property can't be found in the cache.
  2366. [08/03/2016 13:47:17.0381] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=418/cn=MSA
  2367. [08/03/2016 13:47:17.0381] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2368. Error code 0X8000500D (20493): This property can't be found in the cache.
  2369. [08/03/2016 13:47:17.0428] [2] Deleteting DS object /dc=local/dc=contoso/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=contoso/cn=Addressing/cn=Address-Templates/cn=418/cn=CCMAIL
  2370. [08/03/2016 13:47:17.0428] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2371. Error code 0X8000500D (20493): This property can't be found in the cache.
  2372. [08/03/2016 13:47:17.0459] [2] Entering CAtomOrgCtChildren::ScInstallTemplates
  2373. [08/03/2016 13:47:17.0459] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2374. Error code 0X8000500D (20493): This property can't be found in the cache.
  2375. [08/03/2016 13:47:17.0459] [2] Entering ScCreateTempFileName
  2376. [08/03/2016 13:47:17.0459] [2] Leaving ScCreateTempFileName
  2377. [08/03/2016 13:47:17.0459] [2] Entering ScSubstituteStringInFile
  2378. [08/03/2016 13:47:17.0474] [2] Leaving ScSubstituteStringInFile
  2379. [08/03/2016 13:47:55.0832] [2] Leaving CAtomOrgCtChildren::ScInstallTemplates
  2380. [08/03/2016 13:47:55.0832] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2381. [08/03/2016 13:47:55.0832] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2382. [08/03/2016 13:47:55.0847] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2383. [08/03/2016 13:47:55.0847] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2384. [08/03/2016 13:47:55.0847] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2385. [08/03/2016 13:47:55.0847] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2386. [08/03/2016 13:47:55.0847] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2387. [08/03/2016 13:47:55.0847] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2388. [08/03/2016 13:47:55.0863] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2389. [08/03/2016 13:47:55.0863] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2390. [08/03/2016 13:47:55.0863] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2391. [08/03/2016 13:47:55.0863] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2392. [08/03/2016 13:47:55.0863] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2393. [08/03/2016 13:47:55.0863] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2394. [08/03/2016 13:47:55.0879] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2395. [08/03/2016 13:47:55.0879] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2396. [08/03/2016 13:47:55.0879] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2397. [08/03/2016 13:47:55.0879] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2398. [08/03/2016 13:47:55.0879] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2399. [08/03/2016 13:47:55.0879] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2400. [08/03/2016 13:47:55.0894] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2401. [08/03/2016 13:47:55.0894] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2402. [08/03/2016 13:47:55.0894] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2403. [08/03/2016 13:47:55.0894] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2404. [08/03/2016 13:47:55.0894] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2405. [08/03/2016 13:47:55.0894] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2406. [08/03/2016 13:47:55.0910] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2407. [08/03/2016 13:47:55.0910] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2408. [08/03/2016 13:47:55.0910] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2409. [08/03/2016 13:47:55.0910] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2410. [08/03/2016 13:47:55.0910] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2411. [08/03/2016 13:47:55.0910] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2412. [08/03/2016 13:47:55.0926] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2413. [08/03/2016 13:47:55.0926] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2414. [08/03/2016 13:47:55.0926] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2415. [08/03/2016 13:47:55.0926] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2416. [08/03/2016 13:47:55.0926] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2417. [08/03/2016 13:47:55.0926] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2418. [08/03/2016 13:47:55.0941] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2419. [08/03/2016 13:47:55.0941] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2420. [08/03/2016 13:47:55.0941] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2421. [08/03/2016 13:47:55.0941] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2422. [08/03/2016 13:47:55.0941] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2423. [08/03/2016 13:47:55.0941] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2424. [08/03/2016 13:47:55.0957] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2425. [08/03/2016 13:47:55.0957] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2426. [08/03/2016 13:47:55.0957] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2427. [08/03/2016 13:47:55.0957] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2428. [08/03/2016 13:47:55.0957] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2429. [08/03/2016 13:47:55.0957] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2430. [08/03/2016 13:47:55.0972] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2431. [08/03/2016 13:47:55.0972] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2432. [08/03/2016 13:47:55.0972] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2433. [08/03/2016 13:47:55.0972] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2434. [08/03/2016 13:47:55.0972] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2435. [08/03/2016 13:47:55.0972] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2436. [08/03/2016 13:47:55.0988] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2437. [08/03/2016 13:47:55.0988] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2438. [08/03/2016 13:47:55.0988] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2439. [08/03/2016 13:47:55.0988] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2440. [08/03/2016 13:47:55.0988] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2441. [08/03/2016 13:47:55.0988] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2442. [08/03/2016 13:47:56.0004] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2443. [08/03/2016 13:47:56.0004] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2444. [08/03/2016 13:47:56.0004] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2445. [08/03/2016 13:47:56.0004] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2446. [08/03/2016 13:47:56.0004] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2447. [08/03/2016 13:47:56.0004] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2448. [08/03/2016 13:47:56.0019] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2449. [08/03/2016 13:47:56.0019] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2450. [08/03/2016 13:47:56.0019] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2451. [08/03/2016 13:47:56.0019] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2452. [08/03/2016 13:47:56.0019] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2453. [08/03/2016 13:47:56.0019] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2454. [08/03/2016 13:47:56.0035] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2455. [08/03/2016 13:47:56.0035] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2456. [08/03/2016 13:47:56.0035] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2457. [08/03/2016 13:47:56.0035] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2458. [08/03/2016 13:47:56.0035] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2459. [08/03/2016 13:47:56.0035] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2460. [08/03/2016 13:47:56.0050] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2461. [08/03/2016 13:47:56.0050] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2462. [08/03/2016 13:47:56.0050] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2463. [08/03/2016 13:47:56.0050] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2464. [08/03/2016 13:47:56.0050] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2465. [08/03/2016 13:47:56.0050] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2466. [08/03/2016 13:47:56.0066] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2467. [08/03/2016 13:47:56.0066] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2468. [08/03/2016 13:47:56.0066] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2469. [08/03/2016 13:47:56.0066] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2470. [08/03/2016 13:47:56.0066] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2471. [08/03/2016 13:47:56.0066] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2472. [08/03/2016 13:47:56.0082] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2473. [08/03/2016 13:47:56.0082] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2474. [08/03/2016 13:47:56.0082] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2475. [08/03/2016 13:47:56.0082] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2476. [08/03/2016 13:47:56.0082] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2477. [08/03/2016 13:47:56.0082] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2478. [08/03/2016 13:47:56.0082] [2] Entering CAtomOrgCtChildren::ScCopyAttribute
  2479. [08/03/2016 13:47:56.0082] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute
  2480. [08/03/2016 13:47:56.0097] [2] Leaving CAtomOrgCtChildren::ScUpdateTemplates
  2481. [08/03/2016 13:47:56.0097] [2] Creating templates
  2482. [08/03/2016 13:47:56.0097] [2] Entering CAtomOrgCtChildren::ScCreateProxyDLLObjects
  2483. [08/03/2016 13:47:56.0097] [2] Configuring X400 address type for i386 processor.
  2484. [08/03/2016 13:47:56.0097] [2] Entering ScCreateOrgLevelAddressTypeObjs
  2485. [08/03/2016 13:47:56.0097] [2] Leaving ScCreateOrgLevelAddressTypeObj
  2486. [08/03/2016 13:47:56.0097] [2] Configuring X400 address type for AMD64 processor.
  2487. [08/03/2016 13:47:56.0097] [2] Entering ScCreateOrgLevelAddressTypeObjs
  2488. [08/03/2016 13:47:56.0113] [2] Leaving ScCreateOrgLevelAddressTypeObj
  2489. [08/03/2016 13:47:56.0113] [2] Configuring SMTP address type for i386 processor.
  2490. [08/03/2016 13:47:56.0113] [2] Entering ScCreateOrgLevelAddressTypeObjs
  2491. [08/03/2016 13:47:56.0113] [2] Leaving ScCreateOrgLevelAddressTypeObj
  2492. [08/03/2016 13:47:56.0113] [2] Configuring SMTP address type for AMD64 processor.
  2493. [08/03/2016 13:47:56.0113] [2] Entering ScCreateOrgLevelAddressTypeObjs
  2494. [08/03/2016 13:47:56.0113] [2] Leaving ScCreateOrgLevelAddressTypeObj
  2495. [08/03/2016 13:47:56.0113] [2] Configuring NOTES address type for i386 processor.
  2496. [08/03/2016 13:47:56.0113] [2] Entering ScCreateOrgLevelAddressTypeObjs
  2497. [08/03/2016 13:47:56.0128] [2] Leaving ScCreateOrgLevelAddressTypeObj
  2498. [08/03/2016 13:47:56.0128] [2] Configuring NOTES address type for AMD64 processor.
  2499. [08/03/2016 13:47:56.0128] [2] Entering ScCreateOrgLevelAddressTypeObjs
  2500. [08/03/2016 13:47:56.0128] [2] Leaving ScCreateOrgLevelAddressTypeObj
  2501. [08/03/2016 13:47:56.0128] [2] Configuring GWISE address type for i386 processor.
  2502. [08/03/2016 13:47:56.0128] [2] Entering ScCreateOrgLevelAddressTypeObjs
  2503. [08/03/2016 13:47:56.0128] [2] Leaving ScCreateOrgLevelAddressTypeObj
  2504. [08/03/2016 13:47:56.0128] [2] Configuring GWISE address type for AMD64 processor.
  2505. [08/03/2016 13:47:56.0128] [2] Entering ScCreateOrgLevelAddressTypeObjs
  2506. [08/03/2016 13:47:56.0128] [2] Leaving ScCreateOrgLevelAddressTypeObj
  2507. [08/03/2016 13:47:56.0128] [2] Leaving CAtomOrgCtChildren::ScCreateProxyDLLObjects
  2508. [08/03/2016 13:47:56.0128] [2] Creating system policies.
  2509. [08/03/2016 13:47:56.0128] [2] Entering CAtomOrgCtChildren::ScCreateSystemPolicies
  2510. [08/03/2016 13:47:56.0128] [2] Creating System Policies
  2511. [08/03/2016 13:47:56.0128] [2] Creating System Policies\Mail Enable Recipient
  2512. [08/03/2016 13:47:56.0144] [2] Creating System Policies\Mailbox Enable User
  2513. [08/03/2016 13:47:56.0144] [2] Leaving CAtomOrgCtChildren::ScCreateSystemPolicies
  2514. [08/03/2016 13:47:56.0144] [2] Setting policy roots attribute on the Microsoft Exchange container
  2515. [08/03/2016 13:47:56.0144] [2] Entering CAtomOrgCtChildren::ScSetPolicyRootsOnExchangeContainer
  2516. [08/03/2016 13:47:56.0144] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2517. Error code 0X8000500D (20493): This property can't be found in the cache.
  2518. [08/03/2016 13:47:56.0144] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2519. Error code 0X8000500D (20493): This property can't be found in the cache.
  2520. [08/03/2016 13:47:56.0160] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2521. Error code 0X8000500D (20493): This property can't be found in the cache.
  2522. [08/03/2016 13:47:56.0160] [2] Status code check (f:\15.00.1210\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
  2523. Error code 0X8000500D (20493): This property can't be found in the cache.
  2524. [08/03/2016 13:47:56.0160] [2] Leaving CAtomOrgCtChildren::ScSetPolicyRootsOnExchangeContainer
  2525. [08/03/2016 13:47:56.0160] [2] Leaving CAtomOrgCtChildren::ScAddDSObjects
  2526. [08/03/2016 13:47:56.0160] [2] Leaving CBaseAtom(Microsoft Exchange Organization-Level container children)::ScRefreshDSObjects
  2527. [08/03/2016 13:47:56.0160] [2] Entering CAtomOrgCtChildren::ScUpdateSharedAtomRemovalControl
  2528. [08/03/2016 13:47:56.0160] [2] Leaving CAtomOrgCtChildren::ScUpdateSharedAtomRemovalControl
  2529. [08/03/2016 13:47:56.0160] [2] Completed Reinstall of Microsoft Exchange Organization-Level container children sub-component.
  2530. [08/03/2016 13:47:56.0160] [2] Leaving ScSetupAtom
  2531. [08/03/2016 13:47:56.0160] [2] Ending processing buildToBuildUpgrade-ExsetDataAtom
  2532. [08/03/2016 13:47:56.0160] [1] Executing:
  2533. initialize-ExchangeUniversalGroups -DomainController $RoleDomainController -ActiveDirectorySplitPermissions $RoleActiveDirectorySplitPermissions
  2534.  
  2535.  
  2536. [08/03/2016 13:47:56.0175] [2] Active Directory session settings for 'initialize-ExchangeUniversalGroups' are: View Entire Forest: 'True', Configuration Domain Controller: 'SERVERDC2.contoso.com', Preferred Global Catalog: 'SERVERDC2.contoso.com', Preferred Domain Controllers: '{ SERVERDC2.contoso.com }'
  2537. [08/03/2016 13:47:56.0175] [2] User specified parameters: -DomainController:'SERVERDC2.contoso.com' -ActiveDirectorySplitPermissions:$null
  2538. [08/03/2016 13:47:56.0175] [2] Beginning processing initialize-ExchangeUniversalGroups
  2539. [08/03/2016 13:47:56.0191] [2] Used domain controller SERVERDC2.contoso.com to read object DC=contoso,DC=local.
  2540. [08/03/2016 13:47:56.0191] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Configuration,DC=contoso,DC=local.
  2541. [08/03/2016 13:47:56.0191] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=contoso,DC=local.
  2542. [08/03/2016 13:47:56.0269] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2543. [08/03/2016 13:47:56.0269] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2544. [08/03/2016 13:47:56.0269] [2] Used domain controller SERVERDC2.contoso.com to read object CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2545. [08/03/2016 13:47:56.0269] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Public Folder Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2546. [08/03/2016 13:47:56.0285] [2] Used domain controller SERVERDC2.contoso.com to read object CN=UM Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2547. [08/03/2016 13:47:56.0285] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Help Desk,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2548. [08/03/2016 13:47:56.0285] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Records Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2549. [08/03/2016 13:47:56.0285] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Discovery Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2550. [08/03/2016 13:47:56.0285] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Server Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2551. [08/03/2016 13:47:56.0300] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Delegated Setup,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2552. [08/03/2016 13:47:56.0300] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Hygiene Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2553. [08/03/2016 13:47:56.0300] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Compliance Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2554. [08/03/2016 13:47:56.0300] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Exchange Servers,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local.
  2555. [08/03/2016 13:47:56.0316] [2] Used domain controller SERVERDC2.contoso.com to read object CN=ExchangeLegacyInterop,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local.
  2556. [08/03/2016 13:47:56.0316] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Exchange Trusted Subsystem,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2557. [08/03/2016 13:47:56.0316] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Exchange Windows Permissions,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2558. [08/03/2016 13:47:56.0331] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2559. [08/03/2016 13:47:56.0331] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2560. [08/03/2016 13:47:56.0331] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2561. [08/03/2016 13:47:56.0331] [2] Group CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2562. [08/03/2016 13:47:56.0331] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2563. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Exchange Organization Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local.
  2564. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Exchange Organization Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local.
  2565. [08/03/2016 13:47:56.0347] [2] Object CN=Exchange Organization Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local is already a member of group CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2566. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2567. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2568. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2569. [08/03/2016 13:47:56.0347] [2] Group CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2570. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2571. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Exchange Recipient Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local.
  2572. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Exchange Recipient Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local.
  2573. [08/03/2016 13:47:56.0347] [2] Object CN=Exchange Recipient Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local is already a member of group CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2574. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2575. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2576. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2577. [08/03/2016 13:47:56.0347] [2] Group CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2578. [08/03/2016 13:47:56.0347] [2] Used domain controller SERVERDC2.contoso.com to read object CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2579. [08/03/2016 13:47:56.0363] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Exchange View-Only Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local.
  2580. [08/03/2016 13:47:56.0363] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Exchange View-Only Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local.
  2581. [08/03/2016 13:47:56.0363] [2] Object CN=Exchange View-Only Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local is already a member of group CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2582. [08/03/2016 13:47:56.0363] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Public Folder Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2583. [08/03/2016 13:47:56.0363] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Public Folder Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2584. [08/03/2016 13:47:56.0363] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Public Folder Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2585. [08/03/2016 13:47:56.0363] [2] Group CN=Public Folder Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2586. [08/03/2016 13:47:56.0363] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Public Folder Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2587. [08/03/2016 13:47:56.0363] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Exchange Public Folder Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local.
  2588. [08/03/2016 13:47:56.0363] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Exchange Public Folder Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local.
  2589. [08/03/2016 13:47:56.0363] [2] Object CN=Exchange Public Folder Administrators,OU=Microsoft Exchange Security Groups,OU=MTHV Security Groups,OU=MTHV,DC=contoso,DC=local is already a member of group CN=Public Folder Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2590. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=UM Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2591. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=UM Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2592. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=UM Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2593. [08/03/2016 13:47:56.0378] [2] Group CN=UM Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2594. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=UM Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2595. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Help Desk,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2596. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Help Desk,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2597. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Help Desk,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2598. [08/03/2016 13:47:56.0378] [2] Group CN=Help Desk,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2599. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Help Desk,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2600. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Records Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2601. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Records Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2602. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Records Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2603. [08/03/2016 13:47:56.0378] [2] Group CN=Records Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2604. [08/03/2016 13:47:56.0378] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Records Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2605. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Discovery Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2606. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Discovery Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2607. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Discovery Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2608. [08/03/2016 13:47:56.0394] [2] Group CN=Discovery Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2609. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Discovery Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2610. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Server Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2611. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Server Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2612. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Server Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2613. [08/03/2016 13:47:56.0394] [2] Group CN=Server Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2614. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Server Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2615. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Delegated Setup,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2616. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Delegated Setup,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2617. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Delegated Setup,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2618. [08/03/2016 13:47:56.0394] [2] Group CN=Delegated Setup,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2619. [08/03/2016 13:47:56.0394] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Delegated Setup,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2620. [08/03/2016 13:47:56.0409] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Hygiene Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2621. [08/03/2016 13:47:56.0409] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Hygiene Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2622. [08/03/2016 13:47:56.0409] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Hygiene Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2623. [08/03/2016 13:47:56.0409] [2] Group CN=Hygiene Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2624. [08/03/2016 13:47:56.0409] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Hygiene Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2625. [08/03/2016 13:47:56.0409] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Compliance Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2626. [08/03/2016 13:47:56.0409] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Compliance Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2627. [08/03/2016 13:47:56.0409] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Compliance Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2628. [08/03/2016 13:47:56.0409] [2] Group CN=Compliance Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local already exists.
  2629. [08/03/2016 13:47:56.0409] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Compliance Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2630. [08/03/2016 13:47:56.0456] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local.
  2631. [08/03/2016 13:47:56.0456] [2] Used domain controller SERVERDC2.contoso.com to read object CN=Daniel Spahn,OU=MDHV IT Users,OU=MDHV,DC=contoso,DC=local.
  2632. [08/03/2016 13:47:56.0472] [2] [ERROR] Active Directory operation failed on SERVERDC2.contoso.com. One or more attribute entries of the object 'CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local' already exists.
  2633. [08/03/2016 13:47:56.0472] [2] [ERROR] The object exists.
  2634. [08/03/2016 13:47:56.0472] [2] Ending processing initialize-ExchangeUniversalGroups
  2635. [08/03/2016 13:47:56.0472] [1] The following 1 error(s) occurred during task execution:
  2636. [08/03/2016 13:47:56.0472] [1] 0. ErrorRecord: Active Directory operation failed on SERVERDC2.contoso.com. One or more attribute entries of the object 'CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local' already exists.
  2637. [08/03/2016 13:47:56.0472] [1] 0. ErrorRecord: Microsoft.Exchange.Data.Directory.ADObjectEntryAlreadyExistsException: Active Directory operation failed on SERVERDC2.contoso.com. One or more attribute entries of the object 'CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local' already exists. ---> System.DirectoryServices.Protocols.DirectoryOperationException: The object exists.
  2638. at System.DirectoryServices.Protocols.LdapConnection.ConstructResponse(Int32 messageId, LdapOperation operation, ResultAll resultType, TimeSpan requestTimeOut, Boolean exceptionOnTimeOut)
  2639. at System.DirectoryServices.Protocols.LdapConnection.SendRequest(DirectoryRequest request, TimeSpan requestTimeout)
  2640. at Microsoft.Exchange.Data.Directory.PooledLdapConnection.SendRequest(DirectoryRequest request, LdapOperation ldapOperation, Nullable`1 clientSideSearchTimeout, IActivityScope activityScope, String callerInfo)
  2641. at Microsoft.Exchange.Data.Directory.ADDataSession.ExecuteModificationRequest(ADObject entry, DirectoryRequest request, ADObjectId originalId, Boolean emptyObjectSessionOnException, Boolean isSync)
  2642. --- End of inner exception stack trace ---
  2643. at Microsoft.Exchange.Data.Directory.ADDataSession.AnalyzeDirectoryError(PooledLdapConnection connection, DirectoryRequest request, DirectoryException de, Int32 totalRetries, Int32 retriesOnServer)
  2644. at Microsoft.Exchange.Data.Directory.ADDataSession.ExecuteModificationRequest(ADObject entry, DirectoryRequest request, ADObjectId originalId, Boolean emptyObjectSessionOnException, Boolean isSync)
  2645. at Microsoft.Exchange.Data.Directory.ADDataSession.Save(ADObject instanceToSave, IEnumerable`1 properties, Boolean bypassValidation)
  2646. at Microsoft.Exchange.Data.Directory.Recipient.ADRecipientObjectSession.Save(ADRecipient instanceToSave)
  2647. at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.AddMember(ADObject obj, IRecipientSession session, ADGroup destGroup, WriteVerboseDelegate writeVerbose)
  2648. at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.CreateAndValidateRoleGroups(ADOrganizationalUnit usgContainer, RoleGroupCollection roleGroups)
  2649. at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.InternalProcessRecord()
  2650. at Microsoft.Exchange.Configuration.Tasks.Task.<ProcessRecord>b__b()
  2651. at Microsoft.Exchange.Configuration.Tasks.Task.InvokeRetryableFunc(String funcName, Action func, Boolean terminatePipelineIfFailed)
  2652. [08/03/2016 13:47:56.0488] [1] [ERROR] The following error was generated when "$error.Clear();
  2653. initialize-ExchangeUniversalGroups -DomainController $RoleDomainController -ActiveDirectorySplitPermissions $RoleActiveDirectorySplitPermissions
  2654.  
  2655. " was run: "Microsoft.Exchange.Data.Directory.ADObjectEntryAlreadyExistsException: Active Directory operation failed on SERVERDC2.contoso.com. One or more attribute entries of the object 'CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local' already exists. ---> System.DirectoryServices.Protocols.DirectoryOperationException: The object exists.
  2656. at System.DirectoryServices.Protocols.LdapConnection.ConstructResponse(Int32 messageId, LdapOperation operation, ResultAll resultType, TimeSpan requestTimeOut, Boolean exceptionOnTimeOut)
  2657. at System.DirectoryServices.Protocols.LdapConnection.SendRequest(DirectoryRequest request, TimeSpan requestTimeout)
  2658. at Microsoft.Exchange.Data.Directory.PooledLdapConnection.SendRequest(DirectoryRequest request, LdapOperation ldapOperation, Nullable`1 clientSideSearchTimeout, IActivityScope activityScope, String callerInfo)
  2659. at Microsoft.Exchange.Data.Directory.ADDataSession.ExecuteModificationRequest(ADObject entry, DirectoryRequest request, ADObjectId originalId, Boolean emptyObjectSessionOnException, Boolean isSync)
  2660. --- End of inner exception stack trace ---
  2661. at Microsoft.Exchange.Data.Directory.ADDataSession.AnalyzeDirectoryError(PooledLdapConnection connection, DirectoryRequest request, DirectoryException de, Int32 totalRetries, Int32 retriesOnServer)
  2662. at Microsoft.Exchange.Data.Directory.ADDataSession.ExecuteModificationRequest(ADObject entry, DirectoryRequest request, ADObjectId originalId, Boolean emptyObjectSessionOnException, Boolean isSync)
  2663. at Microsoft.Exchange.Data.Directory.ADDataSession.Save(ADObject instanceToSave, IEnumerable`1 properties, Boolean bypassValidation)
  2664. at Microsoft.Exchange.Data.Directory.Recipient.ADRecipientObjectSession.Save(ADRecipient instanceToSave)
  2665. at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.AddMember(ADObject obj, IRecipientSession session, ADGroup destGroup, WriteVerboseDelegate writeVerbose)
  2666. at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.CreateAndValidateRoleGroups(ADOrganizationalUnit usgContainer, RoleGroupCollection roleGroups)
  2667. at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.InternalProcessRecord()
  2668. at Microsoft.Exchange.Configuration.Tasks.Task.<ProcessRecord>b__b()
  2669. at Microsoft.Exchange.Configuration.Tasks.Task.InvokeRetryableFunc(String funcName, Action func, Boolean terminatePipelineIfFailed)".
  2670. [08/03/2016 13:47:56.0488] [1] [ERROR] Active Directory operation failed on SERVERDC2.contoso.com. One or more attribute entries of the object 'CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=contoso,DC=local' already exists.
  2671. [08/03/2016 13:47:56.0488] [1] [ERROR] The object exists.
  2672. [08/03/2016 13:47:56.0488] [1] [ERROR-REFERENCE] Id=443949901 Component=
  2673. [08/03/2016 13:47:56.0488] [1] Setup is stopping now because of one or more critical errors.
  2674. [08/03/2016 13:47:56.0488] [1] Finished executing component tasks.
  2675. [08/03/2016 13:47:56.0488] [1] Ending processing Install-ExchangeOrganization
  2676. [08/03/2016 14:31:10.0910] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
  2677. [08/03/2016 14:31:10.0910] [0] CurrentResult setupbase.maincore:396: 0
  2678. [08/03/2016 14:31:10.0910] [0] End of Setup
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement