From 10bc5afe5fde3e57ab3a8bfefc64721f4067ba6c Mon Sep 17 00:00:00 2001 From: David Paulson Date: Sat, 6 Mar 2021 21:49:08 -0600 Subject: [PATCH 1/7] Added running User and SID information of groups to SetupAssist #39 --- Setup/SetupAssist.ps1 | 35 ++++++++++++++++++++++++----------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/Setup/SetupAssist.ps1 b/Setup/SetupAssist.ps1 index 7ba6b340d2..81db225551 100644 --- a/Setup/SetupAssist.ps1 +++ b/Setup/SetupAssist.ps1 @@ -18,7 +18,18 @@ function IsAdministrator { function GetGroupMatches($whoamiOutput, $groupName) { $m = @($whoamiOutput | Select-String "(^\w+\\$($groupName))\W+Group") if ($m.Count -eq 0) { return $m } - return $m.Matches | ForEach-Object { $_.Groups[1].Value } + return $m | ForEach-Object { + [PSCustomObject]@{ + GroupName = ($_.Matches.Groups[1].Value) + SID = (GetSidFromLine $_.Line) + } + } +} + +Function GetSidFromLine ([string]$Line) { + $startIndex = $Line.IndexOf("S-") + return $Line.Substring($startIndex, + $Line.IndexOf(" ", $startIndex) - $startIndex) } # From https://stackoverflow.com/questions/47867949/how-can-i-check-for-a-pending-reboot @@ -174,42 +185,44 @@ function Get-ExchangeAdSetupObjects { return $hash } +$whoamiOutput = whoami /all + +$whoamiOutput | Select-String "User Name" -Context (0, 3) + if (IsAdministrator) { Write-Host "User is an administrator." } else { Write-Warning "User is not an administrator." } -$whoamiOutput = whoami /all - -$g = GetGroupMatches $whoamiOutput "Domain Admins" +[array]$g = GetGroupMatches $whoamiOutput "Domain Admins" if ($g.Count -gt 0) { - $g | ForEach-Object { Write-Host "User is a member of" $_ } + $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } } else { Write-Warning "User is not a member of Domain Admins." } -$g = GetGroupMatches $whoamiOutput "Schema Admins" +[array]$g = GetGroupMatches $whoamiOutput "Schema Admins" if ($g.Count -gt 0) { - $g | ForEach-Object { Write-Host "User is a member of" $_ } + $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } } else { Write-Warning "User is not a member of Schema Admins. - Only required if doing a Schema Update" } -$g = GetGroupMatches $whoamiOutput "Enterprise Admins" +[array]$g = GetGroupMatches $whoamiOutput "Enterprise Admins" if ($g.Count -gt 0) { - $g | ForEach-Object { Write-Host "User is a member of" $_ } + $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } } else { Write-Warning "User is not a member of Enterprise Admins. - Only required if doing a Schema Update or PrepareAD or PrepareDomain" } -$g = GetGroupMatches $whoamiOutput "Organization Management" +[array]$g = GetGroupMatches $whoamiOutput "Organization Management" if ($g.Count -gt 0) { - $g | ForEach-Object { Write-Host "User is a member of" $_ } + $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } } else { Write-Warning "User is not a member of Organization Management." } From 94ef7f2db900a830c8a61d58a59021c0746c4bc9 Mon Sep 17 00:00:00 2001 From: David Paulson Date: Sat, 6 Mar 2021 21:52:59 -0600 Subject: [PATCH 2/7] Changed Write-Error on Action Items to Write-Host with Red This makes the results a little cleaner --- Setup/SetupLogReviewer.ps1 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Setup/SetupLogReviewer.ps1 b/Setup/SetupLogReviewer.ps1 index ea728efb0b..9f35606ee6 100644 --- a/Setup/SetupLogReviewer.ps1 +++ b/Setup/SetupLogReviewer.ps1 @@ -35,7 +35,7 @@ Function Get-DelegatedInstallerHasProperRights { } if ((Test-EvaluatedSettingOrRule -SettingName "ServerAlreadyExists") -eq "False") { - Write-Error "ServerAlreadyExists check came back False, and the user that ran setup does not have ExOrgAdmin or EnterpriseAdmin." + Write-Host "ServerAlreadyExists check came back False, and the user that ran setup does not have ExOrgAdmin or EnterpriseAdmin." -ForegroundColor Red return } @@ -51,7 +51,7 @@ Function Get-DelegatedInstallerHasProperRights { Write-Host "User that ran setup has extra rights to the server object, but is also a member of Server Management, so it's fine." return } elseif ($serverManagementValue -eq "False") { - Write-Error "User that ran setup has extra rights to the server object and is not in Server Management. This causes setup to fail." + Write-Host "User that ran setup has extra rights to the server object and is not in Server Management. This causes setup to fail." -ForegroundColor Red return } } @@ -111,7 +111,7 @@ Function Get-StringInLastRunOfExchangeSetup { Function Test-PrerequisiteCheck { if ((Test-EvaluatedSettingOrRule -SettingName "PendingRebootWindowsComponents" -SettingOrRule "Rule") -eq "True") { - Write-Error ("Computer is pending reboot based off the Windows Component is the registry") + Write-Host ("Computer is pending reboot based off the Windows Component is the registry") -ForegroundColor Red return $true } @@ -135,30 +135,30 @@ Function Test-PrerequisiteCheck { if ($schemaUpdateRequired.Matches.Groups[1].Value -eq "True" -and (Test-EvaluatedSettingOrRule -SettingName "SchemaAdmin") -eq "False") { - Write-Error ("/PrepareSchema is required and user {0} isn't apart of the Schema Admins group." -f $currentLogOnUser) + Write-Host ("/PrepareSchema is required and user {0} isn't apart of the Schema Admins group." -f $currentLogOnUser) -ForegroundColor Red return $true } if ($schemaUpdateRequired.Matches.Groups[1].Value -eq "True" -and (Test-EvaluatedSettingOrRule -SettingName "EnterpriseAdmin") -eq "False") { - Write-Error ("/PrepareSchema is required and user {0} isn't apart of the Enterprise Admins group." -f $currentLogOnUser) + Write-Host ("/PrepareSchema is required and user {0} isn't apart of the Enterprise Admins group." -f $currentLogOnUser) -ForegroundColor Red return $true } if ($orgConfigUpdateRequired.Matches.Groups[1].Value -eq "True" -and (Test-EvaluatedSettingOrRule -SettingName "EnterpriseAdmin") -eq "False") { - Write-Error ("/PrepareAD is required and user {0} isn't apart of the Enterprise Admins group." -f $currentLogOnUser) + Write-Host ("/PrepareAD is required and user {0} isn't apart of the Enterprise Admins group." -f $currentLogOnUser) -ForegroundColor Red return $true } if ($domainConfigUpdateRequired.Matches.Groups[1].Value -eq "True" -and (Test-EvaluatedSettingOrRule -SettingName "EnterpriseAdmin") -eq "False") { - Write-Error ("/PrepareDomain needs to be run in this domain, but we actually require Enterprise Admin group to properly run this command.") + Write-Host ("/PrepareDomain needs to be run in this domain, but we actually require Enterprise Admin group to properly run this command.") -ForegroundColor Red return $true } if ((Test-EvaluatedSettingOrRule -SettingName "ExOrgAdmin") -eq "False") { - Write-Error ("User {0} isn't apart of Organization Management group." -f $currentLogOnUser) + Write-Host ("User {0} isn't apart of Organization Management group." -f $currentLogOnUser) -ForegroundColor Red return $true } From 8043def9a784b3f71b00a1323c4ebe391b627c95 Mon Sep 17 00:00:00 2001 From: David Paulson Date: Sat, 6 Mar 2021 21:58:14 -0600 Subject: [PATCH 3/7] Added SID output of SidExOrgAdmins #39 --- Setup/SetupLogReviewer.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Setup/SetupLogReviewer.ps1 b/Setup/SetupLogReviewer.ps1 index 9f35606ee6..8a61ac4ebc 100644 --- a/Setup/SetupLogReviewer.ps1 +++ b/Setup/SetupLogReviewer.ps1 @@ -159,6 +159,8 @@ Function Test-PrerequisiteCheck { if ((Test-EvaluatedSettingOrRule -SettingName "ExOrgAdmin") -eq "False") { Write-Host ("User {0} isn't apart of Organization Management group." -f $currentLogOnUser) -ForegroundColor Red + $sid = Get-EvaluatedSettingOrRule -SettingName "SidExOrgAdmins" -ValueType "." + Write-Host ("Looking to be in this group SID: $($sid.Matches.Groups[1].Value)") return $true } From f3d87ac600e641d3ee6f185230b884d63303a0f5 Mon Sep 17 00:00:00 2001 From: David Paulson Date: Sun, 7 Mar 2021 09:37:46 -0600 Subject: [PATCH 4/7] Added Pester Testing for SetupLogReviewer - Added Pester Testing against all the logs that i currently have. - Removed from build script (keeping in formatting) --- .build/Build.ps1 | 1 + Setup/SetupLogReviewer.ps1 | 98 +++++++++++++++++--------- Setup/Tests/SetupLogReviewer.Tests.ps1 | 88 +++++++++++++++++++++++ 3 files changed, 152 insertions(+), 35 deletions(-) create mode 100644 Setup/Tests/SetupLogReviewer.Tests.ps1 diff --git a/.build/Build.ps1 b/.build/Build.ps1 index 53ee675264..1dfe14b434 100644 --- a/.build/Build.ps1 +++ b/.build/Build.ps1 @@ -28,6 +28,7 @@ New-Item -Path $distFolder -ItemType Directory | Out-Null $scriptFiles = Get-ChildItem -Path $repoRoot -Directory | Where-Object { $_.Name -ne ".build" } | ForEach-Object { Get-ChildItem -Path $_.FullName *.ps1 -Recurse } | + Where-Object {! $_.Name.Contains(".Tests.ps1")} Sort-Object Name | ForEach-Object { $_.FullName } diff --git a/Setup/SetupLogReviewer.ps1 b/Setup/SetupLogReviewer.ps1 index 8a61ac4ebc..93642044a2 100644 --- a/Setup/SetupLogReviewer.ps1 +++ b/Setup/SetupLogReviewer.ps1 @@ -4,11 +4,14 @@ # Use the DelegateSetup switch if the log is from a Delegated Setup and you are running into a Prerequisite Check issue # [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', '', Justification = 'Parameter is used')] -[CmdletBinding()] +[CmdletBinding(DefaultParameterSetName = "Main")] param( - [Parameter(Mandatory = $true)] + [Parameter(Mandatory = $true, ParameterSetName = "Main")] [System.IO.FileInfo]$SetupLog, - [switch]$DelegatedSetup + [Parameter(ParameterSetName = "Main")] + [switch]$DelegatedSetup, + [Parameter(ParameterSetName = "PesterLoading")] + [switch]$PesterLoad ) $feedbackEmail = "ExToolsFeedback@microsoft.com" @@ -22,25 +25,32 @@ $feedbackEmail = "ExToolsFeedback@microsoft.com" # group. The options are either add the delegated installer to that group, or # remove them from whatever group is giving them too many rights (usually Domain Admins). +Function Receive-Output { + param( + [string]$ForegroundColor + ) + process { Write-Host $_ -ForegroundColor $ForegroundColor } +} + Function Get-DelegatedInstallerHasProperRights { if ((Test-EvaluatedSettingOrRule -SettingName "EnterpriseAdmin") -eq "True") { - Write-Host "User that ran setup has EnterpriseAdmin and does not need to be in Server Management." + Write-Output "User that ran setup has EnterpriseAdmin and does not need to be in Server Management." return } if ((Test-EvaluatedSettingOrRule -SettingName "ExOrgAdmin") -eq "True") { - Write-Host "User that ran setup has ExOrgAdmin and does not need to be in Server Management." + Write-Output "User that ran setup has ExOrgAdmin and does not need to be in Server Management." return } if ((Test-EvaluatedSettingOrRule -SettingName "ServerAlreadyExists") -eq "False") { - Write-Host "ServerAlreadyExists check came back False, and the user that ran setup does not have ExOrgAdmin or EnterpriseAdmin." -ForegroundColor Red + Write-Output "ServerAlreadyExists check came back False, and the user that ran setup does not have ExOrgAdmin or EnterpriseAdmin." - return } if ($null -eq (Test-EvaluatedSettingOrRule -SettingName "HasServerDelegatedPermsBlocked")) { - Write-Host "HasServerDelegatedPermsBlocked returned no rights. This means the user that ran setup" ` + Write-Output "HasServerDelegatedPermsBlocked returned no rights. This means the user that ran setup" ` "does not have extra rights, and thus does not need to be in Server Management." return } @@ -48,10 +58,11 @@ Function Get-DelegatedInstallerHasProperRights { $serverManagementValue = Test-EvaluatedSettingOrRule -SettingName "ServerManagement" if ($serverManagementValue -eq "True") { - Write-Host "User that ran setup has extra rights to the server object, but is also a member of Server Management, so it's fine." + Write-Output "User that ran setup has extra rights to the server object, but is also a member of Server Management, so it's fine." return } elseif ($serverManagementValue -eq "False") { - Write-Host "User that ran setup has extra rights to the server object and is not in Server Management. This causes setup to fail." -ForegroundColor Red + Write-Output "User that ran setup has extra rights to the server object and is not in Server Management. This causes setup to fail." | + Receive-Output -ForegroundColor Red return } } @@ -111,7 +122,8 @@ Function Get-StringInLastRunOfExchangeSetup { Function Test-PrerequisiteCheck { if ((Test-EvaluatedSettingOrRule -SettingName "PendingRebootWindowsComponents" -SettingOrRule "Rule") -eq "True") { - Write-Host ("Computer is pending reboot based off the Windows Component is the registry") -ForegroundColor Red + Write-Output ("Computer is pending reboot based off the Windows Component is the registry") | + Receive-Output -ForegroundColor Red return $true } @@ -120,7 +132,8 @@ Function Test-PrerequisiteCheck { if ($adValidationError) { Write-Warning "Setup failed to validate AD environment level. This is the internal exception that occurred:" - Write-Host($adValidationError.Matches.Groups[1].Value) -ForegroundColor Yellow + Write-Output($adValidationError.Matches.Groups[1].Value) | + Receive-Output -ForegroundColor Yellow return $true } @@ -135,32 +148,37 @@ Function Test-PrerequisiteCheck { if ($schemaUpdateRequired.Matches.Groups[1].Value -eq "True" -and (Test-EvaluatedSettingOrRule -SettingName "SchemaAdmin") -eq "False") { - Write-Host ("/PrepareSchema is required and user {0} isn't apart of the Schema Admins group." -f $currentLogOnUser) -ForegroundColor Red + Write-Output ("/PrepareSchema is required and user {0} isn't apart of the Schema Admins group." -f $currentLogOnUser) | + Receive-Output -ForegroundColor Red return $true } if ($schemaUpdateRequired.Matches.Groups[1].Value -eq "True" -and (Test-EvaluatedSettingOrRule -SettingName "EnterpriseAdmin") -eq "False") { - Write-Host ("/PrepareSchema is required and user {0} isn't apart of the Enterprise Admins group." -f $currentLogOnUser) -ForegroundColor Red + Write-Output ("/PrepareSchema is required and user {0} isn't apart of the Enterprise Admins group." -f $currentLogOnUser) | + Receive-Output -ForegroundColor Red return $true } if ($orgConfigUpdateRequired.Matches.Groups[1].Value -eq "True" -and (Test-EvaluatedSettingOrRule -SettingName "EnterpriseAdmin") -eq "False") { - Write-Host ("/PrepareAD is required and user {0} isn't apart of the Enterprise Admins group." -f $currentLogOnUser) -ForegroundColor Red + Write-Output ("/PrepareAD is required and user {0} isn't apart of the Enterprise Admins group." -f $currentLogOnUser) | + Receive-Output -ForegroundColor Red return $true } if ($domainConfigUpdateRequired.Matches.Groups[1].Value -eq "True" -and (Test-EvaluatedSettingOrRule -SettingName "EnterpriseAdmin") -eq "False") { - Write-Host ("/PrepareDomain needs to be run in this domain, but we actually require Enterprise Admin group to properly run this command.") -ForegroundColor Red + Write-Output ("/PrepareDomain needs to be run in this domain, but we actually require Enterprise Admin group to properly run this command.") | + Receive-Output -ForegroundColor Red return $true } if ((Test-EvaluatedSettingOrRule -SettingName "ExOrgAdmin") -eq "False") { - Write-Host ("User {0} isn't apart of Organization Management group." -f $currentLogOnUser) -ForegroundColor Red + Write-Output ("User {0} isn't apart of Organization Management group." -f $currentLogOnUser) | + Receive-Output -ForegroundColor Red $sid = Get-EvaluatedSettingOrRule -SettingName "SidExOrgAdmins" -ValueType "." - Write-Host ("Looking to be in this group SID: $($sid.Matches.Groups[1].Value)") + Write-Output ("Looking to be in this group SID: $($sid.Matches.Groups[1].Value)") return $true } @@ -173,7 +191,8 @@ Function Write-ErrorContext { ) Write-Warning ("Found Error: `r`n") foreach ($line in $WriteInfo) { - Write-Host $line -ForegroundColor Yellow + Write-Output $line | + Receive-Output -ForegroundColor Yellow } } @@ -181,8 +200,9 @@ Function Write-ActionPlan { param( [string]$ActionPlan ) - Write-Host("`r`nDo the following action plan:`r`n`t{0}" -f $ActionPlan) - Write-Host("`r`nIf this doesn't resolve your issues, please let us know at {0}" -f $feedbackEmail) + Write-Output("`r`nDo the following action plan:`r`n`t{0}" -f $ActionPlan) | + Receive-Output -ForegroundColor Gray + Write-Output("`r`nIf this doesn't resolve your issues, please let us know at {0}" -f $feedbackEmail) } Function Write-LogicalError { @@ -305,6 +325,11 @@ Function Test-KnownLdifErrors { Function Main { try { + + if ($PesterLoad) { + return + } + if (-not ([IO.File]::Exists($SetupLog))) { Write-Error "Could not find file: $SetupLog" return @@ -333,16 +358,18 @@ Function Main { $color = "Yellow" } - Write-Host("Setup.exe Run Date: $runDate") -ForegroundColor $color + Write-Output("Setup.exe Run Date: $runDate") | + Receive-Output -ForegroundColor $color $Script:SetupBuildNumber = $Script:SetupBuildNumber.Matches.Groups[1].Value $localInstall = Get-StringInLastRunOfExchangeSetup -SelectStringPattern "The locally installed version is (.+)\." if ($null -ne $localInstall) { $exBuild = $localInstall.Matches.Groups[1].Value - Write-Host "Current Exchange Build: $exBuild" + Write-Output "Current Exchange Build: $exBuild" if ($exBuild -eq $SetupBuildNumber) { - Write-Host "Same build number detected..... if using powershell.exe to start setup. Make sure you do '.\setup.exe'" -ForegroundColor Red + Write-Output "Same build number detected..... if using powershell.exe to start setup. Make sure you do '.\setup.exe'" | + Receive-Output -ForegroundColor Red } } @@ -353,34 +380,35 @@ Function Main { if (Test-PrerequisiteCheck) { - Write-Host "`r`nAdditional Context:" - Write-Host ("User Logged On: {0}" -f $Script:currentLogOnUser) + Write-Output "`r`nAdditional Context:" + Write-Output ("User Logged On: {0}" -f $Script:currentLogOnUser) $serverFQDN = Get-EvaluatedSettingOrRule -SettingName "ComputerNameDnsFullyQualified" -ValueType "." if ($null -ne $serverFQDN) { $serverFQDN = $serverFQDN.Matches.Groups[1].Value - Write-Host "Setup Running on: $serverFQDN" + Write-Output "Setup Running on: $serverFQDN" $setupDomain = $serverFQDN.Split('.')[1] - Write-Host "Setup Running in Domain: $setupDomain" + Write-Output "Setup Running in Domain: $setupDomain" } $siteName = Get-EvaluatedSettingOrRule -SettingName "SiteName" -ValueType "." if ($null -ne $siteName) { - Write-Host "Setup Running in AD Site Name: $($siteName.Matches.Groups[1].Value)" + Write-Output "Setup Running in AD Site Name: $($siteName.Matches.Groups[1].Value)" } $schemaMaster = Get-StringInLastRunOfExchangeSetup -SelectStringPattern "Setup will attempt to use the Schema Master domain controller (.+)" if ($null -ne $schemaMaster) { - Write-Host "----------------------------------" - Write-Host "Schema Master: $($schemaMaster.Matches.Groups[1].Value)" + Write-Output "----------------------------------" + Write-Output "Schema Master: $($schemaMaster.Matches.Groups[1].Value)" $smDomain = $schemaMaster.Matches.Groups[1].Value.Split(".")[1] - Write-Host "Schema Master in Domain: $smDomain" + Write-Output "Schema Master in Domain: $smDomain" if ($smDomain -ne $setupDomain) { - Write-Host "Unable to run setup in current domain." + Write-Output "Unable to run setup in current domain." | + Receive-Output -ForegroundColor "Red" } } @@ -399,11 +427,11 @@ Function Main { return } - Write-Host "Looks like we weren't able to determine the cause of the issue with Setup. Please run SetupAssist.ps1 on the server." ` + Write-Output "Looks like we weren't able to determine the cause of the issue with Setup. Please run SetupAssist.ps1 on the server." ` "If that doesn't find the cause, please notify $feedbackEmail to help us improve the scripts." } catch { - Write-Host "$($Error[0].Exception)" - Write-Host "$($Error[0].ScriptStackTrace)" + Write-Output "$($Error[0].Exception)" + Write-Output "$($Error[0].ScriptStackTrace)" Write-Warning ("Ran into an issue with the script. If possible please email the Setup Log to {0}, or at least notify them of the issue." -f $feedbackEmail) } } diff --git a/Setup/Tests/SetupLogReviewer.Tests.ps1 b/Setup/Tests/SetupLogReviewer.Tests.ps1 new file mode 100644 index 0000000000..0f4f557f9f --- /dev/null +++ b/Setup/Tests/SetupLogReviewer.Tests.ps1 @@ -0,0 +1,88 @@ +[CmdletBinding()] +param() + +$here = Split-Path -Parent $MyInvocation.MyCommand.Path +$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.' +$parent = $here.Replace("\Tests", "") +. "$parent\$sut" -PesterLoad + +$sr = "$parent\$sut" + +Describe "Testing SetupLogReviewer" { + + Context "Prerequisite Checks" { + Mock Write-Host {} + Mock Write-Warning {} + It "Additional Context" { + $results = & $sr -SetupLog "$here\PrerequisiteCheck\ExchangeSetup_Fail_In_Child.log" + $results.Contains("User Logged On: CHILD\Kylo") | Should be true + $results.Contains("Setup Running on: Solo-E16A.Child.Solo.net") | Should be true + $results.Contains("Setup Running in Domain: Child") | Should be true + $results.Contains("Setup Running in AD Site Name: Default-First-Site-Name") | Should be true + $results.Contains("Schema Master: Solo-DC1.Solo.net") | Should be true + $results.Contains("Schema Master in Domain: Solo") | Should be true + } + It "Prepare AD Failed" { + & $sr -SetupLog "$here\PrerequisiteCheck\ExchangeSetup_Fail_In_Child.log" + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -Scope It ` + -ParameterFilter { $Object -eq "Unable to run setup in current domain." -and $ForegroundColor -eq "Red" } + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -Scope It ` + -ParameterFilter { $Object -like "*Run setup with the /prepareAD parameter on a computer in the domain Solo and site Default-First-Site-Name, and wait for replication to complete.*" } + } + + It "No ORG Man" { + & $sr -SetupLog "$here\PrerequisiteCheck\ExchangeSetup_ADUpdated_NoOrgMan.log" + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -Scope It ` + -ParameterFilter { $Object -eq "User SOLO\Kylo isn't apart of Organization Management group." -and $ForegroundColor -eq "Red" } + } + + It "Schema Admins group" { + & $sr -SetupLog "$here\PrerequisiteCheck\ExchangeSetup_NoPerm.log" + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -ParameterFilter { $Object -eq "/PrepareSchema is required and user SOLO\Kylo isn't apart of the Schema Admins group." -and $ForegroundColor -eq "Red" } + } + + It "Reboot Pending" { + & $sr -SetupLog "$here\PrerequisiteCheck\ExchangeSetup_Reboot_Pending.log" + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -ParameterFilter { $Object -eq "Computer is pending reboot based off the Windows Component is the registry" -and $ForegroundColor -eq "Red" } + } + + It "Enterprise Admins Group" { + & $sr -SetupLog "$here\PrerequisiteCheck\ExchangeSetup_SchemaAdmin_PrepareSchema.log" + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -ParameterFilter { $Object -eq "/PrepareSchema is required and user SOLO\Kylo isn't apart of the Enterprise Admins group." -and $ForegroundColor -eq "Red" } + } + } + + Context "Known Issues" { + Mock Write-Host {} + Mock Write-Warning {} + It "MESG was deleted" { + & $sr -SetupLog "$here\KnownIssues\ExchangeSetupmsExchangeSecurityGroupsContainerDeleted.log" + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -ParameterFilter { $Object -like "*'OU=Microsoft Exchange Security Groups' was deleted from the root of the domain. We need to have it created again at the root of the domain to continue." } + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -ParameterFilter { $Object -like "*System.NullReferenceException*" -and $ForegroundColor -eq "Yellow" } + } + + It "Failed to import schema" { + & $sr -SetupLog "$here\KnownIssues\ExchangeSetup-PrepareSchema-8245.log" + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -ParameterFilter { $Object -like "*Failed to import schema setting from file 'C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema80.ldf'*" } + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -ParameterFilter { $Object -like "*If you can't find the ldf file in the C:\Windows\Temp location, then find the file in the ISO*" } + } + + It "Wrong Group Type" { + & $sr -SetupLog "$here\KnownIssues\ExchangeSetupWrongGroupType.log" + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -ParameterFilter { $object -like "*Change the CN=Exchange Servers,OU=Test,DC=Solo,DC=local object to Universal, SecurityEnabled" } + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -ParameterFilter { $object -like "*The well-known object entry with the GUID `"6c01d2a7-f083-4503-8132-789eeb127b84`"*" -and $ForegroundColor -eq "Yellow" } + } + } +} \ No newline at end of file From ff0c6f910ead8a7b2a04508cab6613df72aed5fe Mon Sep 17 00:00:00 2001 From: David Paulson Date: Sun, 7 Mar 2021 10:37:44 -0600 Subject: [PATCH 5/7] Added where the server reboot was occurring within Write-Verbose Don't want people to just remove the key as a fix, they should reboot. Only then if that doesn't work should we remove the key Didn't add the wmiclass as i know know how you delete that #44 --- Setup/SetupAssist.ps1 | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Setup/SetupAssist.ps1 b/Setup/SetupAssist.ps1 index 81db225551..68d39bd78b 100644 --- a/Setup/SetupAssist.ps1 +++ b/Setup/SetupAssist.ps1 @@ -34,9 +34,18 @@ Function GetSidFromLine ([string]$Line) { # From https://stackoverflow.com/questions/47867949/how-can-i-check-for-a-pending-reboot function Test-PendingReboot { - if (Get-ChildItem "HKLM:\Software\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending" -EA Ignore) { return $true } - if (Get-Item "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired" -EA Ignore) { return $true } - if (Get-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager" -Name PendingFileRenameOperations -EA Ignore) { return $true } + if (Get-ChildItem "HKLM:\Software\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending" -EA Ignore) { + Write-Verbose "Key set in: HKLM:\Software\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending. Remove it if reboot doesn't work" + return $true + } + if (Get-Item "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired" -EA Ignore) { + Write-Verbose "Key exists at: HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired. Remove it if reboot doesn't work" + return $true + } + if (Get-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager" -Name PendingFileRenameOperations -EA Ignore) { + Write-Verbose "Key set at: HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager - PendingFileRenameOperations. Remove it if reboot doesn't work" + return $true + } try { $util = [wmiclass]"\\.\root\ccm\clientsdk:CCM_ClientUtilities" $status = $util.DetermineIfRebootPending() From 1cb5165c8fa5bf9323094548a4c4cce761a2b651 Mon Sep 17 00:00:00 2001 From: David Paulson Date: Sun, 7 Mar 2021 19:21:05 -0600 Subject: [PATCH 6/7] Added Invalid Well Known Objects Exception testing #53 --- Setup/SetupAssist.ps1 | 199 +- Setup/SetupLogReviewer.ps1 | 26 + ...ExchangeSetup_InvalidWKObjectException.log | 6106 +++++++++++++++++ Setup/Tests/SetupLogReviewer.Tests.ps1 | 8 + 4 files changed, 6281 insertions(+), 58 deletions(-) create mode 100644 Setup/Tests/KnownIssues/OrganizationPreparation/ExchangeSetup_InvalidWKObjectException.log diff --git a/Setup/SetupAssist.ps1 b/Setup/SetupAssist.ps1 index 68d39bd78b..1daff01844 100644 --- a/Setup/SetupAssist.ps1 +++ b/Setup/SetupAssist.ps1 @@ -5,10 +5,12 @@ # [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingEmptyCatchBlock', '', Justification = 'Need to do nothing about it')] [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseShouldProcessForStateChangingFunctions', '', Justification = 'Use is the best verb and do not need to confirm')] +[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', '', Justification = 'Parameter is used')] [CmdletBinding()] param( - + [string]$OtherWellKnownObjectsContainer ) + function IsAdministrator { $ident = [System.Security.Principal.WindowsIdentity]::GetCurrent() $prin = New-Object System.Security.Principal.WindowsPrincipal($ident) @@ -194,79 +196,160 @@ function Get-ExchangeAdSetupObjects { return $hash } -$whoamiOutput = whoami /all +Function MainUse { + $whoamiOutput = whoami /all -$whoamiOutput | Select-String "User Name" -Context (0, 3) + $whoamiOutput | Select-String "User Name" -Context (0, 3) -if (IsAdministrator) { - Write-Host "User is an administrator." -} else { - Write-Warning "User is not an administrator." -} + if (IsAdministrator) { + Write-Host "User is an administrator." + } else { + Write-Warning "User is not an administrator." + } -[array]$g = GetGroupMatches $whoamiOutput "Domain Admins" + [array]$g = GetGroupMatches $whoamiOutput "Domain Admins" -if ($g.Count -gt 0) { - $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } -} else { - Write-Warning "User is not a member of Domain Admins." -} + if ($g.Count -gt 0) { + $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } + } else { + Write-Warning "User is not a member of Domain Admins." + } -[array]$g = GetGroupMatches $whoamiOutput "Schema Admins" + [array]$g = GetGroupMatches $whoamiOutput "Schema Admins" -if ($g.Count -gt 0) { - $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } -} else { - Write-Warning "User is not a member of Schema Admins. - Only required if doing a Schema Update" -} + if ($g.Count -gt 0) { + $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } + } else { + Write-Warning "User is not a member of Schema Admins. - Only required if doing a Schema Update" + } -[array]$g = GetGroupMatches $whoamiOutput "Enterprise Admins" + [array]$g = GetGroupMatches $whoamiOutput "Enterprise Admins" -if ($g.Count -gt 0) { - $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } -} else { - Write-Warning "User is not a member of Enterprise Admins. - Only required if doing a Schema Update or PrepareAD or PrepareDomain" -} + if ($g.Count -gt 0) { + $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } + } else { + Write-Warning "User is not a member of Enterprise Admins. - Only required if doing a Schema Update or PrepareAD or PrepareDomain" + } -[array]$g = GetGroupMatches $whoamiOutput "Organization Management" + [array]$g = GetGroupMatches $whoamiOutput "Organization Management" -if ($g.Count -gt 0) { - $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } -} else { - Write-Warning "User is not a member of Organization Management." -} + if ($g.Count -gt 0) { + $g | ForEach-Object { Write-Host "User is a member of $($_.GroupName) $($_.SID)" } + } else { + Write-Warning "User is not a member of Organization Management." + } -$p = Get-ExecutionPolicy -if ($p -ne "Unrestricted" -and $p -ne "Bypass") { - Write-Warning "ExecutionPolicy is $p" -} else { - Write-Host "ExecutionPolicy is $p" -} + $p = Get-ExecutionPolicy + if ($p -ne "Unrestricted" -and $p -ne "Bypass") { + Write-Warning "ExecutionPolicy is $p" + } else { + Write-Host "ExecutionPolicy is $p" + } -$products = Get-ChildItem Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products -$packageFiles = $products | ForEach-Object { Get-ItemProperty -Path "Registry::$($_.Name)\InstallProperties" -ErrorAction SilentlyContinue } | ForEach-Object { $_.LocalPackage } -$packagesMissing = @($packageFiles | Where-Object { (Test-Path $_) -eq $false }) + $products = Get-ChildItem Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products + $packageFiles = $products | ForEach-Object { Get-ItemProperty -Path "Registry::$($_.Name)\InstallProperties" -ErrorAction SilentlyContinue } | ForEach-Object { $_.LocalPackage } + $packagesMissing = @($packageFiles | Where-Object { (Test-Path $_) -eq $false }) -if ($packagesMissing.Count -eq 0) { - Write-Host "No installer packages missing." -} else { - Write-Warning "$($packagesMissing.Count) installer packages are missing. Please use this script to repair the installer folder:" - Write-Warning "https://gallery.technet.microsoft.com/office/Restore-the-Missing-d11de3a1" -} + if ($packagesMissing.Count -eq 0) { + Write-Host "No installer packages missing." + } else { + Write-Warning "$($packagesMissing.Count) installer packages are missing. Please use this script to repair the installer folder:" + Write-Warning "https://gallery.technet.microsoft.com/office/Restore-the-Missing-d11de3a1" + } + + $powershellProcesses = @(Get-Process -IncludeUserName powershell) -$powershellProcesses = @(Get-Process -IncludeUserName powershell) + if ($powershellProcesses.Count -gt 1) { + Write-Warning "More than one PowerShell process was found. Please close other instances of PowerShell." + Write-Host ($powershellProcesses | Format-Table -AutoSize | Out-String) + } else { + Write-Host "No other PowerShell instances were detected." + } -if ($powershellProcesses.Count -gt 1) { - Write-Warning "More than one PowerShell process was found. Please close other instances of PowerShell." - Write-Host ($powershellProcesses | Format-Table -AutoSize | Out-String) -} else { - Write-Host "No other PowerShell instances were detected." + if (Test-PendingReboot) { + Write-Warning "Reboot pending." + } else { + Write-Host "No reboot pending." + } + + Test-ExchangeAdSetupObjects } -if (Test-PendingReboot) { - Write-Warning "Reboot pending." -} else { - Write-Host "No reboot pending." +Function Main { + + if (![string]::IsNullOrEmpty($OtherWellKnownObjectsContainer)) { + + ldifde -d $OtherWellKnownObjectsContainer -p Base -l otherWellKnownObjects -f ExchangeContainerOriginal.txt + + [array]$content = Get-Content .\ExchangeContainerOriginal.txt + + if ($null -eq $content -or + $content.Count -eq 0) { + throw "Failed to export ExchangeContainerOriginal.txt file" + } + + $owkoLine = "otherWellKnownObjects:" + $inOwkoLine = $false + $outputLines = New-Object 'System.Collections.Generic.List[string]' + $outputLines.Add($content[0]) + $outputLines.Add("changeType: modify") + $outputLines.Add("replace: otherWellKnownObjects") + + Function Test-DeleteObject ([string]$TestLine) { + + if ($TestLine.Contains("CN=Deleted Objects")) { + return $true + } + + return $false + } + + $index = 0 + while ($index -lt $content.Count) { + $line = $content[$index++] + + if ($line.Trim() -eq $owkoLine) { + + if ($null -ne $testStringLine -and + $null -ne $possibleAdd) { + + if (!(Test-DeleteObject $testStringLine)) { + $outputLines.AddRange($possibleAdd) + } else { + Write-Host "Found object to remove: $testStringLine" + } + } + $inOwkoLine = $true + $possibleAdd = New-Object 'System.Collections.Generic.List[string]' + $possibleAdd.Add($line) + [string]$testStringLine = $line + continue + } + + if ($inOwkoLine) { + $possibleAdd.Add($line) + $testStringLine += $line + } + + if ($index -eq $content.Count) { + + if (!(Test-DeleteObject $testStringLine)) { + $outputLines.AddRange($possibleAdd) + } else { + Write-Host "Found object to remove: $testStringLine" + } + } + } + + $outputLines | Out-File -FilePath "ExchangeContainerImport.txt" + + Write-Host("`r`nVerify the results in ExchangeContainerImport.txt. Then run the following command:") + Write-Host("`tldifde -i -f ExchangeContainerImport.txt") + Write-Host("Run Setup.exe again afterwards.") + return + } + + MainUse } -Test-ExchangeAdSetupObjects \ No newline at end of file +Main \ No newline at end of file diff --git a/Setup/SetupLogReviewer.ps1 b/Setup/SetupLogReviewer.ps1 index 93642044a2..5c2a8d64ae 100644 --- a/Setup/SetupLogReviewer.ps1 +++ b/Setup/SetupLogReviewer.ps1 @@ -210,6 +210,28 @@ Function Write-LogicalError { Write-Error $display } +Function Test-KnownOrganizationPreparationErrors { + + $errorReference = Select-String "\[ERROR-REFERENCE\] Id=(.+) Component=" $SetupLog | Select-Object -Last 1 + + if ($null -eq $errorReference -or + !(Test-LastRunOfExchangeSetup -TestingMatchInfo $errorReference)) { + return $false + } + + $errorLine = Select-String "\[ERROR\] The well-known object entry (.+) on the otherWellKnownObjects attribute in the container object (.+) points to an invalid DN or a deleted object" $SetupLog | Select-Object -Last 1 + + if ($null -ne $errorLine -and + (Test-LastRunOfExchangeSetup -TestingMatchInfo $errorLine)) { + + Write-ErrorContext -WriteInfo $errorLine.Line + [string]$ap = "Option 1: Restore the objects that were deleted." + [string]$ap += "`r`n`tOption 2: Run the SetupAssist.ps1 script with '-OtherWellKnownObjectsContainer `"$($errorLine.Matches.Groups[2].Value)`"' to be able address deleted objects type" + Write-ActionPlan $ap + return $true + } +} + Function Test-KnownErrorReferenceSetupIssues { $errorReference = Select-String "\[ERROR-REFERENCE\] Id=(.+) Component=" $SetupLog | Select-Object -Last 1 @@ -419,6 +441,10 @@ Function Main { return } + if (Test-KnownOrganizationPreparationErrors) { + return + } + if (Test-KnownErrorReferenceSetupIssues) { return } diff --git a/Setup/Tests/KnownIssues/OrganizationPreparation/ExchangeSetup_InvalidWKObjectException.log b/Setup/Tests/KnownIssues/OrganizationPreparation/ExchangeSetup_InvalidWKObjectException.log new file mode 100644 index 0000000000..fc2a48c632 --- /dev/null +++ b/Setup/Tests/KnownIssues/OrganizationPreparation/ExchangeSetup_InvalidWKObjectException.log @@ -0,0 +1,6106 @@ +[03/07/2021 17:57:50.0335] [0] ********************************************** +[03/07/2021 17:57:50.0348] [0] Starting Microsoft Exchange Server 2016 Setup +[03/07/2021 17:57:50.0348] [0] ********************************************** +[03/07/2021 17:57:50.0351] [0] Local time zone: (UTC-06:00) Central Time (US & Canada). +[03/07/2021 17:57:50.0352] [0] Operating system version: Microsoft Windows NT 6.2.9200.0. +[03/07/2021 17:57:50.0355] [0] Setup version: 15.1.2176.2. +[03/07/2021 17:57:50.0356] [0] Logged on user: SOLO\Han. +[03/07/2021 17:57:50.0384] [0] Command Line Parameter Name='mode', Value='Upgrade'. +[03/07/2021 17:57:50.0384] [0] Command Line Parameter Name='iacceptexchangeserverlicenseterms', Value=''. +[03/07/2021 17:57:50.0389] [0] Command Line Parameter Name='sourcedir', Value='D:\'. +[03/07/2021 17:57:50.0566] [0] RuntimeAssembly was started with the following command: '/mode:upgrade /IAcceptExchangeServerLicenseTerms /sourcedir:D:"'. +[03/07/2021 17:57:50.0570] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Exchange\v8.0, wasn't found. +[03/07/2021 17:57:50.0570] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\v14, wasn't found. +[03/07/2021 17:57:50.0579] [0] Copying Files... +[03/07/2021 17:57:50.0585] [0] Starting copy from D:\Setup\ServerRoles\Common to C:\Windows\Temp\ExchangeSetup. +[03/07/2021 17:57:57.0705] [0] Finished copy from D:\Setup\ServerRoles\Common to C:\Windows\Temp\ExchangeSetup. +[03/07/2021 17:57:57.0707] [0] File copy complete. Setup will now collect additional information needed for installation. + +[03/07/2021 17:57:57.0733] [0] Assembly dll file location is C:\Windows\Temp\ExchangeSetup\Microsoft.Exchange.Setup.Console.dll +[03/07/2021 17:58:04.0428] [0] Setup is choosing the domain controller to use +[03/07/2021 17:58:04.0884] [0] The MSExchangeADTopology has a persisted domain controller: Solo-DC1.Solo.local +[03/07/2021 17:58:09.0176] [0] PrepareAD has either not been run or has not replicated to the domain controller used by Setup. Setup will attempt to use the Schema Master domain controller Solo-DC1.Solo.local +[03/07/2021 17:58:09.0180] [0] The schema master domain controller is available +[03/07/2021 17:58:09.0181] [0] The schema master domain controller is in the local domain; setup will use Solo-DC1.Solo.local +[03/07/2021 17:58:09.0193] [0] Setup is choosing a global catalog... +[03/07/2021 17:58:09.0254] [0] Setup has chosen the global catalog server Solo-DC1.Solo.local. +[03/07/2021 17:58:09.0264] [0] Setup will use the domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 17:58:09.0264] [0] Setup will use the global catalog 'Solo-DC1.Solo.local'. +[03/07/2021 17:58:09.0269] [0] Exchange configuration container for the organization is 'CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local'. +[03/07/2021 17:58:09.0275] [0] Exchange organization container for the organization is 'CN=SoloORG,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local'. +[03/07/2021 17:58:09.0305] [0] Setup will search for an Exchange Server object for the local machine with name 'SOLO-E16A'. +[03/07/2021 17:58:09.0599] [0] Exchange Server object found : 'CN=SOLO-E16A,CN=Servers,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=SoloORG,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local'. +[03/07/2021 17:58:09.0693] [0] The following roles have been unpacked: BridgeheadRole ClientAccessRole MailboxRole UnifiedMessagingRole FrontendTransportRole AdminToolsRole CafeRole +[03/07/2021 17:58:09.0697] [0] The following datacenter roles are unpacked: +[03/07/2021 17:58:09.0704] [0] The following roles are installed: BridgeheadRole ClientAccessRole MailboxRole UnifiedMessagingRole FrontendTransportRole AdminToolsRole CafeRole +[03/07/2021 17:58:09.0710] [0] The local server has some Exchange files installed. +[03/07/2021 17:58:09.0726] [0] Server Name=SOLO-E16A +[03/07/2021 17:58:09.0743] [0] Setup will use the path 'D:\' for installing Exchange. +[03/07/2021 17:58:09.0745] [0] Setup will discover the installed roles from server object 'CN=SOLO-E16A,CN=Servers,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=SoloORG,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local'. +[03/07/2021 17:58:09.0746] [0] 'BridgeheadRole' is installed on the server object. +[03/07/2021 17:58:09.0746] [0] 'ClientAccessRole' is installed on the server object. +[03/07/2021 17:58:09.0746] [0] 'MailboxRole' is installed on the server object. +[03/07/2021 17:58:09.0747] [0] 'UnifiedMessagingRole' is installed on the server object. +[03/07/2021 17:58:09.0747] [0] 'CafeRole' is installed on the server object. +[03/07/2021 17:58:09.0747] [0] 'FrontendTransportRole' is installed on the server object. +[03/07/2021 17:58:09.0755] [0] The installation mode is set to: 'BuildToBuildUpgrade'. +[03/07/2021 17:58:18.0607] [0] An Exchange organization with name 'SoloORG' was found in this forest. +[03/07/2021 17:58:18.0607] [0] Active Directory Initialization status : 'True'. +[03/07/2021 17:58:18.0608] [0] Schema Update Required Status : 'True'. +[03/07/2021 17:58:18.0608] [0] Organization Configuration Update Required Status : 'True'. +[03/07/2021 17:58:18.0609] [0] Domain Configuration Update Required Status : 'True'. +[03/07/2021 17:58:18.0611] [0] The locally installed version is 15.1.2106.2. +[03/07/2021 17:58:18.0611] [0] Exchange Installation Directory : 'C:\Program Files\Microsoft\Exchange Server\V15'. +[03/07/2021 17:58:18.0679] [0] Setup is determining what organization-level operations to perform. +[03/07/2021 17:58:18.0679] [0] Setup has detected a missing value. Setup is adding the value PrepareSchema. +[03/07/2021 17:58:18.0679] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization. +[03/07/2021 17:58:18.0680] [0] Setup has detected a missing value. Setup is adding the value PrepareDomain. +[03/07/2021 17:58:18.0680] [0] Because the value was specified, setup is setting the argument OrganizationName to the value SoloORG. +[03/07/2021 17:58:18.0704] [0] RootDataHandler has 1 DataHandlers +[03/07/2021 17:58:18.0704] [0] Languages +[03/07/2021 17:58:18.0704] [0] Management tools +[03/07/2021 17:58:18.0705] [0] Mailbox role: Transport service +[03/07/2021 17:58:18.0705] [0] Mailbox role: Client Access service +[03/07/2021 17:58:18.0706] [0] Mailbox role: Unified Messaging service +[03/07/2021 17:58:18.0706] [0] Mailbox role: Mailbox service +[03/07/2021 17:58:18.0706] [0] Mailbox role: Front End Transport service +[03/07/2021 17:58:18.0707] [0] Mailbox role: Client Access Front End service +[03/07/2021 17:58:18.0722] [0] Validating options for the 7 requested roles +[03/07/2021 17:58:18.0722] [0] UpgradeModeDataHandler has 18 handlers and 18 work units +[03/07/2021 17:58:18.0771] [0] Performing Microsoft Exchange Server Prerequisite Check +[03/07/2021 17:58:18.0808] [0] Setup is determining what organization-level operations to perform. +[03/07/2021 17:58:18.0808] [0] Setup has detected a missing value. Setup is adding the value PrepareSchema. +[03/07/2021 17:58:18.0808] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization. +[03/07/2021 17:58:18.0808] [0] Setup has detected a missing value. Setup is adding the value PrepareDomain. +[03/07/2021 17:58:18.0808] [0] Because the value was specified, setup is setting the argument OrganizationName to the value SoloORG. +[03/07/2021 17:58:31.0031] [0] ************** +[03/07/2021 17:58:31.0032] [0] Setup will run the task 'Start-PreConfiguration' +[03/07/2021 17:58:31.0045] [1] Setup launched task 'Start-PreConfiguration -Mode 'BuildToBuildUpgrade' -Roles 'LanguagePacks','AdminToolsRole','BridgeheadRole','ClientAccessRole','UnifiedMessagingRole','MailboxRole','FrontendTransportRole','CafeRole' -ADToolsNeeded $true' +[03/07/2021 17:58:32.0268] [1] Active Directory session settings for 'Start-PreConfiguration' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:32.0299] [1] User specified parameters: -Mode:'BuildToBuildUpgrade' -Roles:'LanguagePacks','AdminToolsRole','BridgeheadRole','ClientAccessRole','UnifiedMessagingRole','MailboxRole','FrontendTransportRole','CafeRole' -ADToolsNeeded:'True' +[03/07/2021 17:58:32.0300] [1] Beginning processing Start-PreConfiguration +[03/07/2021 17:58:32.0456] [1] Loaded component 'Prereq Configuration' with 3 task information blocks from 'res://AdminToolsPreConfig.xml' +[03/07/2021 17:58:32.0459] [1] Loaded component 'Prereq Configuration' with 6 task information blocks from 'res://AllServerRolesPreConfig.xml' +[03/07/2021 17:58:32.0461] [1] Loaded component 'Prereq Configuration' with 1 task information blocks from 'res://AllADRolesPreConfig.xml' +[03/07/2021 17:58:32.0463] [1] Loaded component 'Prereq Configuration' with 1 task information blocks from 'res://BridgeheadPreConfig.xml' +[03/07/2021 17:58:32.0466] [1] Loaded component 'Prereq Configuration' with 3 task information blocks from 'res://ClientAccessPreConfig.xml' +[03/07/2021 17:58:32.0469] [1] Loaded component 'Prereq Configuration' with 1 task information blocks from 'res://UnifiedMessagingPreConfig.xml' +[03/07/2021 17:58:32.0472] [1] Loaded component 'Prereq Configuration' with 2 task information blocks from 'res://MailboxPreConfig.xml' +[03/07/2021 17:58:32.0475] [1] Loaded component 'FrontendTransport Prereq Configuration' with 1 task information blocks from 'res://FrontendTransportPreConfig.xml' +[03/07/2021 17:58:32.0485] [1] Loaded component 'Prereq Configuration' with 1 task information blocks from 'res://CafePreConfig.xml' +[03/07/2021 17:58:32.0488] [1] Loaded component 'Prereq Configuration' with 1 task information blocks from 'res://LanguagePacksPreConfig.xml' +[03/07/2021 17:58:32.0491] [1] Loaded component 'Prereq Configuration' with 2 task information blocks from 'res://AllServerRolesPreConfigLast.xml' +[03/07/2021 17:58:32.0574] [1] Loaded 7 parameters from the configuration file "C:\Windows\Temp\ExchangeSetup\bin\EnterpriseServiceEndpointsConfig.xml". +[03/07/2021 17:58:32.0578] [1] Writing informational script to 'C:\ExchangeSetupLogs\Start-PreConfiguration-20210307-11583205331681599676.ps1' +[03/07/2021 17:58:32.0597] [1] Executing: $RoleADToolsNeeded = $True +[03/07/2021 17:58:32.0633] [1] Executing: $RoleBinPath = 'C:\Windows\Temp\ExchangeSetup' +[03/07/2021 17:58:32.0636] [1] Executing: $RoleDatacenterPath = 'C:\Windows\Temp\ExchangeSetup\Datacenter' +[03/07/2021 17:58:32.0637] [1] Executing: $RoleDatacenterServiceEndpointABCHContactService = 'http://pvt-contacts.msn.com/abservice/abservice.asmx' +[03/07/2021 17:58:32.0638] [1] Executing: $RoleDatacenterServiceEndpointDomainPartnerManageDelegation = 'https://domains.live.com/service/managedelegation.asmx' +[03/07/2021 17:58:32.0641] [1] Executing: $RoleDatacenterServiceEndpointDomainPartnerManageDelegation2 = 'https://domains.live.com/service/managedelegation2.asmx' +[03/07/2021 17:58:32.0645] [1] Executing: $RoleDatacenterServiceEndpointLiveFederationMetadata = 'https://nexus.passport.com/FederationMetadata/2006-12/FederationMetadata.xml' +[03/07/2021 17:58:32.0651] [1] Executing: $RoleDatacenterServiceEndpointLiveGetUserRealm = 'https://login.live.com/GetUserRealm.srf' +[03/07/2021 17:58:32.0663] [1] Executing: $RoleDatacenterServiceEndpointLiveServiceLogin2 = 'https://login.live.com/RST2.srf' +[03/07/2021 17:58:32.0670] [1] Executing: $RoleDatacenterServiceEndpointMsoFederationMetadata = 'https://nexus.microsoftonline-p.com/FederationMetadata/2006-12/FederationMetadata.xml' +[03/07/2021 17:58:32.0671] [1] Executing: $RoleInstallationMode = 'BuildToBuildUpgrade' +[03/07/2021 17:58:32.0672] [1] Executing: $RoleInstallPath = 'C:\Windows\Temp\ExchangeSetup' +[03/07/2021 17:58:32.0674] [1] Executing: $RoleInstallWindowsComponents = $False +[03/07/2021 17:58:32.0675] [1] Executing: $RoleInvocationID = '20210307-11583205331681599676' +[03/07/2021 17:58:32.0676] [1] Executing: $RoleIsDatacenter = $False +[03/07/2021 17:58:32.0677] [1] Executing: $RoleIsDatacenterDedicated = $False +[03/07/2021 17:58:32.0678] [1] Executing: $RoleIsFfo = $False +[03/07/2021 17:58:32.0679] [1] Executing: $RoleIsPartnerHosted = $False +[03/07/2021 17:58:32.0680] [1] Executing: $RoleLoggingPath = 'C:\Windows\Temp\ExchangeSetup\Logging' +[03/07/2021 17:58:32.0681] [1] Executing: $RoleProductPlatform = 'amd64' +[03/07/2021 17:58:32.0682] [1] Executing: $RoleRoles = 'LanguagePacks,AdminToolsRole,BridgeheadRole,ClientAccessRole,UnifiedMessagingRole,MailboxRole,FrontendTransportRole,CafeRole' +[03/07/2021 17:58:32.0683] [1] Executing: $RoleSetupLoggingPath = 'C:\ExchangeSetupLogs' +[03/07/2021 17:58:32.0684] [1] Executing: $RoleTargetVersion = '15.01.2176.002' +[03/07/2021 17:58:32.0698] [1] 20 tasks were found to run. +[03/07/2021 17:58:32.0721] [1] Processing component 'Prereq Configuration' (Configuring the server.). +[03/07/2021 17:58:32.0725] [1] Executing: + if($RoleInstallWindowsComponents) + { + # Install any Windows Roles or Features required for the Management Tools role + & $RoleBinPath\InstallWindowsComponent.ps1 -ShortNameForRole "AdminTools" -ADToolsNeeded $RoleADToolsNeeded + } + +[03/07/2021 17:58:32.0746] [1] Executing: + if (Get-Service RemoteRegistry* | ?{$_.Name -eq 'RemoteRegistry'}) + { + Set-Service RemoteRegistry -StartupType Automatic + Start-SetupService -ServiceName RemoteRegistry + } + +[03/07/2021 17:58:32.0838] [2] Active Directory session settings for 'start-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:32.0838] [2] User specified parameters: -ServiceName:'RemoteRegistry' +[03/07/2021 17:58:32.0838] [2] Beginning processing Start-SetupService +[03/07/2021 17:58:32.0866] [2] Service 'RemoteRegistry' successfully reached status 'Running' on this server. +[03/07/2021 17:58:32.0922] [2] Ending processing Start-SetupService +[03/07/2021 17:58:33.0077] [1] Executing: + if (Get-Service WinMgmt* | ?{$_.Name -eq 'WinMgmt'}) + { + Set-Service WinMgmt -StartupType Automatic + Start-SetupService -ServiceName WinMgmt + } + +[03/07/2021 17:58:33.0086] [2] Active Directory session settings for 'start-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:33.0087] [2] User specified parameters: -ServiceName:'WinMgmt' +[03/07/2021 17:58:33.0087] [2] Beginning processing Start-SetupService +[03/07/2021 17:58:33.0090] [2] Ending processing Start-SetupService +[03/07/2021 17:58:33.0093] [1] Processing component 'Prereq Configuration' (Configuring the server.). +[03/07/2021 17:58:33.0093] [1] Executing: + if (Get-Service RemoteRegistry* | ?{$_.Name -eq 'RemoteRegistry'}) + { + Set-Service RemoteRegistry -StartupType Automatic + Start-SetupService -ServiceName RemoteRegistry + } + +[03/07/2021 17:58:33.0100] [2] Active Directory session settings for 'start-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:33.0100] [2] User specified parameters: -ServiceName:'RemoteRegistry' +[03/07/2021 17:58:33.0101] [2] Beginning processing Start-SetupService +[03/07/2021 17:58:33.0102] [2] Ending processing Start-SetupService +[03/07/2021 17:58:33.0104] [1] Executing: + if (Get-Service WinMgmt* | ?{$_.Name -eq 'WinMgmt'}) + { + Set-Service WinMgmt -StartupType Automatic + Start-SetupService -ServiceName WinMgmt + } + +[03/07/2021 17:58:33.0109] [2] Active Directory session settings for 'start-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:33.0109] [2] User specified parameters: -ServiceName:'WinMgmt' +[03/07/2021 17:58:33.0110] [2] Beginning processing Start-SetupService +[03/07/2021 17:58:33.0111] [2] Ending processing Start-SetupService +[03/07/2021 17:58:33.0113] [1] Executing: + if (Get-Service MpsSvc* | ?{$_.Name -eq 'MpsSvc'}) + { + Set-Service MpsSvc -StartupType Automatic + Start-SetupService -ServiceName MpsSvc + } + +[03/07/2021 17:58:33.0120] [2] Active Directory session settings for 'start-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:33.0121] [2] User specified parameters: -ServiceName:'MpsSvc' +[03/07/2021 17:58:33.0121] [2] Beginning processing Start-SetupService +[03/07/2021 17:58:33.0124] [2] Ending processing Start-SetupService +[03/07/2021 17:58:33.0127] [1] Executing: + $aspnet = [System.Runtime.InteropServices.RuntimeEnvironment]::GetRunTimeDirectory() + "aspnet_regiis.exe"; + Start-SetupProcess -name "$aspnet" -args "-ir -enable" + +[03/07/2021 17:58:33.0150] [2] Active Directory session settings for 'Start-SetupProcess' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:33.0150] [2] User specified parameters: -Name:'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe' -Args:'-ir -enable' +[03/07/2021 17:58:33.0150] [2] Beginning processing Start-SetupProcess +[03/07/2021 17:58:33.0155] [2] Starting: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe with arguments: -ir -enable +[03/07/2021 17:58:33.0215] [2] Process standard output: Microsoft (R) ASP.NET RegIIS version 4.0.30319.0 +Administration utility to install and uninstall ASP.NET on the local machine. +Copyright (C) Microsoft Corporation. All rights reserved. +Start installing ASP.NET (4.0.30319.0) without changing existing web applications to use this version of ASP.Net. +This option is not supported on this version of the operating system. Administrators should instead install/uninstall ASP.NET 4.5 with IIS8 using the "Turn Windows Features On/Off" dialog, the Server Manager management tool, or the dism.exe command line tool. For more details please see http://go.microsoft.com/fwlink/?LinkID=216771. +Finished installing ASP.NET (4.0.30319.0) without changing existing web applications to use this version of ASP.Net. + +[03/07/2021 17:58:33.0215] [2] Process standard error: +[03/07/2021 17:58:33.0216] [2] Ending processing Start-SetupProcess +[03/07/2021 17:58:33.0220] [1] Executing: + if (Get-Service MSDTC* | ?{$_.Name -eq 'MSDTC'}) + { + Set-Service MSDTC -StartupType Automatic + Start-SetupService -ServiceName MSDTC + } + +[03/07/2021 17:58:33.0226] [2] Active Directory session settings for 'start-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:33.0226] [2] User specified parameters: -ServiceName:'MSDTC' +[03/07/2021 17:58:33.0227] [2] Beginning processing Start-SetupService +[03/07/2021 17:58:33.0228] [2] Ending processing Start-SetupService +[03/07/2021 17:58:33.0230] [1] Processing component 'Prereq Configuration' (Configuring the server.). +[03/07/2021 17:58:33.0231] [1] Executing: + if (Get-Service W3Svc* | ?{$_.Name -eq 'W3Svc'}) + { + Set-Service W3Svc -StartupType Automatic + Start-SetupService -ServiceName W3Svc + } + +[03/07/2021 17:58:33.0236] [2] Active Directory session settings for 'start-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:33.0236] [2] User specified parameters: -ServiceName:'W3Svc' +[03/07/2021 17:58:33.0236] [2] Beginning processing Start-SetupService +[03/07/2021 17:58:33.0238] [2] Ending processing Start-SetupService +[03/07/2021 17:58:33.0239] [1] Processing component 'Prereq Configuration' (Configuring the server.). +[03/07/2021 17:58:33.0240] [1] Executing: + if($RoleInstallWindowsComponents) + { + # Install any Windows Roles or Features required for the Hub Transport role + & $RoleBinPath\InstallWindowsComponent.ps1 -ShortNameForRole "Internal-HUB" -ADToolsNeeded $RoleADToolsNeeded + } + +[03/07/2021 17:58:33.0242] [1] Processing component 'Prereq Configuration' (Configuring the server.). +[03/07/2021 17:58:33.0242] [1] Executing: + if($RoleInstallWindowsComponents) + { + # Install any Windows Roles or Features required for the Client Access role + & $RoleBinPath\InstallWindowsComponent.ps1 -ShortNameForRole "Internal-CAS" -ADToolsNeeded $RoleADToolsNeeded + } + +[03/07/2021 17:58:33.0244] [1] Executing: + if (Get-Service IISAdmin* | ?{$_.Name -eq 'IISAdmin'}) + { + Set-Service IISAdmin -StartupType Automatic + Start-SetupService -ServiceName IISAdmin + } + +[03/07/2021 17:58:33.0251] [2] Active Directory session settings for 'start-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:33.0251] [2] User specified parameters: -ServiceName:'IISAdmin' +[03/07/2021 17:58:33.0251] [2] Beginning processing Start-SetupService +[03/07/2021 17:58:33.0253] [2] Ending processing Start-SetupService +[03/07/2021 17:58:33.0255] [1] Executing: + if (Get-Service EventSystem* | ?{$_.Name -eq 'EventSystem'}) + { + Set-Service EventSystem -StartupType Automatic + Start-SetupService -ServiceName EventSystem + } + +[03/07/2021 17:58:33.0260] [2] Active Directory session settings for 'start-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:33.0263] [2] User specified parameters: -ServiceName:'EventSystem' +[03/07/2021 17:58:33.0263] [2] Beginning processing Start-SetupService +[03/07/2021 17:58:33.0289] [2] Ending processing Start-SetupService +[03/07/2021 17:58:33.0293] [1] Processing component 'Prereq Configuration' (Configuring the server.). +[03/07/2021 17:58:33.0293] [1] Executing: + if($RoleInstallWindowsComponents) + { + # Install any Windows Roles or Features required for the Unified Messaging role + & $RoleBinPath\InstallWindowsComponent.ps1 -ShortNameForRole "Internal-UM" -ADToolsNeeded $RoleADToolsNeeded + } + +[03/07/2021 17:58:33.0301] [1] Processing component 'Prereq Configuration' (Configuring the server.). +[03/07/2021 17:58:33.0301] [1] Executing: + if($RoleInstallWindowsComponents) + { + # Install any Windows Roles or Features required for the Mailbox role + & $RoleBinPath\InstallWindowsComponent.ps1 -ShortNameForRole "Internal-MBX" -ADToolsNeeded $RoleADToolsNeeded + } + +[03/07/2021 17:58:33.0304] [1] Executing: + if (Get-Service IISAdmin* | ?{$_.Name -eq 'IISAdmin'}) + { + Set-Service IISAdmin -StartupType Automatic + Start-SetupService -ServiceName IISAdmin + } + +[03/07/2021 17:58:33.0310] [2] Active Directory session settings for 'start-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:33.0310] [2] User specified parameters: -ServiceName:'IISAdmin' +[03/07/2021 17:58:33.0310] [2] Beginning processing Start-SetupService +[03/07/2021 17:58:33.0312] [2] Ending processing Start-SetupService +[03/07/2021 17:58:33.0315] [1] Processing component 'FrontendTransport Prereq Configuration' (Configuring the server.). +[03/07/2021 17:58:33.0315] [1] Executing: + if($RoleInstallWindowsComponents) + { + # Install any Windows Roles or Features required for the Hub Transport role + & $RoleBinPath\InstallWindowsComponent.ps1 -ShortNameForRole "Internal-HUB" -ADToolsNeeded $RoleADToolsNeeded + } + +[03/07/2021 17:58:33.0320] [1] Processing component 'Prereq Configuration' (Configuring the server.). +[03/07/2021 17:58:33.0320] [1] Executing: + if($RoleInstallWindowsComponents) + { + # Install any Windows Roles or Features required for the CAFE role + & $RoleBinPath\InstallWindowsComponent.ps1 -ShortNameForRole "Internal-CAFE" -ADToolsNeeded $RoleADToolsNeeded + } + +[03/07/2021 17:58:33.0322] [1] Processing component 'Prereq Configuration' (Configuring the server.). +[03/07/2021 17:58:33.0323] [1] Processing component 'Prereq Configuration' (Configuring the server.). +[03/07/2021 17:58:33.0323] [1] Executing: + $keyPath = "HKLM:\Software\Microsoft\WebManagement\Server"; + if (!(Get-Item $keyPath -ErrorAction SilentlyContinue)) + { + New-Item $keyPath -Force + } + Set-ItemProperty -path $keyPath -name "EnableRemoteManagement" -value 0x1 -Type DWORD -Force; + + if (Get-Service WMSVC* | ?{$_.Name -eq 'WMSVC'}) + { + Set-Service WMSVC -StartupType Automatic + Stop-SetupService -ServiceName WMSVC; + Start-SetupService -ServiceName WMSVC + } + +[03/07/2021 17:58:33.0378] [2] Active Directory session settings for 'stop-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:33.0378] [2] User specified parameters: -ServiceName:'WMSVC' +[03/07/2021 17:58:33.0378] [2] Beginning processing Stop-SetupService +[03/07/2021 17:58:33.0391] [2] [WARNING] Service checkpoint has not progressed. Previous checkpoint='0'- Current checkpoint='0'. +[03/07/2021 17:58:33.0401] [2] Previous service status query time is '3/7/2021 11:58:33 AM'. +[03/07/2021 17:58:33.0402] [2] Current service status query time is '3/7/2021 11:58:33 AM'. +[03/07/2021 17:58:33.0407] [2] Will wait '20000' milliseconds for the service 'WMSVC' to reach status 'Stopped'. +[03/07/2021 17:58:35.0668] [2] Service 'WMSVC' successfully reached status 'Stopped on this server while waiting for status change. +[03/07/2021 17:58:35.0668] [2] Ending processing Stop-SetupService +[03/07/2021 17:58:35.0670] [2] Active Directory session settings for 'start-SetupService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:35.0670] [2] User specified parameters: -ServiceName:'WMSVC' +[03/07/2021 17:58:35.0670] [2] Beginning processing Start-SetupService +[03/07/2021 17:58:35.0692] [2] [WARNING] Service checkpoint has not progressed. Previous checkpoint='0'- Current checkpoint='0'. +[03/07/2021 17:58:35.0692] [2] Previous service status query time is '3/7/2021 11:58:35 AM'. +[03/07/2021 17:58:35.0692] [2] Current service status query time is '3/7/2021 11:58:35 AM'. +[03/07/2021 17:58:35.0692] [2] Will wait '2000' milliseconds for the service 'WMSVC' to reach status 'Running'. +[03/07/2021 17:58:35.0944] [2] Service 'WMSVC' successfully reached status 'Running on this server while waiting for status change. +[03/07/2021 17:58:35.0945] [2] Ending processing Start-SetupService +[03/07/2021 17:58:35.0946] [1] Executing: + if (Get-Service NetTcpPortSharing* | ?{$_.Name -eq 'NetTcpPortSharing'}) + { + Set-Service NetTcpPortSharing -StartupType Automatic + } + +[03/07/2021 17:58:35.0954] [1] Finished executing component tasks. +[03/07/2021 17:58:35.0964] [1] Ending processing Start-PreConfiguration +[03/07/2021 17:58:36.0021] [0] ************** +[03/07/2021 17:58:36.0021] [0] Setup will run the task 'test-SetupPrerequisites' +[03/07/2021 17:58:36.0021] [1] Setup launched task 'test-SetupPrerequisites -DomainController 'Solo-DC1.Solo.local' -ExchangeVersion '15.1.2176.2' -Roles 'Global','LanguagePacks','Bridgehead','ClientAccess','UnifiedMessaging','Mailbox','FrontendTransport','Cafe' -ScanType 'PrecheckUpgrade' -SetupRoles 'LanguagePacks','AdminTools','Bridgehead','ClientAccess','UnifiedMessaging','Mailbox','FrontendTransport','Cafe','Global' -TargetDir 'C:\Program Files\Microsoft\Exchange Server\V15' -PrepareDomain $null -PrepareOrganization $true -PrepareSchema $true -CustomerFeedbackEnabled $true -LanguagePackDir 'D:\' -LanguagesAvailableToInstall $true -SufficientLanguagePackDiskSpace $true -LanguagePackVersioning $true -HostingDeploymentEnabled $false' +[03/07/2021 17:58:36.0042] [1] Active Directory session settings for 'test-SetupPrerequisites' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:36.0042] [1] User specified parameters: -Roles:'Global','LanguagePacks','Bridgehead','ClientAccess','UnifiedMessaging','Mailbox','FrontendTransport','Cafe' -LanguagesAvailableToInstall:'True' -DomainController:'Solo-DC1.Solo.local' -LanguagePackDir:'D:\' -CustomerFeedbackEnabled:'True' -ExchangeVersion:'15.1.2176.2' -PrepareOrganization:'True' -SufficientLanguagePackDiskSpace:'True' -ScanType:'PrecheckUpgrade' -LanguagePackVersioning:'True' -HostingDeploymentEnabled:'False' -TargetDir:'C:\Program Files\Microsoft\Exchange Server\V15' -PrepareDomain:$null -PrepareSchema:'True' -SetupRoles:'LanguagePacks','AdminTools','Bridgehead','ClientAccess','UnifiedMessaging','Mailbox','FrontendTransport','Cafe','Global' +[03/07/2021 17:58:36.0042] [1] Beginning processing test-SetupPrerequisites +[03/07/2021 17:58:36.0465] [1] Started [Analysis:Prereq] +[03/07/2021 17:58:36.0567] [1] Started [Rule:PrimaryDNSTestFailed] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:36.0567] [1] Started [Rule:OSCheckedBuild] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:36.0567] [1] Started [Rule:NetTcpPortSharingSvcNotAuto] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0567] [1] Started [Rule:MSDTCStopped] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0567] [1] Started [Rule:MpsSvcStopped] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:36.0567] [1] Started [Rule:HostRecordMissing] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:36.0571] [1] Started [Rule:EventSystemStopped] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0571] [1] Started [Rule:W2K8R2PrepareSchemaLdifdeNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0577] [1] Started [Setting:MSDTCStarted] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0577] [1] Started [Setting:DebugVersion] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0578] [1] Started [Setting:EventSystemStarted] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0578] [1] Started [Setting:PrimaryDNSPortAvailable] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0582] [1] Started [Setting:NetTcpPortSharingStartMode] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0582] [1] Started [Rule:PendingRebootWindowsComponents] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0585] [1] Started [Setting:HostRecord] [Parent:RootAnalysisMember] [ValueType:Dictionary`2] +[03/07/2021 17:58:36.0586] [1] Started [Rule:ComputerNotPartofDomain] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0587] [1] Started [Setting:PrimaryDns] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0593] [1] Started [Setting:DnsAddress] [Parent:NicConfiguration] [ValueType:String] +[03/07/2021 17:58:36.0595] [1] Started [Setting:NicConfiguration] [Parent:NicCaption] [ValueType:Dictionary`2] +[03/07/2021 17:58:36.0595] [1] Started [Setting:NicCaption] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0596] [1] Started [Setting:DomainRole] [Parent:RootAnalysisMember] [ValueType:UInt16] +[03/07/2021 17:58:36.0599] [1] Started [Setting:MpsSvcStarted] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0601] [1] Started [Rule:W2K8R2PrepareAdLdifdeNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0607] [1] Evaluated [Rule:PendingRebootWindowsComponents] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:49] [Duration:00:00:00.0150013] +[03/07/2021 17:58:36.0607] [1] Started [Rule:LonghornWmspdmoxNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0610] [1] Finished [Rule:PendingRebootWindowsComponents] [Duration:00:00:00.0250054] +[03/07/2021 17:58:36.0610] [1] Started [Rule:Exchange2000or2003PresentInOrg] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0612] [1] Started [Setting:Exchange200x] [Parent:ExchangeSerialNumber] [ValueType:Boolean] +[03/07/2021 17:58:36.0612] [1] Started [Setting:ExchangeSerialNumber] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0615] [1] Started [Rule:RebootPending] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0617] [1] Started [Setting:OrgDistinguishedName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0617] [1] Started [Rule:Win7RpcHttpAssocCookieGuidUpdateNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0617] [1] Started [Setting:PendingFileRenames] [Parent:RootAnalysisMember] [ValueType:String[]] +[03/07/2021 17:58:36.0620] [1] Started [Setting:OrgMicrosoftExchServicesConfig] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0622] [1] Started [Setting:FileVersionRpcHttp] [Parent:RootAnalysisMember] [ValueType:Version] +[03/07/2021 17:58:36.0623] [1] Evaluated [Setting:PendingFileRenames] [HasException:False] [Value:""] [ParentValue:""] [Thread:53] [Duration:00:00:00.0059994] +[03/07/2021 17:58:36.0623] [1] Finished [Setting:PendingFileRenames] [Duration:00:00:00.0059994] +[03/07/2021 17:58:36.0624] [1] Started [Rule:UpdateNeedsReboot] [Parent:RootAnalysisMember] [RuleType:None] +[03/07/2021 17:58:36.0624] [1] Started [Setting:MicrosoftExchServicesConfigDistinguishedName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0624] [1] Started [Setting:WindowsPath] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0626] [1] Evaluated [Setting:WindowsPath] [HasException:False] [Value:"C:\Windows"] [ParentValue:""] [Thread:54] [Duration:00:00:00.0019996] +[03/07/2021 17:58:36.0626] [1] Finished [Setting:WindowsPath] [Duration:00:00:00.0019996] +[03/07/2021 17:58:36.0626] [1] Evaluated [Rule:UpdateNeedsReboot] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:53] [Duration:00:00:00.0019996] +[03/07/2021 17:58:36.0626] [1] Finished [Rule:UpdateNeedsReboot] [Duration:00:00:00.0019996] +[03/07/2021 17:58:36.0627] [1] Started [Setting:MicrosoftExchServicesConfig] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0631] [1] Started [Setting:ConfigurationNamingContext] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0633] [1] Started [Setting:RootDSEProperties] [Parent:RootAnalysisMember] [ValueType:List`1] +[03/07/2021 17:58:36.0635] [1] Started [Setting:PrepareOrganization] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0635] [1] Evaluated [Rule:RebootPending] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:53] [Duration:00:00:00.0199980] +[03/07/2021 17:58:36.0635] [1] Finished [Rule:RebootPending] [Duration:00:00:00.0209997] +[03/07/2021 17:58:36.0635] [1] Started [Setting:FileVersionWmspdmod] [Parent:RootAnalysisMember] [ValueType:Version] +[03/07/2021 17:58:36.0635] [1] Evaluated [Setting:PrepareOrganization] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:50] [Duration:00:00:00] +[03/07/2021 17:58:36.0636] [1] Finished [Setting:PrepareOrganization] [Duration:00:00:00] +[03/07/2021 17:58:36.0636] [1] Started [Setting:FileVersionLdifde] [Parent:RootAnalysisMember] [ValueType:Version] +[03/07/2021 17:58:36.0636] [1] Started [Setting:SetupRoles] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0637] [1] Started [Rule:SearchFoundationAssemblyLoaderKBNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0637] [1] Evaluated [Setting:SetupRoles] [HasException:False] [Value:"LanguagePacks"] [ParentValue:""] [Thread:52] [Duration:00:00:00.0010002] +[03/07/2021 17:58:36.0638] [1] Evaluated [Setting:SetupRoles] [HasException:False] [Value:"AdminTools"] [ParentValue:""] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0638] [1] Evaluated [Setting:SetupRoles] [HasException:False] [Value:"Bridgehead"] [ParentValue:""] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0638] [1] Evaluated [Setting:SetupRoles] [HasException:False] [Value:"ClientAccess"] [ParentValue:""] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0638] [1] Evaluated [Setting:SetupRoles] [HasException:False] [Value:"UnifiedMessaging"] [ParentValue:""] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0638] [1] Evaluated [Setting:SetupRoles] [HasException:False] [Value:"Mailbox"] [ParentValue:""] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0638] [1] Evaluated [Setting:SetupRoles] [HasException:False] [Value:"FrontendTransport"] [ParentValue:""] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0638] [1] Evaluated [Setting:SetupRoles] [HasException:False] [Value:"Cafe"] [ParentValue:""] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0639] [1] Evaluated [Setting:SetupRoles] [HasException:False] [Value:"Global"] [ParentValue:""] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0639] [1] Finished [Setting:SetupRoles] [Duration:00:00:00.0029974] +[03/07/2021 17:58:36.0640] [1] Started [Setting:GlobalCatalog] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0640] [1] Evaluated [Setting:GlobalCatalog] [HasException:False] [Value:"Solo-DC1.Solo.local"] [ParentValue:""] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0640] [1] Finished [Setting:GlobalCatalog] [Duration:00:00:00] +[03/07/2021 17:58:36.0646] [1] Started [Setting:PrepareSchema] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0647] [1] Evaluated [Setting:PrepareSchema] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:49] [Duration:00:00:00.0010077] +[03/07/2021 17:58:36.0647] [1] Finished [Setting:PrepareSchema] [Duration:00:00:00.0010077] +[03/07/2021 17:58:36.0652] [1] Started [Setting:FileVersionKernel32] [Parent:RootAnalysisMember] [ValueType:Version] +[03/07/2021 17:58:36.0668] [1] Started [Rule:Win2k12UrefsUpdateNotInstalled] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:36.0669] [1] Evaluated [Setting:RootDSEProperties] [HasException:False] [Value:"System.Collections.Generic.List`1[System.String]"] [ParentValue:""] [Thread:52] [Duration:00:00:00.0359985] +[03/07/2021 17:58:36.0669] [1] Finished [Setting:RootDSEProperties] [Duration:00:00:00.0359985] +[03/07/2021 17:58:36.0669] [1] Started [Rule:Win2k12RefsUpdateNotInstalled] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:36.0669] [1] Evaluated [Setting:ConfigurationNamingContext] [HasException:False] [Value:"CN=Configuration,DC=Solo,DC=local"] [ParentValue:""] [Thread:52] [Duration:00:00:00.0379982] +[03/07/2021 17:58:36.0669] [1] Finished [Setting:ConfigurationNamingContext] [Duration:00:00:00.0379982] +[03/07/2021 17:58:36.0671] [1] Started [Setting:FileVersionUrefs] [Parent:RootAnalysisMember] [ValueType:Version] +[03/07/2021 17:58:36.0672] [1] Started [Setting:FileVersionRefs] [Parent:RootAnalysisMember] [ValueType:Version] +[03/07/2021 17:58:36.0676] [1] Started [Rule:Win2k12RollupUpdateNotInstalled] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:36.0679] [1] Started [Setting:FileVersionDiscan] [Parent:RootAnalysisMember] [ValueType:Version] +[03/07/2021 17:58:36.0714] [1] Started [Rule:Win2k16LSARollupUpdateNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0716] [1] Started [Rule:UnifiedMessagingRoleNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0717] [1] Started [Setting:FileVersionSspicli] [Parent:RootAnalysisMember] [ValueType:Version] +[03/07/2021 17:58:36.0717] [1] Evaluated [Setting:MicrosoftExchServicesConfig] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:52] [Duration:00:00:00.0899964] +[03/07/2021 17:58:36.0717] [1] Finished [Setting:MicrosoftExchServicesConfig] [Duration:00:00:00.0899964] +[03/07/2021 17:58:36.0718] [1] Evaluated [Setting:MicrosoftExchServicesConfigDistinguishedName] [HasException:False] [Value:"CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local"] [ParentValue:""] [Thread:52] [Duration:00:00:00.0939973] +[03/07/2021 17:58:36.0718] [1] Finished [Setting:MicrosoftExchServicesConfigDistinguishedName] [Duration:00:00:00.0939973] +[03/07/2021 17:58:36.0718] [1] Started [Setting:UnifiedMessagingRoleInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0721] [1] Evaluated [Setting:OrgMicrosoftExchServicesConfig] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:52] [Duration:00:00:00.0999987] +[03/07/2021 17:58:36.0721] [1] Finished [Setting:OrgMicrosoftExchServicesConfig] [Duration:00:00:00.1010003] +[03/07/2021 17:58:36.0721] [1] Evaluated [Setting:OrgDistinguishedName] [HasException:False] [Value:"CN=SoloORG,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local"] [ParentValue:""] [Thread:52] [Duration:00:00:00.1040004] +[03/07/2021 17:58:36.0721] [1] Finished [Setting:OrgDistinguishedName] [Duration:00:00:00.1040004] +[03/07/2021 17:58:36.0723] [1] Started [Rule:BridgeheadRoleNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0723] [1] Started [Rule:SendConnectorException] [Parent:OrgMicrosoftExchServicesConfig] [RuleType:Error] +[03/07/2021 17:58:36.0725] [1] Started [Setting:BridgeheadRoleInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0725] [1] Evaluated [Setting:ExchangeSerialNumber] [HasException:False] [Value:"Version 15.1 (Build 32106.2)"] [ParentValue:""] [Thread:52] [Duration:00:00:00.1129455] +[03/07/2021 17:58:36.0726] [1] Evaluated [Setting:Exchange200x] [HasException:False] [Value:"False"] [ParentValue:"Version 15.1 (Build 32106.2)"] [Thread:52] [Duration:00:00:00.1139457] +[03/07/2021 17:58:36.0726] [1] Evaluated [Setting:ExchangeSerialNumber] [HasException:False] [Value:"Version 15.1 (Build 31531.3)"] [ParentValue:""] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0726] [1] Evaluated [Setting:Exchange200x] [HasException:False] [Value:"False"] [ParentValue:"Version 15.1 (Build 31531.3)"] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0726] [1] Evaluated [Setting:ExchangeSerialNumber] [HasException:False] [Value:"Version 15.1 (Build 31531.3)"] [ParentValue:""] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0726] [1] Evaluated [Setting:Exchange200x] [HasException:False] [Value:"False"] [ParentValue:"Version 15.1 (Build 31531.3)"] [Thread:52] [Duration:00:00:00] +[03/07/2021 17:58:36.0726] [1] Finished [Setting:ExchangeSerialNumber] [Duration:00:00:00.1139457] +[03/07/2021 17:58:36.0726] [1] Finished [Setting:Exchange200x] [Duration:00:00:00.1149963] +[03/07/2021 17:58:36.0726] [1] Evaluated [Rule:Exchange2000or2003PresentInOrg] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:52] [Duration:00:00:00.1159959] +[03/07/2021 17:58:36.0726] [1] Finished [Rule:Exchange2000or2003PresentInOrg] [Duration:00:00:00.1159959] +[03/07/2021 17:58:36.0729] [1] Started [Rule:RemoteRegException] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0732] [1] Started [Setting:ExchangeCurrentServerRoles] [Parent:RootAnalysisMember] [ValueType:Int32] +[03/07/2021 17:58:36.0736] [1] Started [Setting:MicrosoftExchServicesAdminGroupsConfig] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0740] [1] Started [Setting:ShortServerName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0742] [1] Started [Rule:ResourcePropertySchemaException] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0747] [1] Started [Rule:WcfHttpActivation45Installed] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0747] [1] Started [Rule:RsatAddsToolsInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0748] [1] Started [Rule:RsatClusteringInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0748] [1] Started [Setting:Windows8Version] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0749] [1] Started [Rule:RsatClusteringMgmtInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0749] [1] Started [Setting:IsRsatAddsToolsInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0749] [1] Started [Rule:RsatClusteringPowerShellInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0751] [1] Started [Setting:IsRsatClusteringInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0752] [1] Started [Setting:InstalledWindowsFeatures] [Parent:RootAnalysisMember] [ValueType:Object[]] +[03/07/2021 17:58:36.0754] [1] Started [Rule:RsatClusteringCmdInterfaceInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0755] [1] Started [Rule:RSATWebServerNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0755] [1] Started [Rule:NETFrameworkNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0756] [1] Started [Setting:Windows2K8R2Version] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0760] [1] Started [Setting:OSProductType] [Parent:RootAnalysisMember] [ValueType:UInt32] +[03/07/2021 17:58:36.0763] [1] Started [Rule:NETFramework45FeaturesNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0764] [1] Started [Rule:WebNetExt45NotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0765] [1] Started [Rule:WebISAPIExtNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0766] [1] Started [Setting:IsWebISAPIExtInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0767] [1] Started [Rule:WebASPNET45NotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0767] [1] Started [Rule:RPCOverHTTPproxyNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0769] [1] Started [Setting:IsRPCOverHTTPproxyInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0771] [1] Started [Rule:ServerGuiMgmtInfraNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0771] [1] Started [Rule:IsServerCoreInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0773] [1] Started [Setting:Windows10Version] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0775] [1] Started [Rule:PowerShellExecutionPolicyCheckSet] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0776] [1] Started [Setting:PowerShellExecutionPolicy] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0777] [1] Active Directory session settings for 'Get-SendConnector' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:36.0778] [1] User specified parameters: +[03/07/2021 17:58:36.0778] [1] Beginning processing Get-SendConnector +[03/07/2021 17:58:36.0781] [1] Started [Setting:CmdletGetExchangeServerResult] [Parent:RootAnalysisMember] [ValueType:ExchangeServer] +[03/07/2021 17:58:36.0781] [1] Started [Setting:VoiceMailPath] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0782] [1] Started [Setting:TargetDir] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0783] [1] Evaluated [Setting:TargetDir] [HasException:False] [Value:"C:\Program Files\Microsoft\Exchange Server\V15"] [ParentValue:""] [Thread:83] [Duration:00:00:00.0009995] +[03/07/2021 17:58:36.0783] [1] Finished [Setting:TargetDir] [Duration:00:00:00.0009995] +[03/07/2021 17:58:36.0783] [1] Evaluated [Setting:VoiceMailPath] [HasException:False] [Value:"C:\Program Files\Microsoft\Exchange Server\V15\unifiedmessaging\voicemail"] [ParentValue:""] [Thread:83] [Duration:00:00:00.0020009] +[03/07/2021 17:58:36.0783] [1] Finished [Setting:VoiceMailPath] [Duration:00:00:00.0020009] +[03/07/2021 17:58:36.0784] [1] Started [Setting:VoiceMessages] [Parent:RootAnalysisMember] [ValueType:Int32] +[03/07/2021 17:58:36.0787] [1] Started [Setting:OpenProcesses] [Parent:RootAnalysisMember] [ValueType:Process] +[03/07/2021 17:58:36.0789] [1] Started [Setting:RemoteRegistryServiceId] [Parent:RootAnalysisMember] [ValueType:Int64] +[03/07/2021 17:58:36.0789] [1] Started [Setting:OneCopyAlertProcessId] [Parent:RootAnalysisMember] [ValueType:Int64] +[03/07/2021 17:58:36.0791] [1] Started [Setting:OpenProcessesOnUpgrade] [Parent:OpenProcesses] [ValueType:Process] +[03/07/2021 17:58:36.0793] [1] Started [Setting:OpenProcessesOnUninstall] [Parent:OpenProcesses] [ValueType:Process] +[03/07/2021 17:58:36.0793] [1] Started [Setting:MailboxRoleInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0798] [1] Started [Setting:ClientAccessRoleInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0799] [1] Started [Setting:CafeRoleInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0799] [1] Started [Setting:FrontendTransportRoleInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0816] [1] Started [Setting:GatewayRoleInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0822] [1] Started [Setting:ServerIsProvisioned] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0823] [1] Started [Setting:ExchangeConfigurationUnitsConfiguration] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0826] [1] Started [Setting:ExchangeConfigurationUnitsDomain] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0830] [1] Started [Setting:RootNamingContext] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0833] [1] Evaluated [Setting:RootNamingContext] [HasException:False] [Value:"DC=Solo,DC=local"] [ParentValue:""] [Thread:99] [Duration:00:00:00.0019982] +[03/07/2021 17:58:36.0833] [1] Finished [Setting:RootNamingContext] [Duration:00:00:00.0029993] +[03/07/2021 17:58:36.0836] [1] Started [Setting:SMOSchemaSiteName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0838] [1] Started [Setting:DnsHostName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0844] [1] Started [Setting:ShortProvisionedName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0848] [1] Evaluated [Setting:ExchangeConfigurationUnitsDomain] [HasException:True] [Value: +System.DirectoryServices.DirectoryServicesCOMException (0x80072030): There is no such object on the server. + + at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail) + at System.DirectoryServices.DirectoryEntry.Bind() + at System.DirectoryServices.DirectoryEntry.get_AdsObject() + at System.DirectoryServices.DirectorySearcher.FindAll(Boolean findMoreThanOne) + at Microsoft.Exchange.Management.Deployment.ADProvider.Run(Boolean useGC, String directoryEntry, String[] listOfPropertiesToCollect, String filter, SearchScope searchScope) + at Microsoft.Exchange.Management.Analysis.PrereqAnalysis.b__2400_112(Result`1 x) + at Microsoft.Exchange.Management.Analysis.Builders.SettingBuilder`2.<>c__DisplayClass2_0.b__0(Result x) +] [ParentValue:""] [Thread:99] [Duration:00:00:00.0130014] +[03/07/2021 17:58:36.0848] [1] Finished [Setting:ExchangeConfigurationUnitsDomain] [Duration:00:00:00.0220008] +[03/07/2021 17:58:36.0850] [1] Evaluated [Setting:ExchangeConfigurationUnitsConfiguration] [HasException:True] [Value: +System.DirectoryServices.DirectoryServicesCOMException (0x80072030): There is no such object on the server. + + at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail) + at System.DirectoryServices.DirectoryEntry.Bind() + at System.DirectoryServices.DirectoryEntry.get_AdsObject() + at System.DirectoryServices.DirectorySearcher.FindAll(Boolean findMoreThanOne) + at Microsoft.Exchange.Management.Deployment.ADProvider.Run(Boolean useGC, String directoryEntry, String[] listOfPropertiesToCollect, String filter, SearchScope searchScope) + at Microsoft.Exchange.Management.Analysis.PrereqAnalysis.b__2400_111(Result`1 x) + at Microsoft.Exchange.Management.Analysis.Builders.SettingBuilder`2.<>c__DisplayClass2_0.b__0(Result x) +] [ParentValue:""] [Thread:98] [Duration:00:00:00.0160026] +[03/07/2021 17:58:36.0850] [1] Finished [Setting:ExchangeConfigurationUnitsConfiguration] [Duration:00:00:00.0270381] +[03/07/2021 17:58:36.0850] [1] Started [Setting:SmoSchemaDN] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0854] [1] Started [Setting:NewProvisionedServerName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0855] [1] Evaluated [Setting:NewProvisionedServerName] [HasException:False] [Value:""] [ParentValue:""] [Thread:101] [Duration:00:00:00] +[03/07/2021 17:58:36.0855] [1] Finished [Setting:NewProvisionedServerName] [Duration:00:00:00.0010024] +[03/07/2021 17:58:36.0855] [1] Finished [Setting:ShortProvisionedName] [Duration:00:00:00.0110030] +[03/07/2021 17:58:36.0863] [1] Started [Setting:SmoRoleOwner] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0872] [1] Started [Setting:SchemaDN] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0876] [1] Started [Setting:CmdletGetUMServerResult] [Parent:RootAnalysisMember] [ValueType:UMServer] +[03/07/2021 17:58:36.0878] [1] Started [Setting:SchemaNamingContext] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0880] [1] Evaluated [Setting:SchemaNamingContext] [HasException:False] [Value:"CN=Schema,CN=Configuration,DC=Solo,DC=local"] [ParentValue:""] [Thread:100] [Duration:00:00:00.0020027] +[03/07/2021 17:58:36.0880] [1] Finished [Setting:SchemaNamingContext] [Duration:00:00:00.0020027] +[03/07/2021 17:58:36.0882] [1] Evaluated [Setting:SchemaDN] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:100] [Duration:00:00:00.0100006] +[03/07/2021 17:58:36.0882] [1] Finished [Setting:SchemaDN] [Duration:00:00:00.0100006] +[03/07/2021 17:58:36.0883] [1] Evaluated [Setting:SmoRoleOwner] [HasException:False] [Value:"SOLO-DC1"] [ParentValue:""] [Thread:100] [Duration:00:00:00.0199986] +[03/07/2021 17:58:36.0883] [1] Finished [Setting:SmoRoleOwner] [Duration:00:00:00.0199986] +[03/07/2021 17:58:36.0884] [1] Started [Setting:LanguageInUMServer] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0886] [1] Evaluated [Setting:SmoSchemaDN] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:100] [Duration:00:00:00.0359609] +[03/07/2021 17:58:36.0886] [1] Finished [Setting:SmoSchemaDN] [Duration:00:00:00.0359609] +[03/07/2021 17:58:36.0886] [1] Evaluated [Setting:DnsHostName] [HasException:False] [Value:"Solo-DC1.Solo.local"] [ParentValue:""] [Thread:100] [Duration:00:00:00.0479966] +[03/07/2021 17:58:36.0886] [1] Finished [Setting:DnsHostName] [Duration:00:00:00.0479966] +[03/07/2021 17:58:36.0909] [1] Evaluated [Setting:SMOSchemaSiteName] [HasException:False] [Value:"Default-First-Site-Name"] [ParentValue:""] [Thread:100] [Duration:00:00:00.0729976] +[03/07/2021 17:58:36.0909] [1] Finished [Setting:SMOSchemaSiteName] [Duration:00:00:00.0729976] +[03/07/2021 17:58:36.0911] [1] Started [Rule:InstallOnDCInADSplitPermissionMode] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0913] [1] Started [Setting:LocalComputerIsDomainController] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0913] [1] Started [Rule:NotLocalAdmin] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0915] [1] Started [Setting:LocalAdmin] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0919] [1] Evaluated [Setting:LocalAdmin] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:23] [Duration:00:00:00.0040029] +[03/07/2021 17:58:36.0919] [1] Finished [Setting:LocalAdmin] [Duration:00:00:00.0050006] +[03/07/2021 17:58:36.0919] [1] Evaluated [Rule:NotLocalAdmin] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:23] [Duration:00:00:00.0060003] +[03/07/2021 17:58:36.0919] [1] Finished [Rule:NotLocalAdmin] [Duration:00:00:00.0060003] +[03/07/2021 17:58:36.0920] [1] Started [Rule:ExchangeVersionBlock] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0920] [1] Started [Rule:DelegatedCafeFirstInstall] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0920] [1] Started [Rule:PrepareDomainNotFound] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0923] [1] Started [Setting:CafeRoleOfEqualOrHigherVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0923] [1] Started [Setting:PrepareDomain] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0924] [1] Evaluated [Setting:PrepareDomain] [HasException:False] [Value:"F63C3A12-7852-4654-B208-125C32EB409A"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0010027] +[03/07/2021 17:58:36.0924] [1] Finished [Setting:PrepareDomain] [Duration:00:00:00.0010027] +[03/07/2021 17:58:36.0924] [1] Evaluated [Rule:PrepareDomainNotFound] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0040024] +[03/07/2021 17:58:36.0924] [1] Finished [Rule:PrepareDomainNotFound] [Duration:00:00:00.0040024] +[03/07/2021 17:58:36.0924] [1] Started [Rule:PrepareDomainModeMixed] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0925] [1] Started [Setting:NtMixedDomainPrepareDomain] [Parent:RootAnalysisMember] [ValueType:Int32] +[03/07/2021 17:58:36.0926] [1] Started [Setting:MicrosoftExchAdminGroupsCafeRoleConfig] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0927] [1] Started [Setting:PrepareDomainNCNameConfig] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0931] [1] Started [Setting:PrepareDomainNCName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0931] [1] Started [Setting:MicrosoftExchServicesAdminGroupConfigDistinguishedName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0933] [1] Started [Setting:MicrosoftExchServicesAdminGroupConfig] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0934] [1] Started [Setting:ExchangeVersionPrefix] [Parent:RootAnalysisMember] [ValueType:Single] +[03/07/2021 17:58:36.0939] [1] Started [Rule:LonghornHttpErrors] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0939] [1] Started [Rule:ServerNameNotValid] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0939] [1] Started [Rule:ConfigDCHostNameMismatch] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0940] [1] Evaluated [Setting:PrepareDomainNCName] [HasException:False] [Value:""] [ParentValue:""] [Thread:5] [Duration:00:00:00.0090009] +[03/07/2021 17:58:36.0940] [1] Finished [Setting:PrepareDomainNCName] [Duration:00:00:00.0090009] +[03/07/2021 17:58:36.0940] [1] Evaluated [Setting:PrepareDomainNCNameConfig] [HasException:False] [Value:""] [ParentValue:""] [Thread:5] [Duration:00:00:00.0130008] +[03/07/2021 17:58:36.0940] [1] Finished [Setting:PrepareDomainNCNameConfig] [Duration:00:00:00.0130008] +[03/07/2021 17:58:36.0941] [1] Started [Setting:ConfigDCHostName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0942] [1] Evaluated [Setting:ExchangeVersionPrefix] [HasException:False] [Value:"0"] [ParentValue:""] [Thread:23] [Duration:00:00:00.0070001] +[03/07/2021 17:58:36.0942] [1] Finished [Setting:ExchangeVersionPrefix] [Duration:00:00:00.0079998] +[03/07/2021 17:58:36.0943] [1] Evaluated [Setting:ConfigDCHostName] [HasException:True] [Value: +Expected failure for ConfigDCHostName:The registry key, HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\MSExchange ADAccess\Instance0, wasn't found. +] [ParentValue:""] [Thread:11] [Duration:00:00:00.0009997] +[03/07/2021 17:58:36.0943] [1] Finished [Setting:ConfigDCHostName] [Duration:00:00:00.0020004] +[03/07/2021 17:58:36.0943] [1] Evaluated [Rule:ConfigDCHostNameMismatch] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:11] [Duration:00:00:00.0040010] +[03/07/2021 17:58:36.0943] [1] Evaluated [Rule:ExchangeVersionBlock] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:23] [Duration:00:00:00.0230000] +[03/07/2021 17:58:36.0943] [1] Finished [Rule:ExchangeVersionBlock] [Duration:00:00:00.0239997] +[03/07/2021 17:58:36.0943] [1] Started [Rule:VoiceMessagesInQueue] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0943] [1] Finished [Rule:ConfigDCHostNameMismatch] [Duration:00:00:00.0040010] +[03/07/2021 17:58:36.0943] [1] Started [Rule:LonghornIIS7ManagementConsoleInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0944] [1] Started [Rule:ProcessNeedsToBeClosedOnUpgrade] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0944] [1] Evaluated [Setting:NtMixedDomainPrepareDomain] [HasException:False] [Value:"0"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0180005] +[03/07/2021 17:58:36.0944] [1] Finished [Setting:NtMixedDomainPrepareDomain] [Duration:00:00:00.0189986] +[03/07/2021 17:58:36.0945] [1] Evaluated [Rule:PrepareDomainModeMixed] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0209970] +[03/07/2021 17:58:36.0945] [1] Finished [Rule:PrepareDomainModeMixed] [Duration:00:00:00.0209970] +[03/07/2021 17:58:36.0945] [1] Started [Rule:RusMissing] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:36.0945] [1] Started [Rule:DelegatedFrontendTransportFirstInstall] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0947] [1] Started [Setting:RusName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0947] [1] Started [Setting:FrontendTransportRoleOfEqualOrHigherVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0948] [1] Started [Rule:ServerFQDNMatchesSMTPPolicy] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0948] [1] Started [Setting:ServerGuiShellInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0949] [1] Evaluated [Setting:ServerGuiShellInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:11] [Duration:00:00:00.0010017] +[03/07/2021 17:58:36.0949] [1] Finished [Setting:ServerGuiShellInstalled] [Duration:00:00:00.0010017] +[03/07/2021 17:58:36.0949] [1] Started [Setting:GatewayProxy] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0950] [1] Started [Setting:MicrosoftExchAdminGroupsFrontendTransportRoleConfig] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0952] [1] Started [Setting:ExchangeRecipientPolicyConfiguration] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0952] [1] Started [Setting:MicrosoftExchangeSystemObjectsCN] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0957] [1] Started [Setting:DomainNCName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0960] [1] Started [Setting:HttpErrors] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:36.0960] [1] Evaluated [Setting:MicrosoftExchServicesAdminGroupConfig] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0269983] +[03/07/2021 17:58:36.0960] [1] Finished [Setting:MicrosoftExchServicesAdminGroupConfig] [Duration:00:00:00.0269983] +[03/07/2021 17:58:36.0960] [1] Evaluated [Setting:MicrosoftExchServicesAdminGroupConfigDistinguishedName] [HasException:False] [Value:"CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=SoloORG,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0289986] +[03/07/2021 17:58:36.0960] [1] Finished [Setting:MicrosoftExchServicesAdminGroupConfigDistinguishedName] [Duration:00:00:00.0289986] +[03/07/2021 17:58:36.0960] [1] Started [Setting:VersionNumber] [Parent:RootAnalysisMember] [ValueType:Int32] +[03/07/2021 17:58:36.0961] [1] Started [Setting:LocalServerName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0961] [1] Started [Setting:ExchangeVersion] [Parent:RootAnalysisMember] [ValueType:Version] +[03/07/2021 17:58:36.0962] [1] Evaluated [Setting:ExchangeVersion] [HasException:False] [Value:"15.1.2176.2"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0009986] +[03/07/2021 17:58:36.0962] [1] Finished [Setting:ExchangeVersion] [Duration:00:00:00.0009986] +[03/07/2021 17:58:36.0962] [1] Evaluated [Setting:VersionNumber] [HasException:False] [Value:"1942063232"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0019993] +[03/07/2021 17:58:36.0962] [1] Finished [Setting:VersionNumber] [Duration:00:00:00.0019993] +[03/07/2021 17:58:36.0963] [1] Evaluated [Setting:DomainNCName] [HasException:False] [Value:"DC=Solo,DC=local"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0059997] +[03/07/2021 17:58:36.0963] [1] Finished [Setting:DomainNCName] [Duration:00:00:00.0069840] +[03/07/2021 17:58:36.0964] [1] Started [Setting:IIS7ManagementConsole] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:36.0965] [1] Evaluated [Setting:MicrosoftExchAdminGroupsFrontendTransportRoleConfig] [HasException:False] [Value:""] [ParentValue:""] [Thread:104] [Duration:00:00:00.0150005] +[03/07/2021 17:58:36.0965] [1] Finished [Setting:MicrosoftExchAdminGroupsFrontendTransportRoleConfig] [Duration:00:00:00.0150005] +[03/07/2021 17:58:36.0965] [1] Finished [Setting:FrontendTransportRoleOfEqualOrHigherVersion] [Duration:00:00:00.0180008] +[03/07/2021 17:58:36.0965] [1] Started [Setting:ExOrgAdmin] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:36.0965] [1] Started [Rule:LonghornHttpLogging] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0967] [1] Evaluated [Setting:MicrosoftExchangeSystemObjectsCN] [HasException:False] [Value:"Microsoft Exchange System Objects"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0150014] +[03/07/2021 17:58:36.0967] [1] Finished [Setting:MicrosoftExchangeSystemObjectsCN] [Duration:00:00:00.0150014] +[03/07/2021 17:58:36.0968] [1] Started [Setting:HttpLogging] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:36.0968] [1] Started [Setting:SidExOrgAdmins] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0969] [1] Evaluated [Setting:MicrosoftExchAdminGroupsCafeRoleConfig] [HasException:False] [Value:""] [ParentValue:""] [Thread:24] [Duration:00:00:00.0429974] +[03/07/2021 17:58:36.0969] [1] Finished [Setting:MicrosoftExchAdminGroupsCafeRoleConfig] [Duration:00:00:00.0429974] +[03/07/2021 17:58:36.0969] [1] Finished [Setting:CafeRoleOfEqualOrHigherVersion] [Duration:00:00:00.0459970] +[03/07/2021 17:58:36.0971] [1] Started [Setting:OrgDN] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0973] [1] Evaluated [Setting:HttpErrors] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0120005] +[03/07/2021 17:58:36.0973] [1] Finished [Setting:HttpErrors] [Duration:00:00:00.0139995] +[03/07/2021 17:58:36.0973] [1] Evaluated [Setting:HttpLogging] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0040000] +[03/07/2021 17:58:36.0973] [1] Finished [Setting:HttpLogging] [Duration:00:00:00.0050001] +[03/07/2021 17:58:36.0974] [1] Evaluated [Rule:LonghornHttpErrors] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0349998] +[03/07/2021 17:58:36.0974] [1] Finished [Rule:LonghornHttpErrors] [Duration:00:00:00.0349998] +[03/07/2021 17:58:36.0974] [1] Started [Setting:ExchangeOrgAdminsGroupOtherWellKnownObjects] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0974] [1] Started [Rule:LonghornHttpRedirect] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0974] [1] Evaluated [Rule:LonghornHttpLogging] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0089996] +[03/07/2021 17:58:36.0974] [1] Finished [Rule:LonghornHttpLogging] [Duration:00:00:00.0089996] +[03/07/2021 17:58:36.0974] [1] Started [Rule:LonghornRequestMonitor] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0978] [1] Started [Setting:RequestMonitor] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:36.0979] [1] Evaluated [Setting:RequestMonitor] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0010023] +[03/07/2021 17:58:36.0979] [1] Finished [Setting:RequestMonitor] [Duration:00:00:00.0010023] +[03/07/2021 17:58:36.0979] [1] Evaluated [Rule:LonghornRequestMonitor] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0050014] +[03/07/2021 17:58:36.0980] [1] Finished [Rule:LonghornRequestMonitor] [Duration:00:00:00.0059991] +[03/07/2021 17:58:36.0980] [1] Started [Rule:LonghornStaticContent] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0981] [1] Evaluated [Setting:RusName] [HasException:False] [Value:""] [ParentValue:""] [Thread:5] [Duration:00:00:00.0339988] +[03/07/2021 17:58:36.0981] [1] Finished [Setting:RusName] [Duration:00:00:00.0339988] +[03/07/2021 17:58:36.0981] [1] Started [Setting:HttpRedirect] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:36.0981] [1] Evaluated [Setting:ExchangeOrgAdminsGroupOtherWellKnownObjects] [HasException:False] [Value:"CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0069984] +[03/07/2021 17:58:36.0981] [1] Finished [Setting:ExchangeOrgAdminsGroupOtherWellKnownObjects] [Duration:00:00:00.0069984] +[03/07/2021 17:58:36.0981] [1] Evaluated [Rule:RusMissing] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0359978] +[03/07/2021 17:58:36.0982] [1] Finished [Rule:RusMissing] [Duration:00:00:00.0369985] +[03/07/2021 17:58:36.0982] [1] Started [Rule:RootDomainModeMixed] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0982] [1] Evaluated [Setting:ExchangeRecipientPolicyConfiguration] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0300005] +[03/07/2021 17:58:36.0983] [1] Finished [Setting:ExchangeRecipientPolicyConfiguration] [Duration:00:00:00.0309998] +[03/07/2021 17:58:36.0983] [1] Evaluated [Setting:GatewayProxy] [HasException:False] [Value:"solo.local"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0339975] +[03/07/2021 17:58:36.0983] [1] Finished [Setting:GatewayProxy] [Duration:00:00:00.0339975] +[03/07/2021 17:58:36.0983] [1] Started [Setting:ComputerNameDnsFullyQualified] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0983] [1] Evaluated [Setting:HttpRedirect] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0020000] +[03/07/2021 17:58:36.0983] [1] Finished [Setting:HttpRedirect] [Duration:00:00:00.0020000] +[03/07/2021 17:58:36.0983] [1] Evaluated [Rule:LonghornHttpRedirect] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0089984] +[03/07/2021 17:58:36.0983] [1] Finished [Rule:LonghornHttpRedirect] [Duration:00:00:00.0089984] +[03/07/2021 17:58:36.0983] [1] Started [Setting:NtMixedDomainRoot] [Parent:RootAnalysisMember] [ValueType:Int32] +[03/07/2021 17:58:36.0983] [1] Started [Rule:LonghornHttpTracing] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0984] [1] Started [Setting:StaticContent] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:36.0985] [1] Evaluated [Setting:StaticContent] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0009995] +[03/07/2021 17:58:36.0985] [1] Finished [Setting:StaticContent] [Duration:00:00:00.0020004] +[03/07/2021 17:58:36.0985] [1] Evaluated [Rule:LonghornStaticContent] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0049997] +[03/07/2021 17:58:36.0985] [1] Finished [Rule:LonghornStaticContent] [Duration:00:00:00.0049997] +[03/07/2021 17:58:36.0985] [1] Started [Rule:ManagementServiceInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0986] [1] Started [Setting:RootDN] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:36.0986] [1] Started [Setting:HttpTracing] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:36.0987] [1] Started [Setting:ManagementService] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:36.0987] [1] Evaluated [Setting:HttpTracing] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0009990] +[03/07/2021 17:58:36.0987] [1] Finished [Setting:HttpTracing] [Duration:00:00:00.0009990] +[03/07/2021 17:58:36.0987] [1] Evaluated [Rule:LonghornHttpTracing] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0039995] +[03/07/2021 17:58:36.0987] [1] Finished [Rule:LonghornHttpTracing] [Duration:00:00:00.0039995] +[03/07/2021 17:58:36.0987] [1] Started [Rule:UcmaRedistMsi] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0988] [1] Evaluated [Setting:ManagementService] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:14] [Duration:00:00:00] +[03/07/2021 17:58:36.0988] [1] Finished [Setting:ManagementService] [Duration:00:00:00.0010014] +[03/07/2021 17:58:36.0988] [1] Evaluated [Rule:ManagementServiceInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0030005] +[03/07/2021 17:58:36.0988] [1] Finished [Rule:ManagementServiceInstalled] [Duration:00:00:00.0030005] +[03/07/2021 17:58:36.0988] [1] Started [Rule:HttpActivationInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0988] [1] Evaluated [Setting:ComputerNameDnsFullyQualified] [HasException:False] [Value:"Solo-E16A.Solo.local"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0050009] +[03/07/2021 17:58:36.0988] [1] Finished [Setting:ComputerNameDnsFullyQualified] [Duration:00:00:00.0050009] +[03/07/2021 17:58:36.0988] [1] Evaluated [Rule:ServerFQDNMatchesSMTPPolicy] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0400001] +[03/07/2021 17:58:36.0988] [1] Finished [Rule:ServerFQDNMatchesSMTPPolicy] [Duration:00:00:00.0400001] +[03/07/2021 17:58:36.0988] [1] Started [Rule:W3SVCDisabledOrNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0989] [1] Started [Setting:UcmaRedistVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0989] [1] Started [Setting:WindowsVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0989] [1] Started [Rule:WinRMServiceDisabledOrNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0990] [1] Evaluated [Setting:UcmaRedistVersion] [HasException:False] [Value:"5.0.8308.0"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0009972] +[03/07/2021 17:58:36.0990] [1] Finished [Setting:UcmaRedistVersion] [Duration:00:00:00.0009972] +[03/07/2021 17:58:36.0990] [1] Started [Setting:W3SVCStartMode] [Parent:RootAnalysisMember] [ValueType:Int32] +[03/07/2021 17:58:36.0990] [1] Evaluated [Rule:UcmaRedistMsi] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0029996] +[03/07/2021 17:58:36.0990] [1] Finished [Rule:UcmaRedistMsi] [Duration:00:00:00.0029996] +[03/07/2021 17:58:36.0990] [1] Started [Rule:SpeechRedistMsi] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0990] [1] Evaluated [Setting:WindowsVersion] [HasException:False] [Value:"6.3"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0009972] +[03/07/2021 17:58:36.0990] [1] Finished [Setting:WindowsVersion] [Duration:00:00:00.0009972] +[03/07/2021 17:58:36.0990] [1] Evaluated [Rule:HttpActivationInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0019982] +[03/07/2021 17:58:36.0990] [1] Finished [Rule:HttpActivationInstalled] [Duration:00:00:00.0019982] +[03/07/2021 17:58:36.0991] [1] Started [Rule:CannotAccessAD] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0991] [1] Evaluated [Setting:W3SVCStartMode] [HasException:False] [Value:"2"] [ParentValue:""] [Thread:27] [Duration:00:00:00] +[03/07/2021 17:58:36.0991] [1] Finished [Setting:W3SVCStartMode] [Duration:00:00:00.0010019] +[03/07/2021 17:58:36.0991] [1] Started [Setting:WinRMServiceStartMode] [Parent:RootAnalysisMember] [ValueType:Int32] +[03/07/2021 17:58:36.0991] [1] Evaluated [Rule:W3SVCDisabledOrNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0030001] +[03/07/2021 17:58:36.0991] [1] Finished [Rule:W3SVCDisabledOrNotInstalled] [Duration:00:00:00.0030001] +[03/07/2021 17:58:36.0991] [1] Started [Rule:ShouldReRunSetupForW3SVC] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0992] [1] Evaluated [Setting:WinRMServiceStartMode] [HasException:False] [Value:"2"] [ParentValue:""] [Thread:105] [Duration:00:00:00.0009993] +[03/07/2021 17:58:36.0992] [1] Finished [Setting:WinRMServiceStartMode] [Duration:00:00:00.0009993] +[03/07/2021 17:58:36.0992] [1] Evaluated [Rule:CannotAccessAD] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0009993] +[03/07/2021 17:58:36.0992] [1] Finished [Rule:CannotAccessAD] [Duration:00:00:00.0020012] +[03/07/2021 17:58:36.0992] [1] Evaluated [Rule:WinRMServiceDisabledOrNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:105] [Duration:00:00:00.0029984] +[03/07/2021 17:58:36.0992] [1] Started [Rule:E16E12CoexistenceMinVersionRequirement] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0992] [1] Finished [Rule:WinRMServiceDisabledOrNotInstalled] [Duration:00:00:00.0029984] +[03/07/2021 17:58:36.0992] [1] Started [Rule:ValidOSVersion] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0992] [1] Evaluated [Rule:ShouldReRunSetupForW3SVC] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0009993] +[03/07/2021 17:58:36.0992] [1] Evaluated [Setting:OrgDN] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0210005] +[03/07/2021 17:58:36.0992] [1] Finished [Setting:OrgDN] [Duration:00:00:00.0210005] +[03/07/2021 17:58:36.0992] [1] Finished [Rule:ShouldReRunSetupForW3SVC] [Duration:00:00:00.0009993] +[03/07/2021 17:58:36.0992] [1] Started [Rule:SMTPSvcInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0993] [1] Started [Setting:E12ServersNotMinVersionRequirement] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0994] [1] Started [Setting:SpeechRedist] [Parent:RootAnalysisMember] [ValueType:String[]] +[03/07/2021 17:58:36.0995] [1] Started [Setting:SMTPSvcStartMode] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0995] [1] Evaluated [Setting:IIS7ManagementConsole] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:11] [Duration:00:00:00.0309932] +[03/07/2021 17:58:36.0995] [1] Finished [Setting:IIS7ManagementConsole] [Duration:00:00:00.0309932] +[03/07/2021 17:58:36.0996] [1] Evaluated [Rule:LonghornIIS7ManagementConsoleInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:11] [Duration:00:00:00.0529981] +[03/07/2021 17:58:36.0996] [1] Evaluated [Setting:SMTPSvcStartMode] [HasException:True] [Value: +Expected failure for SMTPSvcStartMode:The registry key, HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\SMTPSVC, wasn't found. +] [ParentValue:""] [Thread:27] [Duration:00:00:00.0010021] +[03/07/2021 17:58:36.0996] [1] Finished [Setting:SMTPSvcStartMode] [Duration:00:00:00.0010021] +[03/07/2021 17:58:36.0996] [1] Evaluated [Rule:SMTPSvcInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0040006] +[03/07/2021 17:58:36.0996] [1] Finished [Rule:SMTPSvcInstalled] [Duration:00:00:00.0040006] +[03/07/2021 17:58:36.0996] [1] Finished [Rule:LonghornIIS7ManagementConsoleInstalled] [Duration:00:00:00.0529981] +[03/07/2021 17:58:36.0996] [1] Started [Rule:WindowsInstallerServiceDisabledOrNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0996] [1] Started [Rule:LonghornIIS6MetabaseNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0996] [1] Evaluated [Setting:SidExOrgAdmins] [HasException:False] [Value:"S-1-5-21-202946143-569565639-14688292-1105"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0279994] +[03/07/2021 17:58:36.0996] [1] Finished [Setting:SidExOrgAdmins] [Duration:00:00:00.0279994] +[03/07/2021 17:58:36.0996] [1] Evaluated [Setting:ExOrgAdmin] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0309989] +[03/07/2021 17:58:36.0996] [1] Finished [Setting:ExOrgAdmin] [Duration:00:00:00.0309989] +[03/07/2021 17:58:36.0996] [1] Evaluated [Rule:DelegatedCafeFirstInstall] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0759981] +[03/07/2021 17:58:36.0996] [1] Finished [Rule:DelegatedCafeFirstInstall] [Duration:00:00:00.0759981] +[03/07/2021 17:58:36.0996] [1] Started [Rule:DelegatedMailboxFirstInstall] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0996] [1] Evaluated [Rule:DelegatedFrontendTransportFirstInstall] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0509987] +[03/07/2021 17:58:36.0996] [1] Finished [Rule:DelegatedFrontendTransportFirstInstall] [Duration:00:00:00.0509987] +[03/07/2021 17:58:36.0996] [1] Started [Rule:DelegatedUnifiedMessagingFirstInstall] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:36.0998] [1] Started [Setting:UnifiedMessagingRoleOfEqualOrHigherVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0998] [1] Started [Setting:MailboxRoleOfEqualOrHigherVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:36.0999] [1] Started [Setting:WindowsInstallerServiceStartMode] [Parent:RootAnalysisMember] [ValueType:Int32] +[03/07/2021 17:58:36.0999] [1] Evaluated [Setting:WindowsInstallerServiceStartMode] [HasException:False] [Value:"3"] [ParentValue:""] [Thread:11] [Duration:00:00:00] +[03/07/2021 17:58:36.0999] [1] Finished [Setting:WindowsInstallerServiceStartMode] [Duration:00:00:00.0009999] +[03/07/2021 17:58:36.0999] [1] Evaluated [Rule:WindowsInstallerServiceDisabledOrNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:11] [Duration:00:00:00.0030004] +[03/07/2021 17:58:36.0999] [1] Finished [Rule:WindowsInstallerServiceDisabledOrNotInstalled] [Duration:00:00:00.0030004] +[03/07/2021 17:58:37.0000] [1] Started [Rule:WarnMapiHttpNotEnabled] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:37.0000] [1] Started [Setting:MicrosoftExchAdminGroupsUnifiedMessagingRoleConfig] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:37.0001] [1] Evaluated [Setting:RootDN] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0150004] +[03/07/2021 17:58:37.0001] [1] Finished [Setting:RootDN] [Duration:00:00:00.0150004] +[03/07/2021 17:58:37.0001] [1] Evaluated [Setting:NtMixedDomainRoot] [HasException:False] [Value:"0"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0180009] +[03/07/2021 17:58:37.0001] [1] Finished [Setting:NtMixedDomainRoot] [Duration:00:00:00.0180009] +[03/07/2021 17:58:37.0001] [1] Evaluated [Rule:RootDomainModeMixed] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0190002] +[03/07/2021 17:58:37.0001] [1] Finished [Rule:RootDomainModeMixed] [Duration:00:00:00.0190002] +[03/07/2021 17:58:37.0001] [1] Started [Rule:AdditionalUMLangPackExists] [Parent:LanguageInUMServer] [RuleType:Error] +[03/07/2021 17:58:37.0005] [1] Started [Setting:MicrosoftExchAdminGroupsMailboxRoleConfig] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:37.0008] [1] Evaluated [Setting:E12ServersNotMinVersionRequirement] [HasException:False] [Value:""] [ParentValue:""] [Thread:14] [Duration:00:00:00.0150050] +[03/07/2021 17:58:37.0008] [1] Finished [Setting:E12ServersNotMinVersionRequirement] [Duration:00:00:00.0150050] +[03/07/2021 17:58:37.0008] [1] Evaluated [Rule:E16E12CoexistenceMinVersionRequirement] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0160060] +[03/07/2021 17:58:37.0008] [1] Finished [Rule:E16E12CoexistenceMinVersionRequirement] [Duration:00:00:00.0160060] +[03/07/2021 17:58:37.0008] [1] Started [Rule:E16E14CoexistenceMinVersionRequirement] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0009] [1] Evaluated [Setting:SpeechRedist] [HasException:False] [Value:"System.String[]"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0150025] +[03/07/2021 17:58:37.0009] [1] Finished [Setting:SpeechRedist] [Duration:00:00:00.0150025] +[03/07/2021 17:58:37.0009] [1] Evaluated [Rule:SpeechRedistMsi] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0190036] +[03/07/2021 17:58:37.0009] [1] Finished [Rule:SpeechRedistMsi] [Duration:00:00:00.0190036] +[03/07/2021 17:58:37.0010] [1] Started [Setting:E14ServersNotMinVersionRequirement] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0012] [1] Started [Rule:Win7WindowsIdentityFoundationUpdateNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0013] [1] Evaluated [Rule:Win7WindowsIdentityFoundationUpdateNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0010009] +[03/07/2021 17:58:37.0013] [1] Finished [Rule:Win7WindowsIdentityFoundationUpdateNotInstalled] [Duration:00:00:00.0010009] +[03/07/2021 17:58:37.0013] [1] Started [Rule:Win8WindowsIdentityFoundationUpdateNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0014] [1] Started [Setting:IIS6MetabaseStatus] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0014] [1] Evaluated [Setting:MicrosoftExchAdminGroupsUnifiedMessagingRoleConfig] [HasException:False] [Value:""] [ParentValue:""] [Thread:104] [Duration:00:00:00.0140008] +[03/07/2021 17:58:37.0014] [1] Finished [Setting:MicrosoftExchAdminGroupsUnifiedMessagingRoleConfig] [Duration:00:00:00.0140008] +[03/07/2021 17:58:37.0014] [1] Finished [Setting:UnifiedMessagingRoleOfEqualOrHigherVersion] [Duration:00:00:00.0159990] +[03/07/2021 17:58:37.0014] [1] Evaluated [Rule:DelegatedUnifiedMessagingFirstInstall] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0169990] +[03/07/2021 17:58:37.0014] [1] Finished [Rule:DelegatedUnifiedMessagingFirstInstall] [Duration:00:00:00.0179995] +[03/07/2021 17:58:37.0014] [1] Started [Rule:DelegatedBridgeheadFirstSP1upgrade] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0014] [1] Evaluated [Setting:IIS6MetabaseStatus] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:27] [Duration:00:00:00] +[03/07/2021 17:58:37.0014] [1] Finished [Setting:IIS6MetabaseStatus] [Duration:00:00:00] +[03/07/2021 17:58:37.0014] [1] Evaluated [Rule:LonghornIIS6MetabaseNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0179995] +[03/07/2021 17:58:37.0014] [1] Finished [Rule:LonghornIIS6MetabaseNotInstalled] [Duration:00:00:00.0179995] +[03/07/2021 17:58:37.0014] [1] Started [Rule:LonghornIIS7HttpCompressionDynamicNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0016] [1] Started [Setting:IIS7CompressionDynamic] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0017] [1] Evaluated [Rule:DelegatedBridgeheadFirstSP1upgrade] [HasException:True] [Value: +System.NullReferenceException: Object reference not set to an instance of an object. + at Microsoft.Exchange.Management.Analysis.PrereqAnalysis.b__2400_190(Result`1 x) + at Microsoft.Exchange.Management.Analysis.Builders.RuleBuilder`1.<>c__DisplayClass2_0.b__0(Result x) +] [ParentValue:""] [Thread:104] [Duration:00:00:00.0024392] +[03/07/2021 17:58:37.0017] [1] Finished [Rule:DelegatedBridgeheadFirstSP1upgrade] [Duration:00:00:00.0030015] +[03/07/2021 17:58:37.0017] [1] Started [Rule:DelegatedUnifiedMessagingFirstSP1upgrade] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0017] [1] Evaluated [Setting:IIS7CompressionDynamic] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0005623] +[03/07/2021 17:58:37.0017] [1] Finished [Setting:IIS7CompressionDynamic] [Duration:00:00:00.0005623] +[03/07/2021 17:58:37.0017] [1] Evaluated [Rule:LonghornIIS7HttpCompressionDynamicNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0030015] +[03/07/2021 17:58:37.0017] [1] Finished [Rule:LonghornIIS7HttpCompressionDynamicNotInstalled] [Duration:00:00:00.0030015] +[03/07/2021 17:58:37.0017] [1] Started [Rule:LonghornIIS7HttpCompressionStaticNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0019] [1] Evaluated [Rule:DelegatedUnifiedMessagingFirstSP1upgrade] [HasException:True] [Value: +System.NullReferenceException: Object reference not set to an instance of an object. + at Microsoft.Exchange.Management.Analysis.PrereqAnalysis.b__2400_192(Result`1 x) + at Microsoft.Exchange.Management.Analysis.Builders.RuleBuilder`1.<>c__DisplayClass2_0.b__0(Result x) +] [ParentValue:""] [Thread:104] [Duration:00:00:00.0019991] +[03/07/2021 17:58:37.0019] [1] Finished [Rule:DelegatedUnifiedMessagingFirstSP1upgrade] [Duration:00:00:00.0019991] +[03/07/2021 17:58:37.0019] [1] Started [Rule:DelegatedClientAccessFirstSP1upgrade] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0021] [1] Evaluated [Rule:DelegatedClientAccessFirstSP1upgrade] [HasException:True] [Value: +System.NullReferenceException: Object reference not set to an instance of an object. + at Microsoft.Exchange.Management.Analysis.PrereqAnalysis.b__2400_194(Result`1 x) + at Microsoft.Exchange.Management.Analysis.Builders.RuleBuilder`1.<>c__DisplayClass2_0.b__0(Result x) +] [ParentValue:""] [Thread:104] [Duration:00:00:00.0021823] +[03/07/2021 17:58:37.0021] [1] Finished [Rule:DelegatedClientAccessFirstSP1upgrade] [Duration:00:00:00.0021823] +[03/07/2021 17:58:37.0021] [1] Started [Rule:DelegatedMailboxFirstSP1upgrade] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0023] [1] Evaluated [Setting:MicrosoftExchAdminGroupsMailboxRoleConfig] [HasException:False] [Value:""] [ParentValue:""] [Thread:24] [Duration:00:00:00.0181996] +[03/07/2021 17:58:37.0023] [1] Finished [Setting:MicrosoftExchAdminGroupsMailboxRoleConfig] [Duration:00:00:00.0181996] +[03/07/2021 17:58:37.0023] [1] Evaluated [Rule:DelegatedMailboxFirstSP1upgrade] [HasException:True] [Value: +System.NullReferenceException: Object reference not set to an instance of an object. + at Microsoft.Exchange.Management.Analysis.PrereqAnalysis.b__2400_196(Result`1 x) + at Microsoft.Exchange.Management.Analysis.Builders.RuleBuilder`1.<>c__DisplayClass2_0.b__0(Result x) +] [ParentValue:""] [Thread:104] [Duration:00:00:00.0020165] +[03/07/2021 17:58:37.0023] [1] Finished [Rule:DelegatedMailboxFirstSP1upgrade] [Duration:00:00:00.0020165] +[03/07/2021 17:58:37.0023] [1] Started [Rule:PrepareDomainNotAdmin] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0023] [1] Finished [Setting:MailboxRoleOfEqualOrHigherVersion] [Duration:00:00:00.0251984] +[03/07/2021 17:58:37.0023] [1] Evaluated [Rule:DelegatedMailboxFirstInstall] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0271989] +[03/07/2021 17:58:37.0024] [1] Finished [Rule:DelegatedMailboxFirstInstall] [Duration:00:00:00.0271989] +[03/07/2021 17:58:37.0024] [1] Started [Rule:DelegatedClientAccessFirstInstall] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0026] [1] Started [Setting:ClientAccessRoleOfEqualOrHigherVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0026] [1] Evaluated [Rule:PrepareDomainNotAdmin] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0029116] +[03/07/2021 17:58:37.0026] [1] Finished [Rule:PrepareDomainNotAdmin] [Duration:00:00:00.0029116] +[03/07/2021 17:58:37.0026] [1] Started [Rule:NoE15ServerWarning] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:37.0028] [1] Started [Setting:E15ServerInTopology] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0034] [1] Started [Setting:MicrosoftExchAdminGroupsClientAccessRoleConfig] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:37.0036] [1] Evaluated [Setting:E14ServersNotMinVersionRequirement] [HasException:False] [Value:""] [ParentValue:""] [Thread:14] [Duration:00:00:00.0260003] +[03/07/2021 17:58:37.0036] [1] Finished [Setting:E14ServersNotMinVersionRequirement] [Duration:00:00:00.0260003] +[03/07/2021 17:58:37.0036] [1] Evaluated [Rule:E16E14CoexistenceMinVersionRequirement] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0279951] +[03/07/2021 17:58:37.0036] [1] Finished [Rule:E16E14CoexistenceMinVersionRequirement] [Duration:00:00:00.0279951] +[03/07/2021 17:58:37.0036] [1] Started [Rule:E16E15CoexistenceMinVersionRequirement] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0036] [1] Started [Setting:IIS7CompressionStatic] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0037] [1] Evaluated [Rule:Win8WindowsIdentityFoundationUpdateNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0230007] +[03/07/2021 17:58:37.0037] [1] Finished [Rule:Win8WindowsIdentityFoundationUpdateNotInstalled] [Duration:00:00:00.0240013] +[03/07/2021 17:58:37.0037] [1] Started [Rule:MailboxRoleNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0037] [1] Evaluated [Setting:IIS7CompressionStatic] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:27] [Duration:00:00:00] +[03/07/2021 17:58:37.0037] [1] Finished [Setting:IIS7CompressionStatic] [Duration:00:00:00.0009997] +[03/07/2021 17:58:37.0037] [1] Evaluated [Rule:LonghornIIS7HttpCompressionStaticNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0199992] +[03/07/2021 17:58:37.0037] [1] Started [Setting:E15ServersNotMinVersionRequirement] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0038] [1] Finished [Rule:LonghornIIS7HttpCompressionStaticNotInstalled] [Duration:00:00:00.0199992] +[03/07/2021 17:58:37.0038] [1] Started [Rule:LonghornWASProcessModelInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0039] [1] Started [Setting:WASProcessModel] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0041] [1] Evaluated [Setting:WASProcessModel] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0020035] +[03/07/2021 17:58:37.0041] [1] Finished [Setting:WASProcessModel] [Duration:00:00:00.0020035] +[03/07/2021 17:58:37.0041] [1] Evaluated [Rule:LonghornWASProcessModelInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0030041] +[03/07/2021 17:58:37.0041] [1] Finished [Rule:LonghornWASProcessModelInstalled] [Duration:00:00:00.0030041] +[03/07/2021 17:58:37.0042] [1] Started [Rule:LonghornIIS7BasicAuthNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0047] [1] Started [Setting:IIS7BasicAuthentication] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0048] [1] Evaluated [Setting:IIS7BasicAuthentication] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0009997] +[03/07/2021 17:58:37.0048] [1] Finished [Setting:IIS7BasicAuthentication] [Duration:00:00:00.0009997] +[03/07/2021 17:58:37.0048] [1] Evaluated [Rule:LonghornIIS7BasicAuthNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0060016] +[03/07/2021 17:58:37.0048] [1] Finished [Rule:LonghornIIS7BasicAuthNotInstalled] [Duration:00:00:00.0069960] +[03/07/2021 17:58:37.0048] [1] Started [Rule:LonghornIIS7WindowsAuthNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0049] [1] Evaluated [Setting:E15ServerInTopology] [HasException:False] [Value:""] [ParentValue:""] [Thread:104] [Duration:00:00:00.0208924] +[03/07/2021 17:58:37.0049] [1] Finished [Setting:E15ServerInTopology] [Duration:00:00:00.0208924] +[03/07/2021 17:58:37.0049] [1] Evaluated [Setting:MicrosoftExchAdminGroupsClientAccessRoleConfig] [HasException:False] [Value:""] [ParentValue:""] [Thread:24] [Duration:00:00:00.0139995] +[03/07/2021 17:58:37.0049] [1] Finished [Setting:MicrosoftExchAdminGroupsClientAccessRoleConfig] [Duration:00:00:00.0150011] +[03/07/2021 17:58:37.0049] [1] Finished [Setting:ClientAccessRoleOfEqualOrHigherVersion] [Duration:00:00:00.0228887] +[03/07/2021 17:58:37.0049] [1] Evaluated [Rule:DelegatedClientAccessFirstInstall] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0249021] +[03/07/2021 17:58:37.0049] [1] Finished [Rule:DelegatedClientAccessFirstInstall] [Duration:00:00:00.0249021] +[03/07/2021 17:58:37.0050] [1] Started [Rule:DNSDomainNameNotValid] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0051] [1] Started [Setting:ComputerNameDnsDomain] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0051] [1] Started [Setting:E16ServerInTopology] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0051] [1] Evaluated [Setting:ComputerNameDnsDomain] [HasException:False] [Value:"Solo.local"] [ParentValue:""] [Thread:24] [Duration:00:00:00] +[03/07/2021 17:58:37.0051] [1] Finished [Setting:ComputerNameDnsDomain] [Duration:00:00:00] +[03/07/2021 17:58:37.0052] [1] Evaluated [Rule:DNSDomainNameNotValid] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0019928] +[03/07/2021 17:58:37.0052] [1] Finished [Rule:DNSDomainNameNotValid] [Duration:00:00:00.0029995] +[03/07/2021 17:58:37.0052] [1] Started [Rule:AdcFound] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0053] [1] Started [Setting:AdcServer] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0056] [1] Evaluated [Setting:E15ServersNotMinVersionRequirement] [HasException:False] [Value:""] [ParentValue:""] [Thread:14] [Duration:00:00:00.0189991] +[03/07/2021 17:58:37.0056] [1] Finished [Setting:E15ServersNotMinVersionRequirement] [Duration:00:00:00.0189991] +[03/07/2021 17:58:37.0056] [1] Evaluated [Rule:E16E15CoexistenceMinVersionRequirement] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0199988] +[03/07/2021 17:58:37.0056] [1] Finished [Rule:E16E15CoexistenceMinVersionRequirement] [Duration:00:00:00.0199988] +[03/07/2021 17:58:37.0056] [1] Started [Rule:E16E14CoexistenceMinVersionRequirementForDC] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:37.0057] [1] Started [Setting:IIS7WindowAuthentication] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0057] [1] Evaluated [Rule:E16E14CoexistenceMinVersionRequirementForDC] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0009998] +[03/07/2021 17:58:37.0058] [1] Finished [Rule:E16E14CoexistenceMinVersionRequirementForDC] [Duration:00:00:00.0020051] +[03/07/2021 17:58:37.0058] [1] Started [Rule:E16E15CoexistenceMinVersionRequirementForDC] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:37.0059] [1] Evaluated [Setting:IIS7WindowAuthentication] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0019985] +[03/07/2021 17:58:37.0059] [1] Finished [Setting:IIS7WindowAuthentication] [Duration:00:00:00.0019985] +[03/07/2021 17:58:37.0059] [1] Evaluated [Rule:E16E15CoexistenceMinVersionRequirementForDC] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0009932] +[03/07/2021 17:58:37.0059] [1] Finished [Rule:E16E15CoexistenceMinVersionRequirementForDC] [Duration:00:00:00.0009932] +[03/07/2021 17:58:37.0059] [1] Evaluated [Rule:LonghornIIS7WindowsAuthNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0109977] +[03/07/2021 17:58:37.0059] [1] Started [Rule:MsDSBehaviorVersionRequirement] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0059] [1] Finished [Rule:LonghornIIS7WindowsAuthNotInstalled] [Duration:00:00:00.0109977] +[03/07/2021 17:58:37.0059] [1] Started [Rule:LonghornIIS7DigestAuthNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0060] [1] Evaluated [Setting:E16ServerInTopology] [HasException:False] [Value:"SOLO-E16A"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0089969] +[03/07/2021 17:58:37.0060] [1] Finished [Setting:E16ServerInTopology] [Duration:00:00:00.0089969] +[03/07/2021 17:58:37.0060] [1] Evaluated [Rule:NoE15ServerWarning] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0338861] +[03/07/2021 17:58:37.0060] [1] Finished [Rule:NoE15ServerWarning] [Duration:00:00:00.0338861] +[03/07/2021 17:58:37.0060] [1] Started [Rule:NoE14ServerWarning] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:37.0062] [1] Started [Setting:HostFQDNCheck] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0062] [1] Started [Setting:E14ServerInTopology] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0063] [1] Evaluated [Setting:HostFQDNCheck] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0010001] +[03/07/2021 17:58:37.0063] [1] Finished [Setting:HostFQDNCheck] [Duration:00:00:00.0010001] +[03/07/2021 17:58:37.0063] [1] Started [Setting:MsDSBehaviorVersion] [Parent:RootAnalysisMember] [ValueType:Int32] +[03/07/2021 17:58:37.0067] [1] Finished [Setting:AdcServer] [Duration:00:00:00.0139995] +[03/07/2021 17:58:37.0067] [1] Evaluated [Rule:AdcFound] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0149985] +[03/07/2021 17:58:37.0067] [1] Finished [Rule:AdcFound] [Duration:00:00:00.0149985] +[03/07/2021 17:58:37.0067] [1] Started [Rule:AdInitErrorRule] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0068] [1] Started [Setting:IIS7DigestAuthentication] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0068] [1] Evaluated [Setting:IIS7DigestAuthentication] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:27] [Duration:00:00:00] +[03/07/2021 17:58:37.0071] [1] Finished [Setting:IIS7DigestAuthentication] [Duration:00:00:00] +[03/07/2021 17:58:37.0071] [1] Evaluated [Rule:LonghornIIS7DigestAuthNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0120057] +[03/07/2021 17:58:37.0071] [1] Finished [Rule:LonghornIIS7DigestAuthNotInstalled] [Duration:00:00:00.0120057] +[03/07/2021 17:58:37.0071] [1] Started [Rule:LonghornIIS7NetExt] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0071] [1] Started [Setting:AdInitError] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0072] [1] Evaluated [Setting:AdInitError] [HasException:False] [Value:""] [ParentValue:""] [Thread:24] [Duration:00:00:00.0009953] +[03/07/2021 17:58:37.0072] [1] Finished [Setting:AdInitError] [Duration:00:00:00.0009953] +[03/07/2021 17:58:37.0072] [1] Evaluated [Rule:AdInitErrorRule] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0050014] +[03/07/2021 17:58:37.0072] [1] Finished [Rule:AdInitErrorRule] [Duration:00:00:00.0050014] +[03/07/2021 17:58:37.0072] [1] Started [Rule:NoConnectorToStar] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:37.0073] [1] Evaluated [Setting:E14ServerInTopology] [HasException:False] [Value:""] [ParentValue:""] [Thread:104] [Duration:00:00:00.0110021] +[03/07/2021 17:58:37.0073] [1] Finished [Setting:E14ServerInTopology] [Duration:00:00:00.0110021] +[03/07/2021 17:58:37.0073] [1] Evaluated [Rule:NoE14ServerWarning] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0130025] +[03/07/2021 17:58:37.0073] [1] Finished [Rule:NoE14ServerWarning] [Duration:00:00:00.0130025] +[03/07/2021 17:58:37.0073] [1] Started [Rule:NotInSchemaMasterDomain] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0073] [1] Started [Setting:E15orHigherHubAlreadyExists] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0077] [1] Started [Setting:ComputerDomainDN] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0078] [1] Started [Setting:MicrosoftExchServicesConfigBridgeheadRoleInTopology] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:37.0081] [1] Evaluated [Rule:LonghornIIS7NetExt] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0099946] +[03/07/2021 17:58:37.0081] [1] Finished [Rule:LonghornIIS7NetExt] [Duration:00:00:00.0099946] +[03/07/2021 17:58:37.0081] [1] Started [Rule:LonghornIIS6WMICompatibility] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0083] [1] Evaluated [Setting:MsDSBehaviorVersion] [HasException:False] [Value:"7"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0200039] +[03/07/2021 17:58:37.0083] [1] Finished [Setting:MsDSBehaviorVersion] [Duration:00:00:00.0200039] +[03/07/2021 17:58:37.0083] [1] Started [Setting:MsDSBehaviorVersionDomain] [Parent:RootAnalysisMember] [ValueType:Int32] +[03/07/2021 17:58:37.0084] [1] Started [Setting:ComputerDomain] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0119] [1] Evaluated [Setting:MsDSBehaviorVersionDomain] [HasException:True] [Value: +System.DirectoryServices.DirectoryServicesCOMException (0x80072030): There is no such object on the server. + + at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail) + at System.DirectoryServices.DirectoryEntry.Bind() + at System.DirectoryServices.DirectoryEntry.get_AdsObject() + at System.DirectoryServices.DirectorySearcher.FindAll(Boolean findMoreThanOne) + at Microsoft.Exchange.Management.Deployment.ADProvider.Run(Boolean useGC, String directoryEntry, String[] listOfPropertiesToCollect, String filter, SearchScope searchScope) + at Microsoft.Exchange.Management.Analysis.PrereqAnalysis.b__2400_116(Result`1 x) + at Microsoft.Exchange.Management.Analysis.Builders.SettingBuilder`2.<>c__DisplayClass2_0.b__0(Result x) +] [ParentValue:""] [Thread:14] [Duration:00:00:00.0359969] +[03/07/2021 17:58:37.0119] [1] Finished [Setting:MsDSBehaviorVersionDomain] [Duration:00:00:00.0359969] +[03/07/2021 17:58:37.0119] [1] Evaluated [Rule:MsDSBehaviorVersionRequirement] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0600003] +[03/07/2021 17:58:37.0119] [1] Finished [Rule:MsDSBehaviorVersionRequirement] [Duration:00:00:00.0600003] +[03/07/2021 17:58:37.0119] [1] Started [Rule:WindowsServer2008CoreServerEdition] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0120] [1] Evaluated [Setting:MicrosoftExchServicesConfigBridgeheadRoleInTopology] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0419981] +[03/07/2021 17:58:37.0120] [1] Finished [Setting:MicrosoftExchServicesConfigBridgeheadRoleInTopology] [Duration:00:00:00.0419981] +[03/07/2021 17:58:37.0120] [1] Evaluated [Setting:E15orHigherHubAlreadyExists] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0469968] +[03/07/2021 17:58:37.0120] [1] Finished [Setting:E15orHigherHubAlreadyExists] [Duration:00:00:00.0469968] +[03/07/2021 17:58:37.0120] [1] Started [Setting:ConnectorToStar] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0121] [1] Evaluated [Rule:WindowsServer2008CoreServerEdition] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0019992] +[03/07/2021 17:58:37.0121] [1] Finished [Rule:WindowsServer2008CoreServerEdition] [Duration:00:00:00.0019992] +[03/07/2021 17:58:37.0121] [1] Started [Rule:LoggedOntoDomain] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0121] [1] Started [Setting:IIS6WMICompatibility] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0122] [1] Evaluated [Setting:IIS6WMICompatibility] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0009989] +[03/07/2021 17:58:37.0122] [1] Finished [Setting:IIS6WMICompatibility] [Duration:00:00:00.0009989] +[03/07/2021 17:58:37.0122] [1] Evaluated [Rule:LonghornIIS6WMICompatibility] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0409981] +[03/07/2021 17:58:37.0122] [1] Finished [Rule:LonghornIIS6WMICompatibility] [Duration:00:00:00.0409981] +[03/07/2021 17:58:37.0122] [1] Started [Rule:LonghornASPNET] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0122] [1] Started [Setting:CurrentLogOn] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0124] [1] Evaluated [Setting:OneCopyAlertProcessId] [HasException:False] [Value:"-1"] [ParentValue:""] [Thread:86] [Duration:00:00:00.3329905] +[03/07/2021 17:58:37.0124] [1] Finished [Setting:OneCopyAlertProcessId] [Duration:00:00:00.3349920] +[03/07/2021 17:58:37.0124] [1] Evaluated [Rule:LonghornASPNET] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0020015] +[03/07/2021 17:58:37.0124] [1] Finished [Rule:LonghornASPNET] [Duration:00:00:00.0020015] +[03/07/2021 17:58:37.0124] [1] Started [Rule:LonghornISAPIFilter] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0126] [1] Started [Setting:ISAPIFilter] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0127] [1] Evaluated [Setting:ISAPIFilter] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0009907] +[03/07/2021 17:58:37.0127] [1] Finished [Setting:ISAPIFilter] [Duration:00:00:00.0009907] +[03/07/2021 17:58:37.0127] [1] Evaluated [Rule:LonghornISAPIFilter] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0029993] +[03/07/2021 17:58:37.0127] [1] Finished [Rule:LonghornISAPIFilter] [Duration:00:00:00.0029993] +[03/07/2021 17:58:37.0127] [1] Started [Rule:LonghornClientCertificateMappingAuthentication] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0128] [1] Evaluated [Setting:CurrentLogOn] [HasException:False] [Value:"SOLO\Han"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0060092] +[03/07/2021 17:58:37.0128] [1] Finished [Setting:CurrentLogOn] [Duration:00:00:00.0060092] +[03/07/2021 17:58:37.0129] [1] Evaluated [Setting:ConnectorToStar] [HasException:False] [Value:""] [ParentValue:""] [Thread:24] [Duration:00:00:00.0080093] +[03/07/2021 17:58:37.0129] [1] Finished [Setting:ConnectorToStar] [Duration:00:00:00.0089999] +[03/07/2021 17:58:37.0129] [1] Evaluated [Rule:NoConnectorToStar] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0569972] +[03/07/2021 17:58:37.0129] [1] Finished [Rule:NoConnectorToStar] [Duration:00:00:00.0569972] +[03/07/2021 17:58:37.0129] [1] Started [Rule:DuplicateShortProvisionedName] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0129] [1] Started [Setting:ClientCertificateMappingAuthentication] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0129] [1] Evaluated [Setting:NicCaption] [HasException:False] [Value:"[00000001] Microsoft Hyper-V Network Adapter"] [ParentValue:""] [Thread:47] [Duration:00:00:00.5339880] +[03/07/2021 17:58:37.0130] [1] Evaluated [Setting:ClientCertificateMappingAuthentication] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0010017] +[03/07/2021 17:58:37.0130] [1] Finished [Setting:ClientCertificateMappingAuthentication] [Duration:00:00:00.0010017] +[03/07/2021 17:58:37.0130] [1] Evaluated [Rule:LonghornClientCertificateMappingAuthentication] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0030007] +[03/07/2021 17:58:37.0130] [1] Finished [Rule:LonghornClientCertificateMappingAuthentication] [Duration:00:00:00.0030007] +[03/07/2021 17:58:37.0130] [1] Started [Rule:LonghornDirectoryBrowse] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0130] [1] Evaluated [Rule:DuplicateShortProvisionedName] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0010017] +[03/07/2021 17:58:37.0130] [1] Finished [Rule:DuplicateShortProvisionedName] [Duration:00:00:00.0010017] +[03/07/2021 17:58:37.0130] [1] Started [Rule:ForestLevelNotWin2003Native] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0131] [1] Evaluated [Rule:ForestLevelNotWin2003Native] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0010002] +[03/07/2021 17:58:37.0131] [1] Finished [Rule:ForestLevelNotWin2003Native] [Duration:00:00:00.0010002] +[03/07/2021 17:58:37.0131] [1] Started [Rule:AllServersOfHigherVersionRule] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0132] [1] Started [Setting:DirectoryBrowse] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0133] [1] Started [Setting:AllServersOfHigherVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0133] [1] Evaluated [Setting:DirectoryBrowse] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0009994] +[03/07/2021 17:58:37.0133] [1] Finished [Setting:DirectoryBrowse] [Duration:00:00:00.0009994] +[03/07/2021 17:58:37.0133] [1] Evaluated [Rule:LonghornDirectoryBrowse] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:27] [Duration:00:00:00.0029997] +[03/07/2021 17:58:37.0133] [1] Finished [Rule:LonghornDirectoryBrowse] [Duration:00:00:00.0029997] +[03/07/2021 17:58:37.0148] [1] Evaluated [Setting:AllServersOfHigherVersion] [HasException:False] [Value:""] [ParentValue:""] [Thread:24] [Duration:00:00:00.0150007] +[03/07/2021 17:58:37.0148] [1] Finished [Setting:AllServersOfHigherVersion] [Duration:00:00:00.0160001] +[03/07/2021 17:58:37.0148] [1] Evaluated [Rule:AllServersOfHigherVersionRule] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0170002] +[03/07/2021 17:58:37.0148] [1] Finished [Rule:AllServersOfHigherVersionRule] [Duration:00:00:00.0170002] +[03/07/2021 17:58:37.0148] [1] Started [Rule:LangPackBundleCheck] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0149] [1] Evaluated [Rule:LangPackBundleCheck] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0009990] +[03/07/2021 17:58:37.0149] [1] Finished [Rule:LangPackBundleCheck] [Duration:00:00:00.0009990] +[03/07/2021 17:58:37.0149] [1] Started [Rule:LangPackDiskSpaceCheck] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0150] [1] Evaluated [Rule:LangPackDiskSpaceCheck] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00] +[03/07/2021 17:58:37.0150] [1] Finished [Rule:LangPackDiskSpaceCheck] [Duration:00:00:00.0009994] +[03/07/2021 17:58:37.0150] [1] Started [Rule:LangPackInstalled] [Parent:RootAnalysisMember] [RuleType:Warning] +[03/07/2021 17:58:37.0150] [1] Evaluated [Rule:LangPackInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00] +[03/07/2021 17:58:37.0150] [1] Finished [Rule:LangPackInstalled] [Duration:00:00:00] +[03/07/2021 17:58:37.0150] [1] Started [Rule:LangPackUpgradeVersioning] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0151] [1] Evaluated [Rule:LangPackUpgradeVersioning] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0010045] +[03/07/2021 17:58:37.0151] [1] Finished [Rule:LangPackUpgradeVersioning] [Duration:00:00:00.0010045] +[03/07/2021 17:58:37.0151] [1] Started [Rule:Iis32BitMode] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0165] [1] Searching objects of type "SmtpSendConnectorConfig" with filter "$null", scope "SubTree" under the root "Administrative Groups". +[03/07/2021 17:58:37.0177] [1] Request filter in Get Task: (&(objectCategory=msExchRoutingSMTPConnector)(|(&(msExchVersion<=1125899906842624)(!(msExchVersion=1125899906842624)))(!(msExchVersion=*)))). +[03/07/2021 17:58:37.0196] [1] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 17:58:37.0196] [1] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 17:58:37.0203] [1] Ending processing Get-SendConnector +[03/07/2021 17:58:37.0209] [1] Evaluated [Rule:SendConnectorException] [HasException:False] [Value:"False"] [ParentValue:"System.DirectoryServices.ResultPropertyCollection"] [Thread:61] [Duration:00:00:00.4859901] +[03/07/2021 17:58:37.0209] [1] Finished [Rule:SendConnectorException] [Duration:00:00:00.4859901] +[03/07/2021 17:58:37.0253] [1] Evaluated [Setting:NicConfiguration] [HasException:False] [Value:"System.Collections.Generic.Dictionary`2[System.String,System.Object]"] [ParentValue:"[00000001] Microsoft Hyper-V Network Adapter"] [Thread:47] [Duration:00:00:00.6579869] +[03/07/2021 17:58:37.0256] [1] Evaluated [Setting:DnsAddress] [HasException:False] [Value:"192.168.5.10"] [ParentValue:"System.Collections.Generic.Dictionary`2[System.String,System.Object]"] [Thread:47] [Duration:00:00:00.6629881] +[03/07/2021 17:58:37.0256] [1] Evaluated [Setting:PrimaryDns] [HasException:False] [Value:"192.168.5.10"] [ParentValue:""] [Thread:47] [Duration:00:00:00.6689878] +[03/07/2021 17:58:37.0256] [1] Finished [Setting:PrimaryDns] [Duration:00:00:00.6689878] +[03/07/2021 17:58:37.0263] [1] Evaluated [Rule:Iis32BitMode] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.1119946] +[03/07/2021 17:58:37.0263] [1] Finished [Rule:Iis32BitMode] [Duration:00:00:00.1119946] +[03/07/2021 17:58:37.0263] [1] Started [Rule:SchemaUpdateRequired] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0265] [1] Started [Setting:SchemaAdmin] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0267] [1] Started [Setting:SidRootDomain] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0270] [1] Evaluated [Setting:SidRootDomain] [HasException:False] [Value:"S-1-5-21-202946143-569565639-14688292"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0019998] +[03/07/2021 17:58:37.0270] [1] Finished [Setting:SidRootDomain] [Duration:00:00:00.0030016] +[03/07/2021 17:58:37.0270] [1] Evaluated [Setting:SchemaAdmin] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0050013] +[03/07/2021 17:58:37.0270] [1] Finished [Setting:SchemaAdmin] [Duration:00:00:00.0050013] +[03/07/2021 17:58:37.0270] [1] Started [Setting:EnterpriseAdmin] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0270] [1] Evaluated [Setting:HostRecord] [HasException:False] [Value:"System.Collections.Generic.Dictionary`2[System.String,System.Object[]]"] [ParentValue:""] [Thread:48] [Duration:00:00:00.6849847] +[03/07/2021 17:58:37.0270] [1] Finished [Setting:HostRecord] [Duration:00:00:00.6849847] +[03/07/2021 17:58:37.0270] [1] Evaluated [Rule:HostRecordMissing] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:48] [Duration:00:00:00.7029848] +[03/07/2021 17:58:37.0270] [1] Finished [Rule:HostRecordMissing] [Duration:00:00:00.7029848] +[03/07/2021 17:58:37.0273] [1] Evaluated [Setting:EnterpriseAdmin] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0030063] +[03/07/2021 17:58:37.0273] [1] Finished [Setting:EnterpriseAdmin] [Duration:00:00:00.0030063] +[03/07/2021 17:58:37.0273] [1] Evaluated [Rule:SchemaUpdateRequired] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0100053] +[03/07/2021 17:58:37.0273] [1] Finished [Rule:SchemaUpdateRequired] [Duration:00:00:00.0100053] +[03/07/2021 17:58:37.0273] [1] Started [Rule:AdUpdateRequired] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0275] [1] Started [Setting:HasExtendedRightsCreateChildPerms] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0276] [1] Started [Setting:ExtendedRightsNtSecurityDescriptor] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0285] [1] Evaluated [Setting:ExtendedRightsNtSecurityDescriptor] [HasException:False] [Value:"0100048CB0000000CC000000000000001400000004009C0005000000000014009400020001010000000000050B00000000002400BF010E000105000000000005150000005FB6180CC7E1F2212420E0000702000000001400FF010F0001010000000000051200000000122400FF010F000105000000000005150000005FB6180CC7E1F2212420E0000702000000122400BD010F000105000000000005150000005FB6180CC7E1F2212420E000000200000105000000000005150000005FB6180CC7E1F2212420E000070200000105000000000005150000005FB6180CC7E1F2212420E00007020000"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0096418] +[03/07/2021 17:58:37.0285] [1] Finished [Setting:ExtendedRightsNtSecurityDescriptor] [Duration:00:00:00.0096418] +[03/07/2021 17:58:37.0300] [1] Evaluated [Setting:HasExtendedRightsCreateChildPerms] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0249989] +[03/07/2021 17:58:37.0300] [1] Finished [Setting:HasExtendedRightsCreateChildPerms] [Duration:00:00:00.0249989] +[03/07/2021 17:58:37.0301] [1] Evaluated [Rule:AdUpdateRequired] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0279903] +[03/07/2021 17:58:37.0301] [1] Finished [Rule:AdUpdateRequired] [Duration:00:00:00.0279903] +[03/07/2021 17:58:37.0301] [1] Started [Rule:GlobalUpdateRequired] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0302] [1] Evaluated [Rule:GlobalUpdateRequired] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0010027] +[03/07/2021 17:58:37.0302] [1] Finished [Rule:GlobalUpdateRequired] [Duration:00:00:00.0010027] +[03/07/2021 17:58:37.0303] [1] Started [Rule:DomainPrepWithoutADUpdate] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0312] [1] Started [Setting:SchemaVersionRangeUpper] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0336] [1] Evaluated [Setting:SchemaVersionRangeUpper] [HasException:False] [Value:"15332"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0109978] +[03/07/2021 17:58:37.0336] [1] Finished [Setting:SchemaVersionRangeUpper] [Duration:00:00:00.0239978] +[03/07/2021 17:58:37.0337] [1] Started [Setting:ExchangeServersGroupAMAccountName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0340] [1] Started [Setting:ExchangeServicesConfigExchangeServersGroup] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:37.0345] [1] Started [Setting:ExchangeServersGroupOtherWellKnownObjects] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0348] [1] Evaluated [Setting:ExchangeServersGroupOtherWellKnownObjects] [HasException:False] [Value:"CN=Exchange Servers,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0029996] +[03/07/2021 17:58:37.0348] [1] Finished [Setting:ExchangeServersGroupOtherWellKnownObjects] [Duration:00:00:00.0039996] +[03/07/2021 17:58:37.0351] [1] Evaluated [Setting:ExchangeServicesConfigExchangeServersGroup] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0110005] +[03/07/2021 17:58:37.0351] [1] Finished [Setting:ExchangeServicesConfigExchangeServersGroup] [Duration:00:00:00.0110005] +[03/07/2021 17:58:37.0351] [1] Evaluated [Setting:ExchangeServersGroupAMAccountName] [HasException:False] [Value:"Exchange Servers"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0139998] +[03/07/2021 17:58:37.0351] [1] Finished [Setting:ExchangeServersGroupAMAccountName] [Duration:00:00:00.0139998] +[03/07/2021 17:58:37.0352] [1] Evaluated [Rule:DomainPrepWithoutADUpdate] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0489949] +[03/07/2021 17:58:37.0352] [1] Finished [Rule:DomainPrepWithoutADUpdate] [Duration:00:00:00.0489949] +[03/07/2021 17:58:37.0352] [1] Started [Rule:LocalDomainPrep] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0355] [1] Started [Setting:LocalDomainAdmin] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0357] [1] Started [Setting:LocalDomainNtSecurityDescriptor] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0359] [1] Started [Setting:LocalComputerDomainDN] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:37.0373] [1] Evaluated [Rule:RemoteRegException] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:62] [Duration:00:00:00.6439858] +[03/07/2021 17:58:37.0373] [1] Finished [Rule:RemoteRegException] [Duration:00:00:00.6439858] +[03/07/2021 17:58:37.0408] [1] Evaluated [Setting:DebugVersion] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:8] [Duration:00:00:00.8299829] +[03/07/2021 17:58:37.0408] [1] Finished [Setting:DebugVersion] [Duration:00:00:00.8309824] +[03/07/2021 17:58:37.0408] [1] Evaluated [Rule:OSCheckedBuild] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:8] [Duration:00:00:00.8409815] +[03/07/2021 17:58:37.0408] [1] Finished [Rule:OSCheckedBuild] [Duration:00:00:00.8459825] +[03/07/2021 17:58:37.0415] [1] Evaluated [Setting:OSProductType] [HasException:False] [Value:"3"] [ParentValue:""] [Thread:65] [Duration:00:00:00.6549895] +[03/07/2021 17:58:37.0415] [1] Finished [Setting:OSProductType] [Duration:00:00:00.6549895] +[03/07/2021 17:58:37.0415] [1] Started [Setting:ValidOSSuite] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0415] [1] Evaluated [Setting:Windows8Version] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:65] [Duration:00:00:00.6669873] +[03/07/2021 17:58:37.0419] [1] Finished [Setting:Windows8Version] [Duration:00:00:00.6716225] +[03/07/2021 17:58:37.0420] [1] Started [Setting:SuiteMask] [Parent:RootAnalysisMember] [ValueType:UInt32] +[03/07/2021 17:58:37.0423] [1] Started [Setting:IsWcfHttpActivation45Installed] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0423] [1] Started [Setting:IsRsatClusteringMgmtInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0425] [1] Started [Setting:IsNETFramework45FeaturesInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0426] [1] Started [Setting:IsRsatClusteringCmdInterfaceInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0427] [1] Started [Setting:IsRsatClusteringPowerShellInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0428] [1] Started [Setting:IsWebASPNET45Installed] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0439] [1] Started [Setting:IsWebNetExt45Installed] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0443] [1] Active Directory session settings for 'Get-ResourceConfig' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:37.0444] [1] User specified parameters: +[03/07/2021 17:58:37.0444] [1] Beginning processing Get-ResourceConfig +[03/07/2021 17:58:37.0466] [1] Searching objects of type "ResourceBookingConfig" with filter "$null", scope "OneLevel" under the root "Global Settings". +[03/07/2021 17:58:37.0470] [1] Request filter in Get Task: (&(objectCategory=msExchResourceSchema)(|(&(msExchVersion<=1125899906842624)(!(msExchVersion=1125899906842624)))(!(msExchVersion=*)))). +[03/07/2021 17:58:37.0474] [1] Evaluated [Setting:LocalServerName] [HasException:False] [Value:"SOLO-E16A"] [ParentValue:""] [Thread:16] [Duration:00:00:00.5129930] +[03/07/2021 17:58:37.0475] [1] Finished [Setting:LocalServerName] [Duration:00:00:00.5129930] +[03/07/2021 17:58:37.0475] [1] Evaluated [Rule:LoggedOntoDomain] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.3539949] +[03/07/2021 17:58:37.0475] [1] Finished [Rule:LoggedOntoDomain] [Duration:00:00:00.3539949] +[03/07/2021 17:58:37.0475] [1] Started [Rule:LocalDomainModeMixed] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0475] [1] Evaluated [Rule:ServerNameNotValid] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:16] [Duration:00:00:00.5359911] +[03/07/2021 17:58:37.0475] [1] Finished [Rule:ServerNameNotValid] [Duration:00:00:00.5359911] +[03/07/2021 17:58:37.0509] [1] Started [Setting:NtMixedDomainComputerDomainDN] [Parent:RootAnalysisMember] [ValueType:Int32] +[03/07/2021 17:58:37.0509] [1] Evaluated [Setting:ComputerDomain] [HasException:False] [Value:"Solo.local"] [ParentValue:""] [Thread:104] [Duration:00:00:00.4249913] +[03/07/2021 17:58:37.0509] [1] Finished [Setting:ComputerDomain] [Duration:00:00:00.4249913] +[03/07/2021 17:58:37.0513] [1] Evaluated [Setting:ShortServerName] [HasException:False] [Value:"SOLO-E16A"] [ParentValue:""] [Thread:53] [Duration:00:00:00.7729852] +[03/07/2021 17:58:37.0513] [1] Finished [Setting:ShortServerName] [Duration:00:00:00.7729852] +[03/07/2021 17:58:37.0514] [1] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 17:58:37.0514] [1] Evaluated [Setting:ComputerDomainDN] [HasException:False] [Value:"DC=Solo,DC=local"] [ParentValue:""] [Thread:104] [Duration:00:00:00.4359927] +[03/07/2021 17:58:37.0514] [1] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 17:58:37.0516] [1] Finished [Setting:ComputerDomainDN] [Duration:00:00:00.4389944] +[03/07/2021 17:58:37.0516] [1] Started [Setting:DomainController] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0516] [1] Evaluated [Setting:DomainController] [HasException:False] [Value:"Solo-DC1.Solo.local"] [ParentValue:""] [Thread:24] [Duration:00:00:00] +[03/07/2021 17:58:37.0516] [1] Finished [Setting:DomainController] [Duration:00:00:00] +[03/07/2021 17:58:37.0519] [1] Evaluated [Setting:DomainRole] [HasException:False] [Value:"3"] [ParentValue:""] [Thread:46] [Duration:00:00:00.9229877] +[03/07/2021 17:58:37.0519] [1] Finished [Setting:DomainRole] [Duration:00:00:00.9229877] +[03/07/2021 17:58:37.0520] [1] Evaluated [Setting:LocalComputerDomainDN] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:24] [Duration:00:00:00.1609661] +[03/07/2021 17:58:37.0520] [1] Evaluated [Rule:ComputerNotPartofDomain] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:46] [Duration:00:00:00.9339794] +[03/07/2021 17:58:37.0520] [1] Finished [Rule:ComputerNotPartofDomain] [Duration:00:00:00.9569792] +[03/07/2021 17:58:37.0520] [1] Evaluated [Setting:LocalComputerIsDomainController] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:26] [Duration:00:00:00.6069871] +[03/07/2021 17:58:37.0520] [1] Finished [Setting:LocalComputerIsDomainController] [Duration:00:00:00.6069871] +[03/07/2021 17:58:37.0520] [1] Evaluated [Rule:InstallOnDCInADSplitPermissionMode] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:26] [Duration:00:00:00.6089826] +[03/07/2021 17:58:37.0520] [1] Finished [Rule:InstallOnDCInADSplitPermissionMode] [Duration:00:00:00.6089826] +[03/07/2021 17:58:37.0521] [1] Started [Setting:SmoSchemaDomain] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0523] [1] Finished [Setting:LocalComputerDomainDN] [Duration:00:00:00.1639665] +[03/07/2021 17:58:37.0523] [1] Evaluated [Setting:NtMixedDomainComputerDomainDN] [HasException:False] [Value:"0"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0139992] +[03/07/2021 17:58:37.0523] [1] Finished [Setting:NtMixedDomainComputerDomainDN] [Duration:00:00:00.0139992] +[03/07/2021 17:58:37.0523] [1] Evaluated [Rule:LocalDomainModeMixed] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0479974] +[03/07/2021 17:58:37.0523] [1] Finished [Rule:LocalDomainModeMixed] [Duration:00:00:00.0479974] +[03/07/2021 17:58:37.0523] [1] Started [Rule:DomainPrepRequired] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0523] [1] Started [Setting:ServerReference] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0523] [1] Evaluated [Setting:LocalDomainNtSecurityDescriptor] [HasException:False] [Value:"S-1-5-21-202946143-569565639-14688292"] [ParentValue:""] [Thread:24] [Duration:00:00:00.1659953] +[03/07/2021 17:58:37.0523] [1] Finished [Setting:LocalDomainNtSecurityDescriptor] [Duration:00:00:00.1659953] +[03/07/2021 17:58:37.0523] [1] Evaluated [Setting:LocalDomainAdmin] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:24] [Duration:00:00:00.1679741] +[03/07/2021 17:58:37.0523] [1] Finished [Setting:LocalDomainAdmin] [Duration:00:00:00.1679741] +[03/07/2021 17:58:37.0523] [1] Started [Setting:HasExchangeServersUSGBasicAccess] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0525] [1] Evaluated [Setting:ServerReference] [HasException:False] [Value:"CN=SOLO-DC1,OU=Domain Controllers,DC=Solo,DC=local"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0020006] +[03/07/2021 17:58:37.0525] [1] Finished [Setting:ServerReference] [Duration:00:00:00.0020006] +[03/07/2021 17:58:37.0525] [1] Evaluated [Setting:SmoSchemaDomain] [HasException:False] [Value:"DC=Solo,DC=local"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0039994] +[03/07/2021 17:58:37.0525] [1] Finished [Setting:SmoSchemaDomain] [Duration:00:00:00.0039994] +[03/07/2021 17:58:37.0525] [1] Evaluated [Rule:NotInSchemaMasterDomain] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.4519909] +[03/07/2021 17:58:37.0525] [1] Finished [Rule:NotInSchemaMasterDomain] [Duration:00:00:00.4519909] +[03/07/2021 17:58:37.0525] [1] Started [Rule:NotInSchemaMasterSite] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0525] [1] Started [Setting:LocalDomainIsPrepped] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0527] [1] Started [Setting:ExchangeServersGroupNtSecurityDescriptor] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0527] [1] Evaluated [Setting:MicrosoftExchServicesAdminGroupsConfig] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:53] [Duration:00:00:00.7909833] +[03/07/2021 17:58:37.0527] [1] Finished [Setting:MicrosoftExchServicesAdminGroupsConfig] [Duration:00:00:00.7909833] +[03/07/2021 17:58:37.0527] [1] Evaluated [Setting:ExchangeCurrentServerRoles] [HasException:False] [Value:"16439"] [ParentValue:""] [Thread:53] [Duration:00:00:00.7949832] +[03/07/2021 17:58:37.0527] [1] Finished [Setting:ExchangeCurrentServerRoles] [Duration:00:00:00.7949832] +[03/07/2021 17:58:37.0528] [1] Started [Setting:SiteName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0530] [1] Evaluated [Setting:SiteName] [HasException:False] [Value:"Default-First-Site-Name"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0020055] +[03/07/2021 17:58:37.0530] [1] Finished [Setting:SiteName] [Duration:00:00:00.0020055] +[03/07/2021 17:58:37.0530] [1] Evaluated [Rule:NotInSchemaMasterSite] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0050038] +[03/07/2021 17:58:37.0530] [1] Finished [Rule:NotInSchemaMasterSite] [Duration:00:00:00.0050038] +[03/07/2021 17:58:37.0530] [1] Started [Rule:ProvisionedUpdateRequired] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0530] [1] Evaluated [Setting:ExchangeServersGroupNtSecurityDescriptor] [HasException:False] [Value:"0100148CD4190000F0190000140000008C0000000400780002000000075A38002000000003000000BE3B0EF3F09FD111B6030000F80367C1A57A96BFE60DD011A28500AA003049E2010100000000000100000000075A38002000000003000000BF3B0EF3F09FD111B6030000F80367C1A57A96BFE60DD011A28500AA003049E20101000000000001000000000400481979000000050238003000000001000000C07996BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E0000002000005002C0010000000010000001DB1A946AE605A40B7E8FF8A58D456D201020000000000052000000030020000050028000001000001000000551A72AB2F1ED011981900AA0040529B01010000000000050B00000000002400FF010F000105000000000005150000005FB6180CC7E1F2212420E0000002000000022400FF010F000105000000000005150000005FB6180CC7E1F2212420E0005104000000001800FF010F0001020000000000052000000024020000000014009400020001010000000000050A000000000014009400020001010000000000050B00000000001400FF010F00010100000000000512000000051248002000000003000000C07996BFE60DD011A28500AA003049E29C7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E000600400000512380001000000010000009C7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E000600400000512380000000100020000009C7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E0006004000000122400FF010F000105000000000005150000005FB6180CC7E1F2212420E000510400000612380020000000010000008847A6F30653D111A9C50000F80367C10105000000000005150000005FB6180CC7E1F2212420E00060040000051A48000001000003000000531A72AB2F1ED011981900AA0040529BBA7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00062040000051A48000001000003000000709529006D24D011A76800AA006E0529BA7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00062040000051A4800070000000300000001C975C9EA6C6F4B8319D67F4544950614CC28483714BC459B07AD6F015E5F280105000000000005150000005FB6180CC7E1F2212420E0005F040000051A4800070000000300000001C975C9EA6C6F4B8319D67F45449506BA7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E0005F040000051A3C0010000000030000000042164CC020D011A76800AA006E052914CC28483714BC459B07AD6F015E5F280102000000000005200000002A020000051A3C0010000000030000000042164CC020D011A76800AA006E0529BA7A96BFE60DD011A28500AA003049E20102000000000005200000002A020000051A3C0010000000030000001020205FA579D011902000C04FC2D4CF14CC28483714BC459B07AD6F015E5F280102000000000005200000002A020000051A3C0010000000030000001020205FA579D011902000C04FC2D4CFBA7A96BFE60DD011A28500AA003049E20102000000000005200000002A020000051A3C00100000000300000040C20ABCA979D011902000C04FC2D4CF14CC28483714BC459B07AD6F015E5F280102000000000005200000002A020000051A3C00100000000300000040C20ABCA979D011902000C04FC2D4CFBA7A96BFE60DD011A28500AA003049E20102000000000005200000002A020000051A3C001000000003000000422FBA59A279D011902000C04FC2D3CF14CC28483714BC459B07AD6F015E5F280102000000000005200000002A020000051A3C001000000003000000422FBA59A279D011902000C04FC2D3CFBA7A96BFE60DD011A28500AA003049E20102000000000005200000002A020000051A3C001000000003000000F8887003E10AD211B42200A0C968F93914CC28483714BC459B07AD6F015E5F280102000000000005200000002A020000051A3C001000000003000000F8887003E10AD211B42200A0C968F939BA7A96BFE60DD011A28500AA003049E20102000000000005200000002A02000005123800010000000100000014CC28483714BC459B07AD6F015E5F280105000000000005150000005FB6180CC7E1F2212420E00062040000051238000100000001000000867A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E000620400000512380001000000010000009C7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00062040000051238000100000001000000A57A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00062040000051238000100000001000000BA7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00062040000051238000100000001000000D01EB45C4C0ED011A28600AA003049E20105000000000005150000005FB6180CC7E1F2212420E000620400000512380010000000010000000042164CC020D011A76800AA006E05290105000000000005150000005FB6180CC7E1F2212420E0005A04000005123800100000000100000017A4B3B155EC9141B327B72E33E38AF20105000000000005150000005FB6180CC7E1F2212420E0005F04000005123800100000000100000045D97A9A53CAD111BBD00080C76670C00105000000000005150000005FB6180CC7E1F2212420E0005F040000051238001000000001000000687A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E0005F040000051238001000000001000000898A291F98DEB847B5CD572AD53D267E0105000000000005150000005FB6180CC7E1F2212420E0005F040000051238001000000001000000917996BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E0005F040000051238001000000001000000A124D45F6212D011A06000AA006C33ED0105000000000005150000005FB6180CC7E1F2212420E0005F040000051238002000000001000000067A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00051040000051238002000000001000000067A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E000600400000512380020000000010000000A7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E000620400000512380020000000010000000EF6743E733ED111A9C00000F80367C10105000000000005150000005FB6180CC7E1F2212420E000510400000512380020000000010000000EF6743E733ED111A9C00000F80367C10105000000000005150000005FB6180CC7E1F2212420E0006004000005123800200000000100000017A4B3B155EC9141B327B72E33E38AF20105000000000005150000005FB6180CC7E1F2212420E0005104000005123800200000000100000017A4B3B155EC9141B327B72E33E38AF20105000000000005150000005FB6180CC7E1F2212420E000600400000512380020000000010000001A7996BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E000510400000512380020000000010000001A7996BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E000600400000512380020000000010000001E029A9A5B4AD111A9C30000F80367C10105000000000005150000005FB6180CC7E1F2212420E0005F04000005123800200000000100000020C19602DA40D111A9C00000F80367C10105000000000005150000005FB6180CC7E1F2212420E0006204000005123800200000000100000026E94D939EB0D211AA0600C04F8EEDD80105000000000005150000005FB6180CC7E1F2212420E0005F0400000512380020000000010000004738355E6CF3BE48A7F749685402503C0105000000000005150000005FB6180CC7E1F2212420E0005F04000005123800200000000100000050CA3B8D7E1DD011A08100AA006C33ED0105000000000005150000005FB6180CC7E1F2212420E0005F040000051238002000000001000000537996BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00051040000051238002000000001000000537996BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E0006004000005123800200000000100000054018DE4F8BCD111870200C04FB960500105000000000005150000005FB6180CC7E1F2212420E00060040000051238002000000001000000542F5B272D98CD4DB0ADE53501445EFB0105000000000005150000005FB6180CC7E1F2212420E0005F040000051238002000000001000000547996BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00051040000051238002000000001000000547996BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00060040000051238002000000001000000617996BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00051040000051238002000000001000000617996BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00060040000051238002000000001000000687A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E000620400000512380020000000010000007124D45F6212D011A06000AA006C33ED0105000000000005150000005FB6180CC7E1F2212420E0006204000005123800200000000100000077E73054EAC32440902EDDE1922046690105000000000005150000005FB6180CC7E1F2212420E0005F0400000512380020000000010000007960606F823A1B4C8EFBDCC8C91D26FE0105000000000005150000005FB6180CC7E1F2212420E0005F0400000512380020000000010000007A7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E000620400000512380020000000010000007F7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E0005F04000005123800200000000100000082EA4A61C6ABD04DA148D67A59C728160105000000000005150000005FB6180CC7E1F2212420E0005F04000005123800200000000100000084794366C5C38F49B269987819EF484B0105000000000005150000005FB6180CC7E1F2212420E0005F04000005123800200000000100000086B8B5774A94D111AEBD0000F80367C10105000000000005150000005FB6180CC7E1F2212420E000600400000512380020000000010000008974DFA8EAC5D111BBCB0080C76670C00105000000000005150000005FB6180CC7E1F2212420E000510400000512380020000000010000008974DFA8EAC5D111BBCB0080C76670C00105000000000005150000005FB6180CC7E1F2212420E00060040000051238002000000001000000898A291F98DEB847B5CD572AD53D267E0105000000000005150000005FB6180CC7E1F2212420E00051040000051238002000000001000000898A291F98DEB847B5CD572AD53D267E0105000000000005150000005FB6180CC7E1F2212420E000600400000512380020000000010000009AFFF8F09111D011A06000AA006C33ED0105000000000005150000005FB6180CC7E1F2212420E000510400000512380020000000010000009AFFF8F09111D011A06000AA006C33ED0105000000000005150000005FB6180CC7E1F2212420E0005F0400000512380020000000010000009AFFF8F09111D011A06000AA006C33ED0105000000000005150000005FB6180CC7E1F2212420E000600400000512380020000000010000009D6EC02C7E6F6A4288250215DE176E110105000000000005150000005FB6180CC7E1F2212420E0005F040000051238002000000001000000A124D45F6212D011A06000AA006C33ED0105000000000005150000005FB6180CC7E1F2212420E00051040000051238002000000001000000A124D45F6212D011A06000AA006C33ED0105000000000005150000005FB6180CC7E1F2212420E00060040000051238002000000001000000B8E363326BFD604C87F234BDAA9D69EB0105000000000005150000005FB6180CC7E1F2212420E0005F040000051238002000000001000000BC0E6328D541D111A9C10000F80367C10105000000000005150000005FB6180CC7E1F2212420E00051040000051238002000000001000000BC0E6328D541D111A9C10000F80367C10105000000000005150000005FB6180CC7E1F2212420E00060040000051238002000000001000000C07996BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00062040000051238002000000001000000D0BF0A3E6A12D011A06000AA006C33ED0105000000000005150000005FB6180CC7E1F2212420E00062040000051238002000000001000000D3C7B47C8787B042B4383C5D479AD31E0105000000000005150000005FB6180CC7E1F2212420E0005F0400000512380030000000010000000FD6475B9060B2409F372A4DE88F30630105000000000005150000005FB6180CC7E1F2212420E0000E0200000512380030000000010000000FD6475B9060B2409F372A4DE88F30630105000000000005150000005FB6180CC7E1F2212420E0000F020000051A3800400000000200000014CC28483714BC459B07AD6F015E5F280105000000000005150000005FB6180CC7E1F2212420E00062040000051A38004000000002000000BA7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E0006204000005123800B700000001000000ACFFF8F09111D011A06000AA006C33ED0105000000000005150000005FB6180CC7E1F2212420E0006004000005123800B700000001000000F2AFB2E8A759AC4E9A70819ADEF701DD0105000000000005150000005FB6180CC7E1F2212420E0005F04000005123800FF010F0001000000B049880181A9D211A9FF00C04F8EEDD80105000000000005150000005FB6180CC7E1F2212420E0005104000005123800FF010F0001000000B049880181A9D211A9FF00C04F8EEDD80105000000000005150000005FB6180CC7E1F2212420E00060040000051A38000000010002000000867A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E000620400000512380000000100020000009C7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00062040000051A38000000010002000000A57A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00062040000051A38000000010002000000D01EB45C4C0ED011A28600AA003049E20105000000000005150000005FB6180CC7E1F2212420E00062040000051A3800000005000200000014CC28483714BC459B07AD6F015E5F280105000000000005150000005FB6180CC7E1F2212420E00062040000051A38000000050002000000BA7A96BFE60DD011A28500AA003049E20105000000000005150000005FB6180CC7E1F2212420E00062040000051A38000800000003000000A66D029B3C0D5C468BEE5199D7165CBA867A96BFE60DD011A28500AA003049E2010100000000000300000000051A38000800000003000000A66D029B3C0D5C468BEE5199D7165CBA867A96BFE60DD011A28500AA003049E201010000000000050A000000051A380010000000030000006D9EC6B7C72CD211854E00A0C983F608867A96BFE60DD011A28500AA003049E20101000000000005090000000512380010000000030000006D9EC6B7C72CD211854E00A0C983F6089C7A96BFE60DD011A28500AA003049E2010100000000000509000000051A380010000000030000006D9EC6B7C72CD211854E00A0C983F608BA7A96BFE60DD011A28500AA003049E2010100000000000509000000051A38002000000003000000937B1BEA485ED546BC6C4DF4FDA78A35867A96BFE60DD011A28500AA003049E201010000000000050A000000051A3800FF010F000200000001C975C9EA6C6F4B8319D67F454495060105000000000005150000005FB6180CC7E1F2212420E00060040000051A3800FF010F0002000000ACFFF8F09111D011A06000AA006C33ED0105000000000005150000005FB6180CC7E1F2212420E00060040000051A2C00940002000200000014CC28483714BC459B07AD6F015E5F280102000000000005200000002A02000005122C0094000200020000009C7A96BFE60DD011A28500AA003049E20102000000000005200000002A020000051A2C009400020002000000BA7A96BFE60DD011A28500AA003049E20102000000000005200000002A02000005122800100000000100000017A4B3B155EC9141B327B72E33E38AF2010100000000000514000000051228001000000001000000898A291F98DEB847B5CD572AD53D267E01010000000000050B000000051328003000000001000000E5C3783F9AF7BD46A0B89D18116DDC7901010000000000050A000000051228003001000001000000DE47E6916FD9704B9557D63FF4F3CCD801010000000000050A00000000122400940002000105000000000005150000005FB6180CC7E1F2212420E0006004000000122400FF010F000105000000000005150000005FB6180CC7E1F2212420E0000702000000121800040000000102000000000005200000002A02000000121800BD010F00010200000000000520000000200200000105000000000005150000005FB6180CC7E1F2212420E000000200000105000000000005150000005FB6180CC7E1F2212420E00000020000"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0030044] +[03/07/2021 17:58:37.0532] [1] Finished [Setting:ExchangeServersGroupNtSecurityDescriptor] [Duration:00:00:00.0050063] +[03/07/2021 17:58:37.0532] [1] Evaluated [Setting:BridgeheadRoleInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:60] [Duration:00:00:00.8059847] +[03/07/2021 17:58:37.0532] [1] Evaluated [Setting:LocalDomainIsPrepped] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0070057] +[03/07/2021 17:58:37.0532] [1] Finished [Setting:LocalDomainIsPrepped] [Duration:00:00:00.0070057] +[03/07/2021 17:58:37.0532] [1] Evaluated [Rule:DomainPrepRequired] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0090063] +[03/07/2021 17:58:37.0532] [1] Finished [Rule:DomainPrepRequired] [Duration:00:00:00.0090063] +[03/07/2021 17:58:37.0532] [1] Started [Rule:InvalidADSite] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0532] [1] Evaluated [Setting:GatewayRoleInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:96] [Duration:00:00:00.7159907] +[03/07/2021 17:58:37.0532] [1] Finished [Setting:GatewayRoleInstalled] [Duration:00:00:00.7159907] +[03/07/2021 17:58:37.0533] [1] Evaluated [Setting:MailboxRoleInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:90] [Duration:00:00:00.7399934] +[03/07/2021 17:58:37.0533] [1] Finished [Setting:MailboxRoleInstalled] [Duration:00:00:00.7399934] +[03/07/2021 17:58:37.0533] [1] Finished [Setting:BridgeheadRoleInstalled] [Duration:00:00:00.8079920] +[03/07/2021 17:58:37.0533] [1] Evaluated [Rule:MailboxRoleNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:13] [Duration:00:00:00.4959968] +[03/07/2021 17:58:37.0533] [1] Finished [Rule:MailboxRoleNotInstalled] [Duration:00:00:00.4959968] +[03/07/2021 17:58:37.0533] [1] Started [Rule:MailboxUpgradeMinVersionBlock] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0534] [1] Evaluated [Rule:InvalidADSite] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00.0019925] +[03/07/2021 17:58:37.0534] [1] Finished [Rule:InvalidADSite] [Duration:00:00:00.0019925] +[03/07/2021 17:58:37.0534] [1] Started [Rule:MinimumFrameworkNotInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0534] [1] Evaluated [Rule:ProvisionedUpdateRequired] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0039944] +[03/07/2021 17:58:37.0534] [1] Started [Setting:ClrReleaseNumber] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:37.0534] [1] Finished [Rule:ProvisionedUpdateRequired] [Duration:00:00:00.0039944] +[03/07/2021 17:58:37.0534] [1] Started [Rule:SchemaFSMONotWin2003SPn] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0534] [1] Evaluated [Setting:ClrReleaseNumber] [HasException:False] [Value:"528049"] [ParentValue:""] [Thread:14] [Duration:00:00:00] +[03/07/2021 17:58:37.0534] [1] Finished [Setting:ClrReleaseNumber] [Duration:00:00:00] +[03/07/2021 17:58:37.0534] [1] Evaluated [Rule:MinimumFrameworkNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:14] [Duration:00:00:00] +[03/07/2021 17:58:37.0534] [1] Finished [Rule:MinimumFrameworkNotInstalled] [Duration:00:00:00] +[03/07/2021 17:58:37.0534] [1] Evaluated [Setting:CafeRoleInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:92] [Duration:00:00:00.7349860] +[03/07/2021 17:58:37.0534] [1] Finished [Setting:CafeRoleInstalled] [Duration:00:00:00.7349860] +[03/07/2021 17:58:37.0534] [1] Started [Setting:Win2003FSMOSchemaServer] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0534] [1] Started [Setting:SmoOperatingSystemVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0539] [1] Evaluated [Setting:ServerIsProvisioned] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:97] [Duration:00:00:00.7089854] +[03/07/2021 17:58:37.0539] [1] Finished [Setting:ServerIsProvisioned] [Duration:00:00:00.7169827] +[03/07/2021 17:58:37.0539] [1] Evaluated [Setting:UnifiedMessagingRoleInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:53] [Duration:00:00:00.8209816] +[03/07/2021 17:58:37.0539] [1] Finished [Setting:UnifiedMessagingRoleInstalled] [Duration:00:00:00.8209816] +[03/07/2021 17:58:37.0543] [1] Evaluated [Rule:UnifiedMessagingRoleNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:53] [Duration:00:00:00.8268290] +[03/07/2021 17:58:37.0543] [1] Finished [Rule:UnifiedMessagingRoleNotInstalled] [Duration:00:00:00.8269830] +[03/07/2021 17:58:37.0543] [1] Started [Setting:SmoRoleSchemaRef] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:37.0545] [1] Started [Setting:MailboxUnpackedVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0545] [1] Evaluated [Setting:ClientAccessRoleInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:91] [Duration:00:00:00.7469864] +[03/07/2021 17:58:37.0545] [1] Finished [Setting:ClientAccessRoleInstalled] [Duration:00:00:00.7469864] +[03/07/2021 17:58:37.0546] [1] Evaluated [Setting:MailboxUnpackedVersion] [HasException:False] [Value:"15.1.2106.2"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0009990] +[03/07/2021 17:58:37.0546] [1] Finished [Setting:MailboxUnpackedVersion] [Duration:00:00:00.0009990] +[03/07/2021 17:58:37.0546] [1] Started [Setting:MailboxConfiguredVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0547] [1] Evaluated [Setting:MailboxConfiguredVersion] [HasException:False] [Value:"15.1.2106.2"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0010016] +[03/07/2021 17:58:37.0547] [1] Finished [Setting:MailboxConfiguredVersion] [Duration:00:00:00.0010016] +[03/07/2021 17:58:37.0547] [1] Evaluated [Rule:MailboxUpgradeMinVersionBlock] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0139933] +[03/07/2021 17:58:37.0547] [1] Finished [Rule:MailboxUpgradeMinVersionBlock] [Duration:00:00:00.0139933] +[03/07/2021 17:58:37.0548] [1] Started [Rule:UnifiedMessagingUpgradeMinVersionBlock] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0550] [1] Evaluated [Setting:HasExchangeServersUSGBasicAccess] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0270024] +[03/07/2021 17:58:37.0550] [1] Finished [Setting:HasExchangeServersUSGBasicAccess] [Duration:00:00:00.0270024] +[03/07/2021 17:58:37.0550] [1] Evaluated [Rule:LocalDomainPrep] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.1979967] +[03/07/2021 17:58:37.0550] [1] Finished [Rule:LocalDomainPrep] [Duration:00:00:00.1979967] +[03/07/2021 17:58:37.0550] [1] Started [Rule:GlobalServerInstall] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0552] [1] Started [Setting:UnifiedMessagingUnpackedVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0553] [1] Evaluated [Setting:UnifiedMessagingUnpackedVersion] [HasException:False] [Value:"15.1.2106.2"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0010011] +[03/07/2021 17:58:37.0553] [1] Finished [Setting:UnifiedMessagingUnpackedVersion] [Duration:00:00:00.0010011] +[03/07/2021 17:58:37.0553] [1] Started [Setting:UnifiedMessagingConfiguredVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0554] [1] Evaluated [Setting:UnifiedMessagingConfiguredVersion] [HasException:False] [Value:"15.1.2106.2"] [ParentValue:""] [Thread:13] [Duration:00:00:00] +[03/07/2021 17:58:37.0554] [1] Finished [Setting:UnifiedMessagingConfiguredVersion] [Duration:00:00:00.0010008] +[03/07/2021 17:58:37.0554] [1] Evaluated [Rule:UnifiedMessagingUpgradeMinVersionBlock] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0060002] +[03/07/2021 17:58:37.0554] [1] Finished [Rule:UnifiedMessagingUpgradeMinVersionBlock] [Duration:00:00:00.0069994] +[03/07/2021 17:58:37.0554] [1] Started [Rule:BridgeheadUpgradeMinVersionBlock] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0556] [1] Evaluated [Setting:FileVersionKernel32] [HasException:False] [Value:"10.0.14393.1198"] [ParentValue:""] [Thread:55] [Duration:00:00:00.9039847] +[03/07/2021 17:58:37.0556] [1] Finished [Setting:FileVersionKernel32] [Duration:00:00:00.9039847] +[03/07/2021 17:58:37.0556] [1] Started [Setting:WindowsBuild] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0556] [1] Evaluated [Setting:Windows10Version] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:80] [Duration:00:00:00.7829895] +[03/07/2021 17:58:37.0556] [1] Finished [Setting:Windows10Version] [Duration:00:00:00.7829895] +[03/07/2021 17:58:37.0556] [1] Evaluated [Rule:ServerGuiMgmtInfraNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:79] [Duration:00:00:00.7849855] +[03/07/2021 17:58:37.0556] [1] Finished [Rule:ServerGuiMgmtInfraNotInstalled] [Duration:00:00:00.7849855] +[03/07/2021 17:58:37.0556] [1] Started [Setting:ServerCoreInstalled] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0557] [1] Evaluated [Setting:WindowsBuild] [HasException:False] [Value:"14393"] [ParentValue:""] [Thread:55] [Duration:00:00:00] +[03/07/2021 17:58:37.0557] [1] Finished [Setting:WindowsBuild] [Duration:00:00:00.0010000] +[03/07/2021 17:58:37.0557] [1] Evaluated [Rule:SearchFoundationAssemblyLoaderKBNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:55] [Duration:00:00:00.9199812] +[03/07/2021 17:58:37.0557] [1] Finished [Rule:SearchFoundationAssemblyLoaderKBNotInstalled] [Duration:00:00:00.9199812] +[03/07/2021 17:58:37.0557] [1] Evaluated [Setting:SmoRoleSchemaRef] [HasException:False] [Value:"System.DirectoryServices.ResultPropertyCollection"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0140003] +[03/07/2021 17:58:37.0557] [1] Finished [Setting:SmoRoleSchemaRef] [Duration:00:00:00.0140003] +[03/07/2021 17:58:37.0557] [1] Evaluated [Setting:SmoOperatingSystemVersion] [HasException:False] [Value:"10.0 (14393)"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0230015] +[03/07/2021 17:58:37.0557] [1] Finished [Setting:SmoOperatingSystemVersion] [Duration:00:00:00.0230015] +[03/07/2021 17:58:37.0557] [1] Evaluated [Setting:Win2003FSMOSchemaServer] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0230015] +[03/07/2021 17:58:37.0557] [1] Finished [Setting:Win2003FSMOSchemaServer] [Duration:00:00:00.0230015] +[03/07/2021 17:58:37.0557] [1] Evaluated [Rule:SchemaFSMONotWin2003SPn] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0230015] +[03/07/2021 17:58:37.0557] [1] Finished [Rule:SchemaFSMONotWin2003SPn] [Duration:00:00:00.0230015] +[03/07/2021 17:58:37.0557] [1] Started [Rule:DomainControllerIsOutOfSite] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0558] [1] Started [Setting:BridgeheadUnpackedVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0559] [1] Started [Setting:DomainControllerSiteName] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0559] [1] Evaluated [Setting:FrontendTransportRoleInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:93] [Duration:00:00:00.7599912] +[03/07/2021 17:58:37.0559] [1] Finished [Setting:FrontendTransportRoleInstalled] [Duration:00:00:00.7599912] +[03/07/2021 17:58:37.0559] [1] Evaluated [Setting:BridgeheadUnpackedVersion] [HasException:False] [Value:"15.1.2106.2"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0010050] +[03/07/2021 17:58:37.0559] [1] Finished [Setting:BridgeheadUnpackedVersion] [Duration:00:00:00.0010050] +[03/07/2021 17:58:37.0559] [1] Started [Setting:BridgeheadConfiguredVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0561] [1] Evaluated [Setting:BridgeheadConfiguredVersion] [HasException:False] [Value:"15.1.2106.2"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0019953] +[03/07/2021 17:58:37.0561] [1] Finished [Setting:BridgeheadConfiguredVersion] [Duration:00:00:00.0019953] +[03/07/2021 17:58:37.0561] [1] Evaluated [Rule:BridgeheadUpgradeMinVersionBlock] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:13] [Duration:00:00:00.0069990] +[03/07/2021 17:58:37.0561] [1] Finished [Rule:BridgeheadUpgradeMinVersionBlock] [Duration:00:00:00.0069990] +[03/07/2021 17:58:37.0561] [1] Evaluated [Setting:ServerCoreInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:80] [Duration:00:00:00.0039990] +[03/07/2021 17:58:37.0561] [1] Finished [Setting:ServerCoreInstalled] [Duration:00:00:00.0049990] +[03/07/2021 17:58:37.0561] [1] Evaluated [Rule:IsServerCoreInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:80] [Duration:00:00:00.7899845] +[03/07/2021 17:58:37.0561] [1] Finished [Rule:IsServerCoreInstalled] [Duration:00:00:00.7899845] +[03/07/2021 17:58:37.0562] [1] Ending processing Get-ResourceConfig +[03/07/2021 17:58:37.0562] [1] Evaluated [Setting:FileVersionLdifde] [HasException:False] [Value:"10.0.14393.0"] [ParentValue:""] [Thread:50] [Duration:00:00:00.9259799] +[03/07/2021 17:58:37.0563] [1] Evaluated [Rule:BridgeheadRoleNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:60] [Duration:00:00:00.8399810] +[03/07/2021 17:58:37.0563] [1] Finished [Setting:FileVersionLdifde] [Duration:00:00:00.9269792] +[03/07/2021 17:58:37.0563] [1] Finished [Rule:BridgeheadRoleNotInstalled] [Duration:00:00:00.8399810] +[03/07/2021 17:58:37.0563] [1] Evaluated [Rule:W2K8R2PrepareSchemaLdifdeNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:49] [Duration:00:00:00.9919787] +[03/07/2021 17:58:37.0563] [1] Finished [Rule:W2K8R2PrepareSchemaLdifdeNotInstalled] [Duration:00:00:00.9919787] +[03/07/2021 17:58:37.0563] [1] Evaluated [Rule:W2K8R2PrepareAdLdifdeNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:50] [Duration:00:00:00.9619783] +[03/07/2021 17:58:37.0563] [1] Finished [Rule:W2K8R2PrepareAdLdifdeNotInstalled] [Duration:00:00:00.9619783] +[03/07/2021 17:58:37.0565] [1] Evaluated [Setting:DomainControllerSiteName] [HasException:False] [Value:"Default-First-Site-Name"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0059955] +[03/07/2021 17:58:37.0565] [1] Finished [Setting:DomainControllerSiteName] [Duration:00:00:00.0059955] +[03/07/2021 17:58:37.0565] [1] Evaluated [Rule:DomainControllerIsOutOfSite] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0079992] +[03/07/2021 17:58:37.0565] [1] Finished [Rule:DomainControllerIsOutOfSite] [Duration:00:00:00.0079992] +[03/07/2021 17:58:37.0565] [1] Started [Rule:ComputerNameDiscrepancy] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0565] [1] Evaluated [Rule:GlobalServerInstall] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0149971] +[03/07/2021 17:58:37.0566] [1] Finished [Rule:GlobalServerInstall] [Duration:00:00:00.0159963] +[03/07/2021 17:58:37.0566] [1] Started [Rule:DelegatedBridgeheadFirstInstall] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:37.0567] [1] Started [Setting:ComputerNameDnsHostname] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0567] [1] Started [Setting:BridgeheadRoleOfEqualOrHigherVersion] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0568] [1] Evaluated [Setting:ComputerNameDnsHostname] [HasException:False] [Value:"Solo-E16A"] [ParentValue:""] [Thread:104] [Duration:00:00:00] +[03/07/2021 17:58:37.0568] [1] Finished [Setting:ComputerNameDnsHostname] [Duration:00:00:00.0009996] +[03/07/2021 17:58:37.0568] [1] Started [Setting:ComputerNameNetBIOS] [Parent:RootAnalysisMember] [ValueType:String] +[03/07/2021 17:58:37.0568] [1] Evaluated [Setting:ComputerNameNetBIOS] [HasException:False] [Value:"SOLO-E16A"] [ParentValue:""] [Thread:104] [Duration:00:00:00] +[03/07/2021 17:58:37.0568] [1] Finished [Setting:ComputerNameNetBIOS] [Duration:00:00:00] +[03/07/2021 17:58:37.0568] [1] Evaluated [Rule:ComputerNameDiscrepancy] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:104] [Duration:00:00:00.0030002] +[03/07/2021 17:58:37.0568] [1] Finished [Rule:ComputerNameDiscrepancy] [Duration:00:00:00.0030002] +[03/07/2021 17:58:37.0570] [1] Started [Setting:MicrosoftExchAdminGroupsBridgeheadRoleConfig] [Parent:RootAnalysisMember] [ValueType:ResultPropertyCollection] +[03/07/2021 17:58:37.0583] [1] Evaluated [Setting:MicrosoftExchAdminGroupsBridgeheadRoleConfig] [HasException:False] [Value:""] [ParentValue:""] [Thread:24] [Duration:00:00:00.0129995] +[03/07/2021 17:58:37.0583] [1] Finished [Setting:MicrosoftExchAdminGroupsBridgeheadRoleConfig] [Duration:00:00:00.0129995] +[03/07/2021 17:58:37.0583] [1] Finished [Setting:BridgeheadRoleOfEqualOrHigherVersion] [Duration:00:00:00.0159996] +[03/07/2021 17:58:37.0583] [1] Evaluated [Rule:DelegatedBridgeheadFirstInstall] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:24] [Duration:00:00:00.0170010] +[03/07/2021 17:58:37.0583] [1] Finished [Rule:DelegatedBridgeheadFirstInstall] [Duration:00:00:00.0170010] +[03/07/2021 17:58:37.0610] [1] Evaluated [Setting:FileVersionRpcHttp] [HasException:False] [Value:"10.0.14393.1770"] [ParentValue:""] [Thread:54] [Duration:00:00:00.9879807] +[03/07/2021 17:58:37.0610] [1] Finished [Setting:FileVersionRpcHttp] [Duration:00:00:00.9879807] +[03/07/2021 17:58:37.0610] [1] Evaluated [Rule:Win7RpcHttpAssocCookieGuidUpdateNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:54] [Duration:00:00:00.9929805] +[03/07/2021 17:58:37.0610] [1] Finished [Rule:Win7RpcHttpAssocCookieGuidUpdateNotInstalled] [Duration:00:00:00.9929805] +[03/07/2021 17:58:37.0615] [1] Active Directory session settings for 'Set-ResourceConfig' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:37.0615] [1] User specified parameters: -WhatIf:'True' -ResourcePropertySchema: +[03/07/2021 17:58:37.0616] [1] Beginning processing Set-ResourceConfig +[03/07/2021 17:58:37.0630] [1] Evaluated [Setting:FileVersionWmspdmod] [HasException:False] [Value:"10.0.14393.0"] [ParentValue:""] [Thread:51] [Duration:00:00:00.9949809] +[03/07/2021 17:58:37.0630] [1] Finished [Setting:FileVersionWmspdmod] [Duration:00:00:00.9949809] +[03/07/2021 17:58:37.0630] [1] Started [Setting:FileVersionWmspdmoe] [Parent:RootAnalysisMember] [ValueType:Version] +[03/07/2021 17:58:37.0648] [1] Searching objects of type "ResourceBookingConfig" with filter "$null", scope "SubTree" under the root "Global Settings". +[03/07/2021 17:58:37.0654] [1] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 17:58:37.0668] [1] Processing object "Resource Schema". +[03/07/2021 17:58:37.0674] [1] Evaluated [Setting:FileVersionSspicli] [HasException:False] [Value:"10.0.14393.1770"] [ParentValue:""] [Thread:59] [Duration:00:00:00.9569891] +[03/07/2021 17:58:37.0675] [1] Finished [Setting:FileVersionSspicli] [Duration:00:00:00.9579982] +[03/07/2021 17:58:37.0675] [1] Evaluated [Rule:Win2k16LSARollupUpdateNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:59] [Duration:00:00:00.9610009] +[03/07/2021 17:58:37.0675] [1] Finished [Rule:Win2k16LSARollupUpdateNotInstalled] [Duration:00:00:00.9610009] +[03/07/2021 17:58:37.0677] [1] Evaluated [Setting:FileVersionDiscan] [HasException:False] [Value:"10.0.14393.206"] [ParentValue:""] [Thread:58] [Duration:00:00:00.9979787] +[03/07/2021 17:58:37.0677] [1] Finished [Setting:FileVersionDiscan] [Duration:00:00:00.9979787] +[03/07/2021 17:58:37.0677] [1] Evaluated [Rule:Win2k12RollupUpdateNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:58] [Duration:00:00:01.0009794] +[03/07/2021 17:58:37.0677] [1] Finished [Rule:Win2k12RollupUpdateNotInstalled] [Duration:00:00:01.0009794] +[03/07/2021 17:58:37.0683] [1] Evaluated [Setting:FileVersionRefs] [HasException:False] [Value:"10.0.14393.1770"] [ParentValue:""] [Thread:57] [Duration:00:00:01.0109818] +[03/07/2021 17:58:37.0683] [1] Finished [Setting:FileVersionRefs] [Duration:00:00:01.0109818] +[03/07/2021 17:58:37.0683] [1] Evaluated [Rule:Win2k12RefsUpdateNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:57] [Duration:00:00:01.0139816] +[03/07/2021 17:58:37.0683] [1] Finished [Rule:Win2k12RefsUpdateNotInstalled] [Duration:00:00:01.0139816] +[03/07/2021 17:58:37.0687] [1] Evaluated [Setting:FileVersionUrefs] [HasException:False] [Value:"10.0.14393.1532"] [ParentValue:""] [Thread:56] [Duration:00:00:01.0159813] +[03/07/2021 17:58:37.0687] [1] Finished [Setting:FileVersionUrefs] [Duration:00:00:01.0159813] +[03/07/2021 17:58:37.0687] [1] Evaluated [Rule:Win2k12UrefsUpdateNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:56] [Duration:00:00:01.0189833] +[03/07/2021 17:58:37.0687] [1] Finished [Rule:Win2k12UrefsUpdateNotInstalled] [Duration:00:00:01.0189833] +[03/07/2021 17:58:37.0689] [1] Ending processing Set-ResourceConfig +[03/07/2021 17:58:37.0692] [1] Evaluated [Rule:ResourcePropertySchemaException] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:64] [Duration:00:00:00.9499803] +[03/07/2021 17:58:37.0692] [1] Finished [Rule:ResourcePropertySchemaException] [Duration:00:00:00.9499803] +[03/07/2021 17:58:37.0733] [1] Evaluated [Setting:FileVersionWmspdmoe] [HasException:False] [Value:"10.0.14393.0"] [ParentValue:""] [Thread:51] [Duration:00:00:00.1029986] +[03/07/2021 17:58:37.0733] [1] Finished [Setting:FileVersionWmspdmoe] [Duration:00:00:00.1029986] +[03/07/2021 17:58:37.0733] [1] Evaluated [Rule:LonghornWmspdmoxNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:51] [Duration:00:00:01.1259724] +[03/07/2021 17:58:37.0733] [1] Finished [Rule:LonghornWmspdmoxNotInstalled] [Duration:00:00:01.1259724] +[03/07/2021 17:58:37.0735] [1] Evaluated [Setting:SuiteMask] [HasException:False] [Value:"400"] [ParentValue:""] [Thread:73] [Duration:00:00:00.3139968] +[03/07/2021 17:58:37.0735] [1] Finished [Setting:SuiteMask] [Duration:00:00:00.3149949] +[03/07/2021 17:58:37.0735] [1] Evaluated [Setting:ValidOSSuite] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:73] [Duration:00:00:00.3199943] +[03/07/2021 17:58:37.0735] [1] Finished [Setting:ValidOSSuite] [Duration:00:00:00.3199943] +[03/07/2021 17:58:37.0736] [1] Evaluated [Setting:Windows2K8R2Version] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:73] [Duration:00:00:00.9799809] +[03/07/2021 17:58:37.0736] [1] Finished [Setting:Windows2K8R2Version] [Duration:00:00:00.9799809] +[03/07/2021 17:58:37.0736] [1] Started [Setting:WindowsServer12Version] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:37.0736] [1] Evaluated [Rule:RSATWebServerNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:72] [Duration:00:00:00.9809803] +[03/07/2021 17:58:37.0736] [1] Finished [Rule:RSATWebServerNotInstalled] [Duration:00:00:00.9809803] +[03/07/2021 17:58:37.0736] [1] Evaluated [Rule:NETFrameworkNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:73] [Duration:00:00:00.9809803] +[03/07/2021 17:58:37.0736] [1] Finished [Rule:NETFrameworkNotInstalled] [Duration:00:00:00.9809803] +[03/07/2021 17:58:37.0738] [1] Evaluated [Setting:WindowsServer12Version] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:105] [Duration:00:00:00.0020001] +[03/07/2021 17:58:37.0738] [1] Finished [Setting:WindowsServer12Version] [Duration:00:00:00.0020001] +[03/07/2021 17:58:37.0738] [1] Evaluated [Rule:ValidOSVersion] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:105] [Duration:00:00:00.7459860] +[03/07/2021 17:58:37.0738] [1] Finished [Rule:ValidOSVersion] [Duration:00:00:00.7459860] +[03/07/2021 17:58:38.0539] [1] Evaluated [Setting:NetTcpPortSharingStartMode] [HasException:False] [Value:"Auto"] [ParentValue:""] [Thread:17] [Duration:00:00:01.9569617] +[03/07/2021 17:58:38.0540] [1] Finished [Setting:NetTcpPortSharingStartMode] [Duration:00:00:01.9589234] +[03/07/2021 17:58:38.0540] [1] Evaluated [Rule:NetTcpPortSharingSvcNotAuto] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:17] [Duration:00:00:01.9729608] +[03/07/2021 17:58:38.0540] [1] Finished [Rule:NetTcpPortSharingSvcNotAuto] [Duration:00:00:01.9739646] +[03/07/2021 17:58:38.0553] [1] Evaluated [Setting:MSDTCStarted] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:10] [Duration:00:00:01.9759593] +[03/07/2021 17:58:38.0554] [1] Finished [Setting:MSDTCStarted] [Duration:00:00:01.9769653] +[03/07/2021 17:58:38.0554] [1] Evaluated [Rule:MSDTCStopped] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:10] [Duration:00:00:01.9869644] +[03/07/2021 17:58:38.0554] [1] Finished [Rule:MSDTCStopped] [Duration:00:00:01.9909642] +[03/07/2021 17:58:38.0555] [1] Evaluated [Setting:EventSystemStarted] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:9] [Duration:00:00:01.9769604] +[03/07/2021 17:58:38.0555] [1] Finished [Setting:EventSystemStarted] [Duration:00:00:01.9769604] +[03/07/2021 17:58:38.0555] [1] Evaluated [Rule:EventSystemStopped] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:9] [Duration:00:00:01.9839598] +[03/07/2021 17:58:38.0555] [1] Finished [Rule:EventSystemStopped] [Duration:00:00:01.9909594] +[03/07/2021 17:58:38.0558] [1] Evaluated [Setting:MpsSvcStarted] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:12] [Duration:00:00:01.9589579] +[03/07/2021 17:58:38.0558] [1] Finished [Setting:MpsSvcStarted] [Duration:00:00:01.9589579] +[03/07/2021 17:58:38.0558] [1] Evaluated [Rule:MpsSvcStopped] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:12] [Duration:00:00:01.9909615] +[03/07/2021 17:58:38.0558] [1] Finished [Rule:MpsSvcStopped] [Duration:00:00:01.9939619] +[03/07/2021 17:58:44.0591] [1] Evaluated [Setting:InstalledWindowsFeatures] [HasException:False] [Value:"System.Object[]"] [ParentValue:""] [Thread:66] [Duration:00:00:07.8390485] +[03/07/2021 17:58:44.0591] [1] Finished [Setting:InstalledWindowsFeatures] [Duration:00:00:07.8390485] +[03/07/2021 17:58:44.0592] [1] Evaluated [Setting:IsWebNetExt45Installed] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:75] [Duration:00:00:07.1530592] +[03/07/2021 17:58:44.0592] [1] Finished [Setting:IsWebNetExt45Installed] [Duration:00:00:07.1530592] +[03/07/2021 17:58:44.0592] [1] Evaluated [Setting:IsRsatClusteringCmdInterfaceInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:71] [Duration:00:00:07.1660572] +[03/07/2021 17:58:44.0592] [1] Finished [Setting:IsRsatClusteringCmdInterfaceInstalled] [Duration:00:00:07.1660572] +[03/07/2021 17:58:44.0592] [1] Evaluated [Setting:IsWebISAPIExtInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:76] [Duration:00:00:07.8260429] +[03/07/2021 17:58:44.0592] [1] Finished [Setting:IsWebISAPIExtInstalled] [Duration:00:00:07.8260429] +[03/07/2021 17:58:44.0592] [1] Evaluated [Rule:WebISAPIExtNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:76] [Duration:00:00:07.8270427] +[03/07/2021 17:58:44.0592] [1] Finished [Rule:WebISAPIExtNotInstalled] [Duration:00:00:07.8270427] +[03/07/2021 17:58:44.0592] [1] Evaluated [Rule:RsatClusteringCmdInterfaceInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:71] [Duration:00:00:07.8380442] +[03/07/2021 17:58:44.0592] [1] Finished [Rule:RsatClusteringCmdInterfaceInstalled] [Duration:00:00:07.8380442] +[03/07/2021 17:58:44.0592] [1] Evaluated [Setting:IsRsatAddsToolsInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:66] [Duration:00:00:07.8430403] +[03/07/2021 17:58:44.0592] [1] Evaluated [Setting:IsRPCOverHTTPproxyInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:78] [Duration:00:00:07.8230376] +[03/07/2021 17:58:44.0592] [1] Evaluated [Rule:WebNetExt45NotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:75] [Duration:00:00:07.8280444] +[03/07/2021 17:58:44.0592] [1] Finished [Rule:WebNetExt45NotInstalled] [Duration:00:00:07.8280444] +[03/07/2021 17:58:44.0592] [1] Evaluated [Setting:IsNETFramework45FeaturesInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:74] [Duration:00:00:07.1670571] +[03/07/2021 17:58:44.0593] [1] Finished [Setting:IsNETFramework45FeaturesInstalled] [Duration:00:00:07.1670571] +[03/07/2021 17:58:44.0593] [1] Finished [Setting:IsRPCOverHTTPproxyInstalled] [Duration:00:00:07.8230376] +[03/07/2021 17:58:44.0593] [1] Evaluated [Rule:RPCOverHTTPproxyNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:78] [Duration:00:00:07.8260464] +[03/07/2021 17:58:44.0593] [1] Finished [Rule:RPCOverHTTPproxyNotInstalled] [Duration:00:00:07.8260464] +[03/07/2021 17:58:44.0593] [1] Evaluated [Rule:NETFramework45FeaturesNotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:74] [Duration:00:00:07.8290468] +[03/07/2021 17:58:44.0593] [1] Finished [Rule:NETFramework45FeaturesNotInstalled] [Duration:00:00:07.8300472] +[03/07/2021 17:58:44.0593] [1] Finished [Setting:IsRsatAddsToolsInstalled] [Duration:00:00:07.8430403] +[03/07/2021 17:58:44.0593] [1] Evaluated [Setting:IsRsatClusteringPowerShellInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:69] [Duration:00:00:07.1660590] +[03/07/2021 17:58:44.0593] [1] Evaluated [Setting:IsRsatClusteringMgmtInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:68] [Duration:00:00:07.1690562] +[03/07/2021 17:58:44.0593] [1] Finished [Setting:IsRsatClusteringMgmtInstalled] [Duration:00:00:07.1700586] +[03/07/2021 17:58:44.0593] [1] Evaluated [Rule:RsatClusteringMgmtInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:68] [Duration:00:00:07.8440427] +[03/07/2021 17:58:44.0593] [1] Finished [Rule:RsatClusteringMgmtInstalled] [Duration:00:00:07.8440427] +[03/07/2021 17:58:44.0593] [1] Evaluated [Setting:IsWcfHttpActivation45Installed] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:65] [Duration:00:00:07.1700586] +[03/07/2021 17:58:44.0593] [1] Finished [Setting:IsWcfHttpActivation45Installed] [Duration:00:00:07.1700586] +[03/07/2021 17:58:44.0593] [1] Evaluated [Rule:WcfHttpActivation45Installed] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:65] [Duration:00:00:07.8460456] +[03/07/2021 17:58:44.0593] [1] Evaluated [Setting:IsWebASPNET45Installed] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:77] [Duration:00:00:07.1650594] +[03/07/2021 17:58:44.0593] [1] Finished [Setting:IsWebASPNET45Installed] [Duration:00:00:07.1650594] +[03/07/2021 17:58:44.0593] [1] Evaluated [Rule:WebASPNET45NotInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:77] [Duration:00:00:07.8260464] +[03/07/2021 17:58:44.0593] [1] Finished [Rule:WebASPNET45NotInstalled] [Duration:00:00:07.8260464] +[03/07/2021 17:58:44.0594] [1] Finished [Setting:IsRsatClusteringPowerShellInstalled] [Duration:00:00:07.1660590] +[03/07/2021 17:58:44.0594] [1] Evaluated [Rule:RsatClusteringPowerShellInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:69] [Duration:00:00:07.8450370] +[03/07/2021 17:58:44.0594] [1] Finished [Rule:RsatClusteringPowerShellInstalled] [Duration:00:00:07.8450370] +[03/07/2021 17:58:44.0594] [1] Evaluated [Rule:RsatAddsToolsInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:66] [Duration:00:00:07.8460456] +[03/07/2021 17:58:44.0594] [1] Finished [Rule:RsatAddsToolsInstalled] [Duration:00:00:07.8470399] +[03/07/2021 17:58:44.0594] [1] Evaluated [Setting:IsRsatClusteringInstalled] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:67] [Duration:00:00:07.8420438] +[03/07/2021 17:58:44.0594] [1] Finished [Setting:IsRsatClusteringInstalled] [Duration:00:00:07.8430381] +[03/07/2021 17:58:44.0594] [1] Evaluated [Rule:RsatClusteringInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:67] [Duration:00:00:07.8460392] +[03/07/2021 17:58:44.0594] [1] Finished [Rule:RsatClusteringInstalled] [Duration:00:00:07.8460392] +[03/07/2021 17:58:44.0594] [1] Finished [Rule:WcfHttpActivation45Installed] [Duration:00:00:07.8460456] +[03/07/2021 17:58:44.0643] [1] Evaluated [Setting:VoiceMessages] [HasException:False] [Value:"0"] [ParentValue:""] [Thread:84] [Duration:00:00:07.8590982] +[03/07/2021 17:58:44.0643] [1] Finished [Setting:VoiceMessages] [Duration:00:00:07.8590982] +[03/07/2021 17:58:44.0643] [1] Evaluated [Rule:VoiceMessagesInQueue] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:23] [Duration:00:00:07.7001268] +[03/07/2021 17:58:44.0644] [1] Finished [Rule:VoiceMessagesInQueue] [Duration:00:00:07.7010426] +[03/07/2021 17:58:44.0704] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0704] [1] User specified parameters: -ProcessId:'468' +[03/07/2021 17:58:44.0704] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0731] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0733] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0733] [1] User specified parameters: -ProcessId:'5772' +[03/07/2021 17:58:44.0734] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0744] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0746] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0746] [1] User specified parameters: -ProcessId:'9924' +[03/07/2021 17:58:44.0746] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0757] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0758] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0758] [1] User specified parameters: -ProcessId:'472' +[03/07/2021 17:58:44.0758] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0768] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0769] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0769] [1] User specified parameters: -ProcessId:'7804' +[03/07/2021 17:58:44.0769] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0777] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0778] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0778] [1] User specified parameters: -ProcessId:'13080' +[03/07/2021 17:58:44.0779] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0786] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0787] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0787] [1] User specified parameters: -ProcessId:'5352' +[03/07/2021 17:58:44.0787] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0798] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0800] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0800] [1] User specified parameters: -ProcessId:'14736' +[03/07/2021 17:58:44.0800] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0809] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0810] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0811] [1] User specified parameters: -ProcessId:'8376' +[03/07/2021 17:58:44.0811] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0829] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0831] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0831] [1] User specified parameters: -ProcessId:'11540' +[03/07/2021 17:58:44.0832] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0844] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0846] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0846] [1] User specified parameters: -ProcessId:'15224' +[03/07/2021 17:58:44.0846] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0887] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0888] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0888] [1] User specified parameters: -ProcessId:'4280' +[03/07/2021 17:58:44.0889] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0896] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0897] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0897] [1] User specified parameters: -ProcessId:'0' +[03/07/2021 17:58:44.0897] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0911] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0913] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0913] [1] User specified parameters: -ProcessId:'2396' +[03/07/2021 17:58:44.0913] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0929] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0931] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0931] [1] User specified parameters: -ProcessId:'15160' +[03/07/2021 17:58:44.0931] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0949] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0950] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0950] [1] User specified parameters: -ProcessId:'708' +[03/07/2021 17:58:44.0950] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0970] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0972] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0972] [1] User specified parameters: -ProcessId:'2536' +[03/07/2021 17:58:44.0972] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:44.0995] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:44.0996] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:44.0996] [1] User specified parameters: -ProcessId:'12608' +[03/07/2021 17:58:44.0996] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0010] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0012] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0012] [1] User specified parameters: -ProcessId:'2660' +[03/07/2021 17:58:45.0012] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0020] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0021] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0022] [1] User specified parameters: -ProcessId:'7092' +[03/07/2021 17:58:45.0022] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0041] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0042] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0042] [1] User specified parameters: -ProcessId:'14656' +[03/07/2021 17:58:45.0043] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0055] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0057] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0057] [1] User specified parameters: -ProcessId:'14684' +[03/07/2021 17:58:45.0057] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0077] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0078] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0078] [1] User specified parameters: -ProcessId:'14444' +[03/07/2021 17:58:45.0079] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0132] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0134] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0134] [1] User specified parameters: -ProcessId:'692' +[03/07/2021 17:58:45.0134] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0145] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0146] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0146] [1] User specified parameters: -ProcessId:'14844' +[03/07/2021 17:58:45.0147] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0184] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0185] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0185] [1] User specified parameters: -ProcessId:'14804' +[03/07/2021 17:58:45.0186] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0202] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0203] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0204] [1] User specified parameters: -ProcessId:'368' +[03/07/2021 17:58:45.0204] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0216] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0217] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0217] [1] User specified parameters: -ProcessId:'2420' +[03/07/2021 17:58:45.0217] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0234] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0236] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0236] [1] User specified parameters: -ProcessId:'3592' +[03/07/2021 17:58:45.0236] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0250] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0251] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0251] [1] User specified parameters: -ProcessId:'2148' +[03/07/2021 17:58:45.0252] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0271] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0272] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0272] [1] User specified parameters: -ProcessId:'432' +[03/07/2021 17:58:45.0272] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0293] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0294] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0294] [1] User specified parameters: -ProcessId:'464' +[03/07/2021 17:58:45.0294] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0321] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0323] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0323] [1] User specified parameters: -ProcessId:'504' +[03/07/2021 17:58:45.0323] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0340] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0341] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0341] [1] User specified parameters: -ProcessId:'804' +[03/07/2021 17:58:45.0341] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0360] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0362] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0362] [1] User specified parameters: -ProcessId:'868' +[03/07/2021 17:58:45.0362] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0373] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0374] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0374] [1] User specified parameters: -ProcessId:'992' +[03/07/2021 17:58:45.0374] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0391] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0397] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0397] [1] User specified parameters: -ProcessId:'1000' +[03/07/2021 17:58:45.0398] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0437] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0438] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0438] [1] User specified parameters: -ProcessId:'1116' +[03/07/2021 17:58:45.0438] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0455] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0456] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0457] [1] User specified parameters: -ProcessId:'1372' +[03/07/2021 17:58:45.0457] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0474] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0477] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0477] [1] User specified parameters: -ProcessId:'1436' +[03/07/2021 17:58:45.0477] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0498] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0499] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0499] [1] User specified parameters: -ProcessId:'1448' +[03/07/2021 17:58:45.0499] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0510] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0512] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0512] [1] User specified parameters: -ProcessId:'2356' +[03/07/2021 17:58:45.0512] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0530] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0532] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0532] [1] User specified parameters: -ProcessId:'2368' +[03/07/2021 17:58:45.0532] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0544] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0545] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0545] [1] User specified parameters: -ProcessId:'2452' +[03/07/2021 17:58:45.0545] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0558] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0562] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0562] [1] User specified parameters: -ProcessId:'2500' +[03/07/2021 17:58:45.0562] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0575] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0577] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0577] [1] User specified parameters: -ProcessId:'2592' +[03/07/2021 17:58:45.0577] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0589] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0591] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0591] [1] User specified parameters: -ProcessId:'3428' +[03/07/2021 17:58:45.0591] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0601] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0603] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0603] [1] User specified parameters: -ProcessId:'7760' +[03/07/2021 17:58:45.0603] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0616] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0617] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0617] [1] User specified parameters: -ProcessId:'14812' +[03/07/2021 17:58:45.0618] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0637] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0639] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0639] [1] User specified parameters: -ProcessId:'4' +[03/07/2021 17:58:45.0639] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0648] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0649] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0649] [1] User specified parameters: -ProcessId:'13164' +[03/07/2021 17:58:45.0649] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0663] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0664] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0665] [1] User specified parameters: -ProcessId:'14944' +[03/07/2021 17:58:45.0665] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0678] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0679] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0679] [1] User specified parameters: -ProcessId:'1268' +[03/07/2021 17:58:45.0680] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0691] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0693] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0693] [1] User specified parameters: -ProcessId:'556' +[03/07/2021 17:58:45.0693] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0700] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0702] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0702] [1] User specified parameters: -ProcessId:'13568' +[03/07/2021 17:58:45.0702] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0711] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0712] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0712] [1] User specified parameters: -ProcessId:'13624' +[03/07/2021 17:58:45.0712] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0724] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0725] [1] Active Directory session settings for 'Get-ProcessModule' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:45.0726] [1] User specified parameters: -ProcessId:'13992' +[03/07/2021 17:58:45.0726] [1] Beginning processing Get-ProcessModule +[03/07/2021 17:58:45.0743] [1] Ending processing Get-ProcessModule +[03/07/2021 17:58:45.0746] [1] Finished [Setting:OpenProcesses] [Duration:00:00:08.9590242] +[03/07/2021 17:58:45.0746] [1] Finished [Setting:OpenProcessesOnUpgrade] [Duration:00:00:08.9550247] +[03/07/2021 17:58:45.0746] [1] Finished [Setting:OpenProcessesOnUninstall] [Duration:00:00:08.9530262] +[03/07/2021 17:58:45.0746] [1] Evaluated [Rule:ProcessNeedsToBeClosedOnUpgrade] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:15] [Duration:00:00:08.8020298] +[03/07/2021 17:58:45.0746] [1] Finished [Rule:ProcessNeedsToBeClosedOnUpgrade] [Duration:00:00:08.8020298] +[03/07/2021 17:58:46.0089] [1] Evaluated [Setting:RemoteRegistryServiceId] [HasException:False] [Value:"464"] [ParentValue:""] [Thread:85] [Duration:00:00:09.3000165] +[03/07/2021 17:58:46.0089] [1] Finished [Setting:RemoteRegistryServiceId] [Duration:00:00:09.3000165] +[03/07/2021 17:58:46.0119] [1] Active Directory session settings for 'Get-OrganizationConfig' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:46.0119] [1] User specified parameters: +[03/07/2021 17:58:46.0119] [1] Beginning processing Get-OrganizationConfig +[03/07/2021 17:58:46.0121] [1] Searching objects of type "ADOrganizationConfig" with filter "$null", scope "SubTree" under the root "$null". +[03/07/2021 17:58:46.0135] [1] Request filter in Get Task: (&(|(objectCategory=msExchOrganizationContainer)(objectCategory=msExchConfigurationUnitContainer))(|(&(msExchVersion<=3377699720527872)(!(msExchVersion=3377699720527872)))(!(msExchVersion=*)))). +[03/07/2021 17:58:46.0143] [1] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 17:58:46.0143] [1] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 17:58:46.0621] [1] Ending processing Get-OrganizationConfig +[03/07/2021 17:58:46.0625] [1] Evaluated [Rule:WarnMapiHttpNotEnabled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:11] [Duration:00:00:09.6250092] +[03/07/2021 17:58:46.0625] [1] Finished [Rule:WarnMapiHttpNotEnabled] [Duration:00:00:09.6260075] +[03/07/2021 17:58:46.0625] [1] Started [Rule:VC2013RedistDependencyRequirement] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:46.0626] [1] Started [Setting:VCRedist2013Installed] [Parent:RootAnalysisMember] [ValueType:Boolean] +[03/07/2021 17:58:46.0627] [1] Started [Setting:FileVersionMsvcr120] [Parent:RootAnalysisMember] [ValueType:Version] +[03/07/2021 17:58:46.0659] [1] Active Directory session settings for 'Get-ExchangeServer' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:46.0660] [1] User specified parameters: -Identity:'SOLO-E16A' +[03/07/2021 17:58:46.0660] [1] Beginning processing get-ExchangeServer +[03/07/2021 17:58:46.0726] [1] Searching objects "SOLO-E16A" of type "Server" under the root "$null". +[03/07/2021 17:58:46.0768] [1] Evaluated [Setting:FileVersionMsvcr120] [HasException:False] [Value:"12.0.21005.1"] [ParentValue:""] [Thread:11] [Duration:00:00:00.1411697] +[03/07/2021 17:58:46.0768] [1] Finished [Setting:FileVersionMsvcr120] [Duration:00:00:00.1411697] +[03/07/2021 17:58:46.0768] [1] Evaluated [Setting:VCRedist2013Installed] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:11] [Duration:00:00:00.1421694] +[03/07/2021 17:58:46.0768] [1] Finished [Setting:VCRedist2013Installed] [Duration:00:00:00.1421694] +[03/07/2021 17:58:46.0768] [1] Evaluated [Rule:VC2013RedistDependencyRequirement] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:11] [Duration:00:00:00.1431682] +[03/07/2021 17:58:46.0768] [1] Finished [Rule:VC2013RedistDependencyRequirement] [Duration:00:00:00.1431682] +[03/07/2021 17:58:46.0838] [1] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 17:58:46.0841] [1] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 17:58:46.0841] [1] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 17:58:46.0915] [1] Ending processing get-ExchangeServer +[03/07/2021 17:58:46.0918] [1] Evaluated [Setting:CmdletGetExchangeServerResult] [HasException:False] [Value:"SOLO-E16A"] [ParentValue:""] [Thread:82] [Duration:00:00:10.1360009] +[03/07/2021 17:58:46.0918] [1] Finished [Setting:CmdletGetExchangeServerResult] [Duration:00:00:10.1370104] +[03/07/2021 17:58:46.0950] [1] Active Directory session settings for 'Get-UMService' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:46.0950] [1] User specified parameters: -Identity:'SOLO-E16A' +[03/07/2021 17:58:46.0950] [1] Beginning processing Get-UMService +[03/07/2021 17:58:46.0954] [1] Searching objects "SOLO-E16A" of type "Server" under the root "$null". +[03/07/2021 17:58:47.0013] [1] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 17:58:47.0017] [1] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 17:58:47.0017] [1] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 17:58:47.0055] [1] Ending processing Get-UMService +[03/07/2021 17:58:47.0058] [1] Evaluated [Setting:CmdletGetUMServerResult] [HasException:False] [Value:"SOLO-E16A"] [ParentValue:""] [Thread:102] [Duration:00:00:10.1800205] +[03/07/2021 17:58:47.0058] [1] Finished [Setting:CmdletGetUMServerResult] [Duration:00:00:10.1820983] +[03/07/2021 17:58:47.0063] [1] Finished [Setting:LanguageInUMServer] [Duration:00:00:10.1790085] +[03/07/2021 17:58:47.0063] [1] Finished [Rule:AdditionalUMLangPackExists] [Duration:00:00:10.0620093] +[03/07/2021 17:58:47.0064] [1] Started [Rule:ExchangeAlreadyInstalled] [Parent:RootAnalysisMember] [RuleType:Error] +[03/07/2021 17:58:47.0067] [1] Started [Setting:MsiProductMajor] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:47.0068] [1] Evaluated [Setting:MsiProductMajor] [HasException:False] [Value:"15"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0010010] +[03/07/2021 17:58:47.0068] [1] Finished [Setting:MsiProductMajor] [Duration:00:00:00.0010010] +[03/07/2021 17:58:47.0068] [1] Started [Setting:MsiProductMinor] [Parent:RootAnalysisMember] [ValueType:Nullable`1] +[03/07/2021 17:58:47.0068] [1] Evaluated [Setting:MsiProductMinor] [HasException:False] [Value:"1"] [ParentValue:""] [Thread:5] [Duration:00:00:00] +[03/07/2021 17:58:47.0068] [1] Finished [Setting:MsiProductMinor] [Duration:00:00:00] +[03/07/2021 17:58:47.0068] [1] Evaluated [Rule:ExchangeAlreadyInstalled] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:5] [Duration:00:00:00.0039986] +[03/07/2021 17:58:47.0068] [1] Finished [Rule:ExchangeAlreadyInstalled] [Duration:00:00:00.0039986] +[03/07/2021 17:58:47.0077] [1] Evaluated [Setting:PowerShellExecutionPolicy] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:81] [Duration:00:00:10.3010049] +[03/07/2021 17:58:47.0077] [1] Finished [Setting:PowerShellExecutionPolicy] [Duration:00:00:10.3010049] +[03/07/2021 17:58:47.0077] [1] Evaluated [Rule:PowerShellExecutionPolicyCheckSet] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:81] [Duration:00:00:10.3020085] +[03/07/2021 17:58:47.0077] [1] Finished [Rule:PowerShellExecutionPolicyCheckSet] [Duration:00:00:10.3020085] +[03/07/2021 17:58:48.0703] [1] Evaluated [Setting:PrimaryDNSPortAvailable] [HasException:False] [Value:"True"] [ParentValue:""] [Thread:47] [Duration:00:00:12.1255839] +[03/07/2021 17:58:48.0703] [1] Finished [Setting:PrimaryDNSPortAvailable] [Duration:00:00:12.1265834] +[03/07/2021 17:58:48.0703] [1] Evaluated [Rule:PrimaryDNSTestFailed] [HasException:False] [Value:"False"] [ParentValue:""] [Thread:47] [Duration:00:00:12.1335887] +[03/07/2021 17:58:48.0703] [1] Finished [Rule:PrimaryDNSTestFailed] [Duration:00:00:12.1415835] +[03/07/2021 17:58:48.0708] [1] Finished [Analysis:Prereq] [Duration:00:00:12.2395876] +[03/07/2021 17:58:48.0716] [1] [RECOMENDED] Setup can't detect a Send connector with an address space of '*'. Mail flow to the Internet may not work properly. +[03/07/2021 17:58:48.0726] [1] Ending processing test-SetupPrerequisites +[03/07/2021 17:58:48.0730] [0] Configuring Microsoft Exchange Server +[03/07/2021 17:58:48.0735] [0] Setup is determining what organization-level operations to perform. +[03/07/2021 17:58:48.0735] [0] Setup has detected a missing value. Setup is adding the value PrepareSchema. +[03/07/2021 17:58:48.0735] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization. +[03/07/2021 17:58:48.0735] [0] Setup has detected a missing value. Setup is adding the value PrepareDomain. +[03/07/2021 17:58:48.0735] [0] Because the value was specified, setup is setting the argument OrganizationName to the value SoloORG. +[03/07/2021 17:58:48.0737] [0] ************** +[03/07/2021 17:58:48.0737] [0] Setup will run the task 'Install-ExchangeOrganization' +[03/07/2021 17:58:48.0737] [1] Setup launched task 'Install-ExchangeOrganization -DomainController 'Solo-DC1.Solo.local' -OrganizationName 'SoloORG' -PrepareSchema $true -PrepareOrganization $true -Industry 'NotSpecified' -ActiveDirectorySplitPermissions $null -PrepareDomain $true' +[03/07/2021 17:58:48.0756] [1] Active Directory session settings for 'Install-ExchangeOrganization' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:48.0756] [1] User specified parameters: -DomainController:'Solo-DC1.Solo.local' -OrganizationName:'SoloORG' -PrepareSchema:'True' -PrepareOrganization:'True' -Industry:'NotSpecified' -ActiveDirectorySplitPermissions:$null -PrepareDomain:'True' +[03/07/2021 17:58:48.0759] [1] Beginning processing Install-ExchangeOrganization +[03/07/2021 17:58:48.0785] [1] Loaded component 'Resource Property Schema Component' with 5 task information blocks from 'res://UpdateResourcePropertySchemaComponent.xml' +[03/07/2021 17:58:48.0800] [1] Loaded component 'Active Directory Schema' with 101 task information blocks from 'res://ADSchemaComponent.xml' +[03/07/2021 17:58:48.0826] [1] Loaded component 'Common Global AD Configuration' with 116 task information blocks from 'res://CommonGlobalConfig.xml' +[03/07/2021 17:58:48.0830] [1] Loaded component 'Transport Global AD Configuration' with 32 task information blocks from 'res://TransportGlobalConfig.xml' +[03/07/2021 17:58:48.0836] [1] Loaded component 'Bridgehead Global AD Configuration' with 10 task information blocks from 'res://BridgeheadGlobalConfig.xml' +[03/07/2021 17:58:48.0843] [1] Loaded component 'Client Access Global AD Configuration' with 11 task information blocks from 'res://ClientAccessGlobalConfig.xml' +[03/07/2021 17:58:48.0854] [1] Loaded component 'Mailbox Global AD Configuration' with 27 task information blocks from 'res://MailboxGlobalConfig.xml' +[03/07/2021 17:58:48.0857] [1] Loaded component 'Unified Messaging Global AD Configuration' with 4 task information blocks from 'res://UnifiedMessagingGlobalConfig.xml' +[03/07/2021 17:58:48.0859] [1] Loaded component 'CAFE Global AD Configuration' with 0 task information blocks from 'res://CafeGlobalConfig.xml' +[03/07/2021 17:58:48.0888] [1] Loaded component 'Datacenter Global AD Configuration' with 167 task information blocks from 'res://DatacenterGlobalConfig.xml' +[03/07/2021 17:58:48.0891] [1] Loaded component 'Domain-specific AD Configuration' with 1 task information blocks from 'res://DomainGlobalConfig.xml' +[03/07/2021 17:58:48.0893] [1] Loaded component 'Datacenter AD Domain Configuration' with 0 task information blocks from 'res://DatacenterDomainGlobalConfig.xml' +[03/07/2021 17:58:48.0896] [1] Loaded component 'PostPrepForest Global AD Configuration' with 9 task information blocks from 'res://PostPrepForestGlobalConfig.xml' +[03/07/2021 17:58:48.0917] [1] Loaded 7 parameters from the configuration file "C:\Windows\Temp\ExchangeSetup\bin\EnterpriseServiceEndpointsConfig.xml". +[03/07/2021 17:58:48.0917] [1] Writing informational script to 'C:\ExchangeSetupLogs\Install-ExchangeOrganization-20210307-11584809161326578968.ps1' +[03/07/2021 17:58:48.0927] [1] Executing: $RoleActiveDirectorySplitPermissions = $null +[03/07/2021 17:58:48.0933] [1] Executing: $RoleBinPath = 'C:\Windows\Temp\ExchangeSetup' +[03/07/2021 17:58:48.0934] [1] Executing: $RoleCustomerFeedbackEnabled = $null +[03/07/2021 17:58:48.0936] [1] Executing: $RoleDatacenterServiceEndpointABCHContactService = 'http://pvt-contacts.msn.com/abservice/abservice.asmx' +[03/07/2021 17:58:48.0937] [1] Executing: $RoleDatacenterServiceEndpointDomainPartnerManageDelegation = 'https://domains.live.com/service/managedelegation.asmx' +[03/07/2021 17:58:48.0939] [1] Executing: $RoleDatacenterServiceEndpointDomainPartnerManageDelegation2 = 'https://domains.live.com/service/managedelegation2.asmx' +[03/07/2021 17:58:48.0940] [1] Executing: $RoleDatacenterServiceEndpointLiveFederationMetadata = 'https://nexus.passport.com/FederationMetadata/2006-12/FederationMetadata.xml' +[03/07/2021 17:58:48.0941] [1] Executing: $RoleDatacenterServiceEndpointLiveGetUserRealm = 'https://login.live.com/GetUserRealm.srf' +[03/07/2021 17:58:48.0942] [1] Executing: $RoleDatacenterServiceEndpointLiveServiceLogin2 = 'https://login.live.com/RST2.srf' +[03/07/2021 17:58:48.0944] [1] Executing: $RoleDatacenterServiceEndpointMsoFederationMetadata = 'https://nexus.microsoftonline-p.com/FederationMetadata/2006-12/FederationMetadata.xml' +[03/07/2021 17:58:48.0945] [1] Executing: $RoleDomainController = 'Solo-DC1.Solo.local' +[03/07/2021 17:58:48.0946] [1] Executing: $RoleFullyQualifiedDomainName = 'Solo.local' +[03/07/2021 17:58:48.0947] [1] Executing: $RoleIndustry = 'NotSpecified' +[03/07/2021 17:58:48.0948] [1] Executing: $RoleInstallationMode = 'BuildToBuildUpgrade' +[03/07/2021 17:58:48.0949] [1] Executing: $RoleInvocationID = '20210307-11584809161326578968' +[03/07/2021 17:58:48.0950] [1] Executing: $RoleIsDatacenter = $False +[03/07/2021 17:58:48.0952] [1] Executing: $RoleIsDatacenterDedicated = $False +[03/07/2021 17:58:48.0953] [1] Executing: $RoleIsPartnerHosted = $False +[03/07/2021 17:58:48.0954] [1] Executing: $RoleOrganizationName = 'SoloORG' +[03/07/2021 17:58:48.0955] [1] Executing: $RoleOrgConfigVersion = '16219' +[03/07/2021 17:58:48.0956] [1] Executing: $RolePrepareAllDomains = $False +[03/07/2021 17:58:48.0957] [1] Executing: $RolePrepareDomain = $True +[03/07/2021 17:58:48.0966] [1] Executing: $RolePrepareOrganization = $True +[03/07/2021 17:58:48.0967] [1] Executing: $RolePrepareSchema = $True +[03/07/2021 17:58:48.0969] [1] Executing: $RolePrepareSCT = $False +[03/07/2021 17:58:48.0970] [1] Executing: $RoleProductPlatform = 'amd64' +[03/07/2021 17:58:48.0971] [1] Executing: $RoleResourcePropertySchemaSaveFile = 'C:\ExchangeSetupLogs\ResourcePropertySchema.xml' +[03/07/2021 17:58:48.0972] [1] Executing: $RoleSchemaPrefix = 'PostExchange2003_' +[03/07/2021 17:58:48.0974] [1] Executing: $RoleUpdateResourcePropertySchema = $False +[03/07/2021 17:58:48.0976] [1] 254 tasks were found to run. +[03/07/2021 17:58:48.0978] [1] Processing component 'Resource Property Schema Component' (Updating the resource property schema.). +[03/07/2021 17:58:48.0978] [1] Executing: + if($RoleUpdateResourcePropertySchema -and !(test-path $RoleResourcePropertySchemaSaveFile)) + { + get-resourceconfig -DomainController $RoleDomainController | export-clixml $RoleResourcePropertySchemaSaveFile + } + +[03/07/2021 17:58:48.0993] [1] Executing: + if($RoleUpdateResourcePropertySchema) + { + set-resourceconfig -ResourcePropertySchema $null -DomainController $RoleDomainController + } + +[03/07/2021 17:58:48.0995] [1] Executing: + if($RoleUpdateResourcePropertySchema) + { + Install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\update_ResourcePropertySchema.ldf") + } + +[03/07/2021 17:58:48.0996] [1] Executing: + if(test-path $RoleResourcePropertySchemaSaveFile) + { + $value = import-clixml $RoleResourcePropertySchemaSaveFile; + set-resourceconfig -resourcepropertyschema $value.ResourcePropertySchema -DomainController $RoleDomainController + } + +[03/07/2021 17:58:49.0001] [1] Executing: + Remove-SetupFile -FilePath $RoleResourcePropertySchemaSaveFile + +[03/07/2021 17:58:49.0008] [2] Active Directory session settings for 'Remove-SetupFile' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:49.0008] [2] User specified parameters: -FilePath:'C:\ExchangeSetupLogs\ResourcePropertySchema.xml' +[03/07/2021 17:58:49.0008] [2] Beginning processing Remove-SetupFile +[03/07/2021 17:58:49.0014] [2] Removing temporary file 'C:\ExchangeSetupLogs\ResourcePropertySchema.xml'. +[03/07/2021 17:58:49.0015] [2] Ending processing Remove-SetupFile +[03/07/2021 17:58:49.0018] [1] Processing component 'Active Directory Schema' (Updating the Active Directory schema). +[03/07/2021 17:58:49.0019] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema0.ldf") + + +[03/07/2021 17:58:49.0035] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:49.0035] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema0.ldf' +[03/07/2021 17:58:49.0035] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:58:49.0057] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema0.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:58:49.0194] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:58:49.0195] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:58:49.0197] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema1.ldf") + + +[03/07/2021 17:58:49.0199] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:49.0199] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema1.ldf' +[03/07/2021 17:58:49.0199] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:58:49.0204] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema1.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:58:49.0323] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:58:49.0325] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:58:49.0328] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema2.ldf") + + +[03/07/2021 17:58:49.0329] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:49.0331] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema2.ldf' +[03/07/2021 17:58:49.0331] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:58:49.0336] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema2.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:58:54.0657] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:58:54.0658] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:58:54.0660] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema3.ldf") + + +[03/07/2021 17:58:54.0662] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:58:54.0664] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema3.ldf' +[03/07/2021 17:58:54.0664] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:58:54.0670] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema3.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:02.0465] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:02.0466] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:02.0468] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema4.ldf") + + +[03/07/2021 17:59:02.0469] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:02.0470] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema4.ldf' +[03/07/2021 17:59:02.0470] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:02.0475] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema4.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:10.0149] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:10.0150] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:10.0151] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema5.ldf") + + +[03/07/2021 17:59:10.0153] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:10.0153] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema5.ldf' +[03/07/2021 17:59:10.0154] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:10.0159] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema5.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:17.0882] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:17.0883] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:17.0885] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema6.ldf") + + +[03/07/2021 17:59:17.0887] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:17.0888] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema6.ldf' +[03/07/2021 17:59:17.0888] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:17.0894] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema6.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:18.0288] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:18.0289] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:18.0290] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema7.ldf") + + +[03/07/2021 17:59:18.0293] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:18.0296] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema7.ldf' +[03/07/2021 17:59:18.0296] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:18.0303] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema7.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:18.0403] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:18.0404] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:18.0407] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema8.ldf") + + +[03/07/2021 17:59:18.0408] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:18.0409] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema8.ldf' +[03/07/2021 17:59:18.0409] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:18.0414] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema8.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:18.0524] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:18.0525] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:18.0529] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema9.ldf") + + +[03/07/2021 17:59:18.0534] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:18.0535] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema9.ldf' +[03/07/2021 17:59:18.0535] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:18.0542] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema9.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:18.0650] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:18.0651] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:18.0654] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema10.ldf") + + +[03/07/2021 17:59:18.0656] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:18.0657] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema10.ldf' +[03/07/2021 17:59:18.0657] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:18.0663] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema10.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:18.0776] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:18.0777] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:18.0780] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema11.ldf") + + +[03/07/2021 17:59:18.0784] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:18.0784] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema11.ldf' +[03/07/2021 17:59:18.0785] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:18.0792] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema11.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:18.0900] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:18.0901] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:18.0904] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema12.ldf") + + +[03/07/2021 17:59:18.0906] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:18.0906] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema12.ldf' +[03/07/2021 17:59:18.0906] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:18.0912] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema12.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:19.0017] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:19.0018] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:19.0021] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema13.ldf") + + +[03/07/2021 17:59:19.0028] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:19.0028] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema13.ldf' +[03/07/2021 17:59:19.0028] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:19.0034] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema13.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:19.0149] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:19.0150] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:19.0153] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema14.ldf") + + +[03/07/2021 17:59:19.0154] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:19.0154] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema14.ldf' +[03/07/2021 17:59:19.0155] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:19.0160] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema14.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:19.0274] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:19.0275] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:19.0278] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema15.ldf") + + +[03/07/2021 17:59:19.0280] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:19.0280] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema15.ldf' +[03/07/2021 17:59:19.0280] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:19.0286] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema15.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:19.0979] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:19.0980] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:19.0982] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema16.ldf") + + +[03/07/2021 17:59:19.0984] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:19.0984] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema16.ldf' +[03/07/2021 17:59:19.0984] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:19.0989] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema16.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:23.0643] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:23.0645] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:23.0647] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema17.ldf") + + +[03/07/2021 17:59:23.0650] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:23.0650] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema17.ldf' +[03/07/2021 17:59:23.0650] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:23.0655] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema17.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:23.0761] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:23.0762] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:23.0764] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema18.ldf") + + +[03/07/2021 17:59:23.0766] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:23.0766] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema18.ldf' +[03/07/2021 17:59:23.0766] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:23.0771] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema18.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:23.0877] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:23.0878] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:23.0881] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema19.ldf") + + +[03/07/2021 17:59:23.0883] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:23.0884] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema19.ldf' +[03/07/2021 17:59:23.0884] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:23.0889] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema19.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:23.0982] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:23.0983] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:23.0985] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema20.ldf") + + +[03/07/2021 17:59:23.0988] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:23.0988] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema20.ldf' +[03/07/2021 17:59:23.0988] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:23.0996] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema20.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:24.0103] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:24.0104] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:24.0106] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema21.ldf") + + +[03/07/2021 17:59:24.0108] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:24.0108] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema21.ldf' +[03/07/2021 17:59:24.0109] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:24.0116] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema21.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:24.0526] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:24.0527] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:24.0529] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema22.ldf") + + +[03/07/2021 17:59:24.0534] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:24.0535] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema22.ldf' +[03/07/2021 17:59:24.0535] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:24.0542] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema22.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:24.0646] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:24.0647] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:24.0650] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema23.ldf") + + +[03/07/2021 17:59:24.0652] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:24.0652] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema23.ldf' +[03/07/2021 17:59:24.0653] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:24.0659] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema23.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:24.0796] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:24.0797] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:24.0799] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema24.ldf") + + +[03/07/2021 17:59:24.0801] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:24.0801] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema24.ldf' +[03/07/2021 17:59:24.0801] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:24.0807] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema24.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:24.0923] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:24.0924] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:24.0927] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema25.ldf") + + +[03/07/2021 17:59:24.0929] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:24.0929] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema25.ldf' +[03/07/2021 17:59:24.0930] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:24.0936] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema25.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:25.0624] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:25.0625] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:25.0627] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema26.ldf") + + +[03/07/2021 17:59:25.0628] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:25.0629] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema26.ldf' +[03/07/2021 17:59:25.0629] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:25.0635] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema26.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:30.0658] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:30.0659] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:30.0660] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema27.ldf") + + +[03/07/2021 17:59:30.0662] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:30.0663] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema27.ldf' +[03/07/2021 17:59:30.0663] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:30.0668] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema27.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:30.0767] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:30.0768] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:30.0770] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema28.ldf") + + +[03/07/2021 17:59:30.0772] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:30.0772] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema28.ldf' +[03/07/2021 17:59:30.0772] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:30.0778] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema28.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:30.0879] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:30.0880] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:30.0882] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema29.ldf") + + +[03/07/2021 17:59:30.0884] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:30.0885] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema29.ldf' +[03/07/2021 17:59:30.0885] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:30.0891] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema29.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:30.0996] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:30.0997] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:30.0999] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema30.ldf") + + +[03/07/2021 17:59:31.0001] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:31.0001] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema30.ldf' +[03/07/2021 17:59:31.0001] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:31.0009] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema30.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:31.0110] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:31.0110] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:31.0114] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema31.ldf") + + +[03/07/2021 17:59:31.0116] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:31.0116] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema31.ldf' +[03/07/2021 17:59:31.0116] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:31.0122] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema31.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:33.0239] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:33.0240] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:33.0241] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema32.ldf") + + +[03/07/2021 17:59:33.0243] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:33.0243] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema32.ldf' +[03/07/2021 17:59:33.0243] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:33.0249] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema32.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:38.0931] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:38.0932] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:38.0956] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema33.ldf") + + +[03/07/2021 17:59:38.0958] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:38.0958] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema33.ldf' +[03/07/2021 17:59:38.0958] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:38.0964] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema33.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:39.0646] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:39.0647] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:39.0648] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema34.ldf") + + +[03/07/2021 17:59:39.0651] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:39.0651] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema34.ldf' +[03/07/2021 17:59:39.0651] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:39.0658] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema34.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:40.0049] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:40.0050] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:40.0051] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema35.ldf") + + +[03/07/2021 17:59:40.0057] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:40.0057] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema35.ldf' +[03/07/2021 17:59:40.0057] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:40.0063] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema35.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:41.0081] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:41.0082] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:41.0084] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema36.ldf") + + +[03/07/2021 17:59:41.0086] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:41.0086] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema36.ldf' +[03/07/2021 17:59:41.0086] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:41.0091] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema36.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:41.0490] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:41.0491] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:41.0494] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema37.ldf") + + +[03/07/2021 17:59:41.0496] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:41.0496] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema37.ldf' +[03/07/2021 17:59:41.0496] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:41.0502] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema37.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:41.0603] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:41.0604] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:41.0607] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema38.ldf") + + +[03/07/2021 17:59:41.0609] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:41.0609] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema38.ldf' +[03/07/2021 17:59:41.0610] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:41.0615] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema38.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:43.0082] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:43.0084] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:43.0085] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema39.ldf") + + +[03/07/2021 17:59:43.0088] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:43.0088] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema39.ldf' +[03/07/2021 17:59:43.0088] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:43.0093] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema39.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:43.0482] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:43.0483] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:43.0485] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema40.ldf") + + +[03/07/2021 17:59:43.0487] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:43.0487] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema40.ldf' +[03/07/2021 17:59:43.0487] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:43.0494] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema40.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:45.0378] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:45.0379] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:45.0380] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema41.ldf") + + +[03/07/2021 17:59:45.0382] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:45.0382] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema41.ldf' +[03/07/2021 17:59:45.0383] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:45.0388] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema41.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:47.0761] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:47.0761] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:47.0763] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema42.ldf") + + +[03/07/2021 17:59:47.0766] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:47.0766] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema42.ldf' +[03/07/2021 17:59:47.0766] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:47.0773] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema42.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:48.0796] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:48.0798] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:48.0799] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema43.ldf") + + +[03/07/2021 17:59:48.0801] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:48.0802] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema43.ldf' +[03/07/2021 17:59:48.0802] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:48.0809] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema43.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:49.0509] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:49.0510] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:49.0512] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema44.ldf") + + +[03/07/2021 17:59:49.0514] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:49.0515] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema44.ldf' +[03/07/2021 17:59:49.0515] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:49.0520] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema44.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:49.0924] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:49.0925] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:49.0926] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema45.ldf") + + +[03/07/2021 17:59:49.0928] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:49.0928] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema45.ldf' +[03/07/2021 17:59:49.0928] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:49.0934] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema45.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:50.0041] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:50.0042] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:50.0045] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema46.ldf") + + +[03/07/2021 17:59:50.0045] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:50.0045] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema46.ldf' +[03/07/2021 17:59:50.0045] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:50.0055] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema46.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:51.0350] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:51.0351] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:51.0352] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema47.ldf") + + +[03/07/2021 17:59:51.0355] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:51.0355] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema47.ldf' +[03/07/2021 17:59:51.0355] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:51.0363] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema47.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:52.0508] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:52.0509] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:52.0511] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema48.ldf") + + +[03/07/2021 17:59:52.0520] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:52.0521] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema48.ldf' +[03/07/2021 17:59:52.0521] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:52.0529] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema48.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:55.0632] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:55.0634] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:55.0637] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema49.ldf") + + +[03/07/2021 17:59:55.0640] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:55.0640] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema49.ldf' +[03/07/2021 17:59:55.0640] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:55.0646] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema49.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:56.0837] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:56.0838] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:56.0840] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema50.ldf") + + +[03/07/2021 17:59:56.0842] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:56.0842] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema50.ldf' +[03/07/2021 17:59:56.0842] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:56.0848] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema50.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:57.0520] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:57.0521] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:57.0522] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema51.ldf") + + +[03/07/2021 17:59:57.0524] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:57.0524] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema51.ldf' +[03/07/2021 17:59:57.0524] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:57.0529] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema51.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:57.0920] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:57.0921] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:57.0923] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema52.ldf") + + +[03/07/2021 17:59:57.0924] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:57.0925] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema52.ldf' +[03/07/2021 17:59:57.0925] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:57.0930] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema52.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:58.0619] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:58.0620] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:58.0621] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema53.ldf") + + +[03/07/2021 17:59:58.0624] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:58.0624] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema53.ldf' +[03/07/2021 17:59:58.0624] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:58.0630] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema53.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:59.0017] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:59.0018] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:59.0019] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema54.ldf") + + +[03/07/2021 17:59:59.0021] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:59.0022] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema54.ldf' +[03/07/2021 17:59:59.0022] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:59.0027] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema54.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 17:59:59.0424] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 17:59:59.0425] [2] Ending processing install-ExchangeSchema +[03/07/2021 17:59:59.0427] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema55.ldf") + + +[03/07/2021 17:59:59.0429] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 17:59:59.0429] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema55.ldf' +[03/07/2021 17:59:59.0429] [2] Beginning processing install-ExchangeSchema +[03/07/2021 17:59:59.0434] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema55.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:03.0633] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:03.0635] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:03.0637] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema56.ldf") + + +[03/07/2021 18:00:03.0639] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:03.0640] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema56.ldf' +[03/07/2021 18:00:03.0640] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:03.0646] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema56.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:04.0339] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:04.0340] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:04.0341] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema57.ldf") + + +[03/07/2021 18:00:04.0343] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:04.0344] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema57.ldf' +[03/07/2021 18:00:04.0344] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:04.0350] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema57.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:06.0674] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:06.0675] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:06.0676] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema58.ldf") + + +[03/07/2021 18:00:06.0679] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:06.0680] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema58.ldf' +[03/07/2021 18:00:06.0680] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:06.0689] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema58.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:07.0087] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:07.0088] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:07.0089] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema59.ldf") + + +[03/07/2021 18:00:07.0091] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:07.0091] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema59.ldf' +[03/07/2021 18:00:07.0091] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:07.0096] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema59.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:08.0605] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:08.0606] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:08.0608] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema60.ldf") + + +[03/07/2021 18:00:08.0610] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:08.0611] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema60.ldf' +[03/07/2021 18:00:08.0611] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:08.0617] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema60.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:09.0040] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:09.0044] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:09.0045] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema61.ldf") + + +[03/07/2021 18:00:09.0049] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:09.0051] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema61.ldf' +[03/07/2021 18:00:09.0051] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:09.0056] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema61.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:09.0167] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:09.0168] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:09.0172] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema62.ldf") + + +[03/07/2021 18:00:09.0174] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:09.0174] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema62.ldf' +[03/07/2021 18:00:09.0174] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:09.0179] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema62.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:10.0161] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:10.0162] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:10.0164] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema63.ldf") + + +[03/07/2021 18:00:10.0166] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:10.0166] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema63.ldf' +[03/07/2021 18:00:10.0166] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:10.0174] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema63.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:10.0702] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:10.0703] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:10.0705] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema64.ldf") + + +[03/07/2021 18:00:10.0707] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:10.0707] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema64.ldf' +[03/07/2021 18:00:10.0707] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:10.0713] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema64.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:12.0057] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:12.0059] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:12.0060] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema65.ldf") + + +[03/07/2021 18:00:12.0063] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:12.0063] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema65.ldf' +[03/07/2021 18:00:12.0064] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:12.0072] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema65.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:14.0276] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:14.0277] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:14.0278] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema66.ldf") + + +[03/07/2021 18:00:14.0280] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:14.0280] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema66.ldf' +[03/07/2021 18:00:14.0280] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:14.0291] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema66.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:15.0993] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:15.0994] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:15.0995] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema67.ldf") + + +[03/07/2021 18:00:15.0997] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:15.0998] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema67.ldf' +[03/07/2021 18:00:15.0998] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:16.0004] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema67.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:16.0407] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:16.0408] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:16.0409] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema68.ldf") + + +[03/07/2021 18:00:16.0411] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:16.0411] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema68.ldf' +[03/07/2021 18:00:16.0412] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:16.0421] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema68.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:17.0122] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:17.0123] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:17.0125] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema69.ldf") + + +[03/07/2021 18:00:17.0127] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:17.0127] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema69.ldf' +[03/07/2021 18:00:17.0127] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:17.0133] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema69.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:17.0556] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:17.0557] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:17.0559] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema70.ldf") + + +[03/07/2021 18:00:17.0561] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:17.0561] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema70.ldf' +[03/07/2021 18:00:17.0561] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:17.0569] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema70.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:19.0241] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:19.0242] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:19.0244] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema71.ldf") + + +[03/07/2021 18:00:19.0246] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:19.0246] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema71.ldf' +[03/07/2021 18:00:19.0246] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:19.0253] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema71.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:19.0946] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:19.0947] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:19.0948] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema72.ldf") + + +[03/07/2021 18:00:19.0950] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:19.0950] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema72.ldf' +[03/07/2021 18:00:19.0950] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:19.0962] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema72.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:20.0354] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:20.0355] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:20.0356] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema73.ldf") + + +[03/07/2021 18:00:20.0358] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:20.0358] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema73.ldf' +[03/07/2021 18:00:20.0358] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:20.0365] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema73.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:22.0090] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:22.0091] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:22.0093] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema74.ldf") + + +[03/07/2021 18:00:22.0097] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:22.0097] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema74.ldf' +[03/07/2021 18:00:22.0097] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:22.0103] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema74.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:22.0220] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:22.0221] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:22.0225] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema75.ldf") + + +[03/07/2021 18:00:22.0227] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:22.0227] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema75.ldf' +[03/07/2021 18:00:22.0227] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:22.0232] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema75.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:22.0640] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:22.0641] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:22.0643] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema76.ldf") + + +[03/07/2021 18:00:22.0645] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:22.0645] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema76.ldf' +[03/07/2021 18:00:22.0645] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:22.0650] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema76.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:23.0340] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:23.0340] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:23.0342] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema77.ldf") + + +[03/07/2021 18:00:23.0344] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:23.0344] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema77.ldf' +[03/07/2021 18:00:23.0344] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:23.0354] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema77.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:27.0431] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:27.0432] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:27.0433] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema78.ldf") + + +[03/07/2021 18:00:27.0435] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:27.0435] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema78.ldf' +[03/07/2021 18:00:27.0435] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:27.0441] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema78.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:30.0864] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:30.0865] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:30.0866] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema79.ldf") + + +[03/07/2021 18:00:30.0868] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:30.0868] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema79.ldf' +[03/07/2021 18:00:30.0868] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:30.0874] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema79.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:33.0797] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:33.0798] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:33.0800] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema80.ldf") + + +[03/07/2021 18:00:33.0802] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:33.0802] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema80.ldf' +[03/07/2021 18:00:33.0802] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:33.0809] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema80.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:35.0183] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:35.0184] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:35.0185] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema81.ldf") + + +[03/07/2021 18:00:35.0187] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:35.0188] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema81.ldf' +[03/07/2021 18:00:35.0188] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:35.0198] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema81.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:35.0316] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:35.0317] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:35.0322] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema82.ldf") + + +[03/07/2021 18:00:35.0323] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:35.0323] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema82.ldf' +[03/07/2021 18:00:35.0324] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:35.0330] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema82.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:37.0184] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:37.0185] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:37.0187] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema83.ldf") + + +[03/07/2021 18:00:37.0190] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:37.0191] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema83.ldf' +[03/07/2021 18:00:37.0191] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:37.0196] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema83.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:37.0306] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:37.0307] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:37.0310] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema84.ldf") + + +[03/07/2021 18:00:37.0311] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:37.0312] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema84.ldf' +[03/07/2021 18:00:37.0312] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:37.0318] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema84.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:38.0321] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:38.0321] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:38.0323] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema85.ldf") + + +[03/07/2021 18:00:38.0325] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:38.0325] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema85.ldf' +[03/07/2021 18:00:38.0325] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:38.0332] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema85.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:40.0254] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:40.0254] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:40.0255] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema86.ldf") + + +[03/07/2021 18:00:40.0259] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:40.0260] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema86.ldf' +[03/07/2021 18:00:40.0260] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:40.0266] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema86.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:41.0277] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:41.0278] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:41.0279] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema87.ldf") + + +[03/07/2021 18:00:41.0281] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:41.0283] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema87.ldf' +[03/07/2021 18:00:41.0283] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:41.0291] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema87.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:42.0568] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:42.0569] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:42.0570] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema88.ldf") + + +[03/07/2021 18:00:42.0572] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:42.0573] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema88.ldf' +[03/07/2021 18:00:42.0573] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:42.0578] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema88.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:43.0268] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:43.0268] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:43.0273] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema89.ldf") + + +[03/07/2021 18:00:43.0276] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:43.0276] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema89.ldf' +[03/07/2021 18:00:43.0276] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:43.0282] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema89.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:43.0680] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:43.0681] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:43.0683] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema90.ldf") + + +[03/07/2021 18:00:43.0684] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:43.0685] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema90.ldf' +[03/07/2021 18:00:43.0685] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:43.0691] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema90.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:44.0665] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:44.0666] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:44.0667] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema91.ldf") + + +[03/07/2021 18:00:44.0669] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:44.0669] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema91.ldf' +[03/07/2021 18:00:44.0669] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:44.0674] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema91.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:46.0767] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:46.0768] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:46.0769] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema92.ldf") + + +[03/07/2021 18:00:46.0771] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:46.0771] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema92.ldf' +[03/07/2021 18:00:46.0771] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:46.0777] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema92.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:47.0981] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:47.0982] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:47.0984] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema93.ldf") + + +[03/07/2021 18:00:47.0986] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:47.0986] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema93.ldf' +[03/07/2021 18:00:47.0986] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:47.0993] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema93.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:49.0174] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:49.0175] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:49.0176] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema94.ldf") + + +[03/07/2021 18:00:49.0179] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:49.0179] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema94.ldf' +[03/07/2021 18:00:49.0179] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:49.0185] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema94.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:50.0320] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:50.0321] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:50.0322] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema95.ldf") + + +[03/07/2021 18:00:50.0325] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:50.0325] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema95.ldf' +[03/07/2021 18:00:50.0325] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:50.0334] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema95.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:51.0815] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:51.0815] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:51.0817] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema96.ldf") + + +[03/07/2021 18:00:51.0820] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:51.0820] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema96.ldf' +[03/07/2021 18:00:51.0820] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:51.0825] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema96.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:54.0144] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:54.0145] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:54.0147] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema97.ldf") + + +[03/07/2021 18:00:54.0150] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:54.0150] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema97.ldf' +[03/07/2021 18:00:54.0151] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:54.0157] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema97.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:56.0046] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:56.0048] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:56.0049] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema98.ldf") + + +[03/07/2021 18:00:56.0052] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:56.0052] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema98.ldf' +[03/07/2021 18:00:56.0053] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:56.0060] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema98.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:00:57.0279] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:00:57.0280] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:00:57.0280] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema99.ldf") + + +[03/07/2021 18:00:57.0283] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:00:57.0283] [2] User specified parameters: -LdapFileName:'Setup\Data\PostExchange2003_schema99.ldf' +[03/07/2021 18:00:57.0283] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:00:57.0290] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\PostExchange2003_schema99.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:01:19.0380] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:01:19.0381] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:01:19.0383] [1] Executing: + install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\" + "SchemaVersion.ldf") + + +[03/07/2021 18:01:19.0387] [2] Active Directory session settings for 'Install-ExchangeSchema' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:19.0387] [2] User specified parameters: -LdapFileName:'Setup\Data\SchemaVersion.ldf' +[03/07/2021 18:01:19.0387] [2] Beginning processing install-ExchangeSchema +[03/07/2021 18:01:19.0392] [2] Running with arguments <-i -s "Solo-DC1.Solo.local" -f "C:\Windows\Temp\ExchangeSetup\Setup\Data\SchemaVersion.ldf" -j "C:\Users\Han\AppData\Local\Temp" -c "" "CN=Schema,CN=Configuration,DC=Solo,DC=local">. +[03/07/2021 18:01:20.0613] [2] Process C:\Windows\system32\ldifde.exe finished with exit code 0. +[03/07/2021 18:01:20.0614] [2] Ending processing install-ExchangeSchema +[03/07/2021 18:01:20.0616] [1] Processing component 'Common Global AD Configuration' (Creating Exchange configuration objects in Active Directory.). +[03/07/2021 18:01:20.0620] [1] Executing (non-critical): + if ((Get-OrganizationConfig).ObjectVersion -lt 10649) + { + Get-OfflineAddressBook | foreach + { + if ((Get-ExchangeServer $_.Server.ObjectGuid.ToString()).IsExchange2007OrLater) + { $_ | Set-OfflineAddressBook -DiffRetentionPeriod:30 } + } + } + if ((Get-OrganizationConfig).ObjectVersion -lt 12424) + { + Get-OfflineAddressBook | foreach + { + if ((Get-ExchangeServer $_.Server.ObjectGuid.ToString()).IsExchange2007OrLater) + { $_ | Set-OfflineAddressBook -UseDefaultAttributes -MaxBinaryPropertySize:32768 -MaxMultivaluedBinaryPropertySize:65536 -MaxStringPropertySize:3400 -MaxMultivaluedStringPropertySize:65536 } + } + } + +[03/07/2021 18:01:20.0625] [2] Active Directory session settings for 'Get-OrganizationConfig' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:20.0626] [2] User specified parameters: +[03/07/2021 18:01:20.0626] [2] Beginning processing Get-OrganizationConfig +[03/07/2021 18:01:20.0627] [2] Searching objects of type "ADOrganizationConfig" with filter "$null", scope "SubTree" under the root "$null". +[03/07/2021 18:01:20.0628] [2] Request filter in Get Task: (&(|(objectCategory=msExchOrganizationContainer)(objectCategory=msExchConfigurationUnitContainer))(|(&(msExchVersion<=3377699720527872)(!(msExchVersion=3377699720527872)))(!(msExchVersion=*)))). +[03/07/2021 18:01:20.0634] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:20.0635] [2] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 18:01:20.0650] [2] Ending processing Get-OrganizationConfig +[03/07/2021 18:01:20.0657] [2] Active Directory session settings for 'Get-OrganizationConfig' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:20.0657] [2] User specified parameters: +[03/07/2021 18:01:20.0658] [2] Beginning processing Get-OrganizationConfig +[03/07/2021 18:01:20.0658] [2] Searching objects of type "ADOrganizationConfig" with filter "$null", scope "SubTree" under the root "$null". +[03/07/2021 18:01:20.0658] [2] Request filter in Get Task: (&(|(objectCategory=msExchOrganizationContainer)(objectCategory=msExchConfigurationUnitContainer))(|(&(msExchVersion<=3377699720527872)(!(msExchVersion=3377699720527872)))(!(msExchVersion=*)))). +[03/07/2021 18:01:20.0663] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:20.0663] [2] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 18:01:20.0675] [2] Ending processing Get-OrganizationConfig +[03/07/2021 18:01:20.0677] [1] Executing: + buildToBuildUpgrade-ExsetDataAtom -AtomName OrgLevelCt -DomainController $RoleDomainController + + +[03/07/2021 18:01:20.0686] [2] Active Directory session settings for 'BuildToBuildUpgrade-ExsetdataAtom' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:20.0686] [2] User specified parameters: -AtomName:'OrgLevelCt' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:20.0686] [2] Beginning processing buildToBuildUpgrade-ExsetDataAtom +[03/07/2021 18:01:20.0694] [2] Calling exsetdata atom OrgLevelCt in mode "Reinstall". +[03/07/2021 18:01:20.0790] [2] Entering CFileManager::ScInit +[03/07/2021 18:01:20.0790] [2] Entering CFileManager::ScAutoDetectDirectoryLocations +[03/07/2021 18:01:20.0793] [2] CService::ScQueryServiceConfig (d:\dbs\sh\e16df\1126_100440_0\cmd\1u\sources\dev\admin\src\libs\exsetup\service.cxx:541) + Error code 0XC0070424 (1060): The specified service does not exist as an installed service. +[03/07/2021 18:01:20.0793] [2] ScGetClusterSvcDir (d:\dbs\sh\e16df\1126_100440_0\cmd\1u\sources\dev\admin\src\libs\exsetup\exmisc.cxx:1600) + Error code 0XC0070424 (1060): The specified service does not exist as an installed service. +[03/07/2021 18:01:20.0793] [2] === IGNORING PREVIOUS ERRORS === CFileManager::ScAutoDetectDirectoryLocations (d:\dbs\sh\e16df\1126_100440_0\cmd\5\sources\dev\admin\src\udog\setupbase\tools\filemgr.cxx:437) + The operation has completed successfully. +[03/07/2021 18:01:20.0794] [2] Leaving CFileManager::ScAutoDetectDirectoryLocations +[03/07/2021 18:01:20.0794] [2] Leaving CFileManager::ScInit +[03/07/2021 18:01:20.0794] [2] Entering CRegistryManager::ScInit +[03/07/2021 18:01:20.0794] [2] Leaving CRegistryManager::ScInit +[03/07/2021 18:01:20.0794] [2] Entering CDirectoryManager::ScInit +[03/07/2021 18:01:20.0794] [2] Entering ScIsComputerMemberOfDomain +[03/07/2021 18:01:20.0795] [2] NetGetJoinInformation: Domain/workgroup = "SOLO" +[03/07/2021 18:01:20.0795] [2] NetGetJoinInformation: NETSETUP_JOIN_STATUS = 3 +[03/07/2021 18:01:20.0795] [2] The computer is a member of a domain +[03/07/2021 18:01:20.0795] [2] Leaving ScIsComputerMemberOfDomain +[03/07/2021 18:01:20.0795] [2] Leaving CDirectoryManager::ScInit +[03/07/2021 18:01:20.0796] [2] Entering CFileManager::ScSetInstallDestDir(sz) +[03/07/2021 18:01:20.0796] [2] Leaving CFileManager::ScSetInstallDestDir(sz) +[03/07/2021 18:01:20.0796] [2] Entering CDirectoryManager::ScReInitWithDC +[03/07/2021 18:01:20.0796] [2] Reinitalizing the DS Manager, using the DC Solo-DC1.Solo.local +[03/07/2021 18:01:20.0796] [2] Entering CDirectoryManager::ScGetLocalDomainInformation +[03/07/2021 18:01:20.0796] [2] Getting information about the local domain +[03/07/2021 18:01:20.0796] [2] m_strLocalServer = "SOLO-E16A" +[03/07/2021 18:01:20.0796] [2] m_strLocalSite = "Default-First-Site-Name" +[03/07/2021 18:01:20.0796] [2] DsRoleGetPrimaryDomainInformation returned: +[03/07/2021 18:01:20.0796] [2] DSROLE_PRIMARY_DOMAIN_INFORMATION::MachineRole = 3 +[03/07/2021 18:01:20.0796] [2] DSROLE_PRIMARY_DOMAIN_INFORMATION::Flags = 1000000 +[03/07/2021 18:01:20.0796] [2] DSROLE_PRIMARY_DOMAIN_INFORMATION::DomainNameFlat = "SOLO" +[03/07/2021 18:01:20.0797] [2] DSROLE_PRIMARY_DOMAIN_INFORMATION::DomainNameDns = "Solo.local" +[03/07/2021 18:01:20.0797] [2] DSROLE_PRIMARY_DOMAIN_INFORMATION::DomainForestName = "Solo.local" +[03/07/2021 18:01:20.0797] [2] User has specified a DC; m_strDC = "Solo-DC1.Solo.local" +[03/07/2021 18:01:20.0821] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:20.0827] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:20.0828] [2] schema master server name: Solo-DC1.Solo.local +[03/07/2021 18:01:20.0829] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:20.0831] [2] schema master domain : /dc=local/dc=Solo +[03/07/2021 18:01:20.0831] [2] m_strSchemaMasterDC = "Solo-DC1.Solo.local" +[03/07/2021 18:01:20.0831] [2] m_strSchemaMasterDCDomainDN = "/dc=local/dc=Solo" +[03/07/2021 18:01:20.0837] [2] strConfigNC = "CN=Configuration,DC=Solo,DC=local" +[03/07/2021 18:01:20.0837] [2] m_strRootDomain = "Solo.local" +[03/07/2021 18:01:20.0838] [2] m_strOwnershipControlDC = "Solo-DC1.Solo.local" +[03/07/2021 18:01:20.0838] [2] m_strPermissionControlDC = "Solo-DC1.Solo.local" +[03/07/2021 18:01:20.0838] [2] Leaving CDirectoryManager::ScGetLocalDomainInformation +[03/07/2021 18:01:20.0846] [2] Entering CDirectoryManager::ScGetOrgLevelObjectStatus +[03/07/2021 18:01:20.0846] [2] Entering CDirectoryManager::ScSchemaIsUpToDate +[03/07/2021 18:01:20.0847] [2] Entering ScGetSchemaVersion +[03/07/2021 18:01:20.0847] [2] About to create the dob for object /dc=local/dc=Solo/cn=Configuration/cn=Schema/cn=ms-Exch-Schema-Version-Pt +[03/07/2021 18:01:20.0848] [2] The schema version identified for the Server is 15333 +[03/07/2021 18:01:20.0848] [2] Leaving ScGetSchemaVersion +[03/07/2021 18:01:20.0849] [2] Leaving CDirectoryManager::ScSchemaIsUpToDate +[03/07/2021 18:01:20.0849] [2] Entering CDirectoryManager::ScGetCountOfOrgsInDomain +[03/07/2021 18:01:20.0854] [2] Leaving CDirectoryManager::ScGetCountOfOrgsInDomain +[03/07/2021 18:01:20.0854] [2] Leaving CDirectoryManager::ScGetOrgLevelObjectStatus +[03/07/2021 18:01:20.0854] [2] Entering CDirectoryManager::ScDeterminePermissionLevel +[03/07/2021 18:01:20.0854] [2] Checking permissions in the Config NC: /dc=local/dc=Solo/cn=Configuration/cn=Services +[03/07/2021 18:01:20.0856] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:20.0858] [2] We have permission ConfigNC_Read +[03/07/2021 18:01:20.0859] [2] We have permission ConfigNC_Write +[03/07/2021 18:01:20.0861] [2] We have permission ConfigNC_SetPerms +[03/07/2021 18:01:20.0861] [2] Checking permissions on the Schema container: /dc=local/dc=Solo/cn=Configuration/cn=Schema +[03/07/2021 18:01:20.0863] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:20.0864] [2] We have permission ConfigNC_UpdateSchema +[03/07/2021 18:01:20.0864] [2] Checking permissions in the Domain NC: /dc=local/dc=Solo +[03/07/2021 18:01:20.0867] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:20.0870] [2] We have permission DomainNC_Read +[03/07/2021 18:01:20.0870] [2] We have permission DomainNC_Write +[03/07/2021 18:01:20.0870] [2] Checking to see if an Exchange org exists +[03/07/2021 18:01:20.0874] [2] Found the organization "SoloORG" +[03/07/2021 18:01:20.0874] [2] Checking read permissions on the org: /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Administrative Groups +[03/07/2021 18:01:20.0876] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:20.0878] [2] We have permission ExchOrg_Read +[03/07/2021 18:01:20.0878] [2] Checking write/security permissions on the org: /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG +[03/07/2021 18:01:20.0881] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:20.0886] [2] We have permission (ExchOrg_Write | ExchAG_Write) +[03/07/2021 18:01:20.0887] [2] We have permission (ExchOrg_SetPerms | ExchAG_SetPerms) +[03/07/2021 18:01:20.0887] [2] Looking for an existing server object +[03/07/2021 18:01:20.0890] [2] Found existing server object "/dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Administrative Groups/cn=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Servers/cn=SOLO-E16A" +[03/07/2021 18:01:20.0890] [2] Checking permissions on the admin group: /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Administrative Groups/cn=Exchange Administrative Group (FYDIBOHF23SPDLT) +[03/07/2021 18:01:20.0891] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:20.0893] [2] We have permission ExchAG_Read +[03/07/2021 18:01:20.0893] [2] We have permission ExchAG_Write +[03/07/2021 18:01:20.0894] [2] We have permission ExchAG_SetPerms +[03/07/2021 18:01:20.0894] [2] Final set of permissions: 0XF0C0E0E0 +[03/07/2021 18:01:20.0894] [2] Leaving CDirectoryManager::ScDeterminePermissionLevel +[03/07/2021 18:01:20.0894] [2] Leaving CDirectoryManager::ScReInitWithDC +[03/07/2021 18:01:20.0903] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:20.0904] [2] Entering ScFindRoutingGroupThatContainsServer +[03/07/2021 18:01:20.0908] [2] Leaving ScFindRoutingGroupThatContainsServer +[03/07/2021 18:01:20.0908] [2] Attempting to escape RG name (Exchange Routing Group (DWBGZMFD01QNBJR)) +[03/07/2021 18:01:20.0908] [2] The escaped RG name is (Exchange Routing Group (DWBGZMFD01QNBJR)) +[03/07/2021 18:01:20.0930] [2] Entering CRegistryManager::ScInitFromContext +[03/07/2021 18:01:20.0930] [2] Leaving CRegistryManager::ScInitFromContext +[03/07/2021 18:01:20.0930] [2] Entering ScSetAdminGroupNamesOnManagedCodeContext +[03/07/2021 18:01:20.0930] [2] Leaving ScSetAdminGroupOnManagedCodeContext +[03/07/2021 18:01:20.0930] [2] Entering ScSetupAtom +[03/07/2021 18:01:20.0930] [2] Parameters: +[03/07/2021 18:01:20.0930] [2] idsAtomID: 0X0000FAB2 ("Microsoft Exchange Organization-Level Container Object") +[03/07/2021 18:01:20.0930] [2] idsSetupMode: 0X0000F203 ("Reinstall") +[03/07/2021 18:01:20.0930] [2] szDestDir: "C:\Windows\Temp\ExchangeSetup" [context value is: "C:\Windows\Temp\ExchangeSetup"] +[03/07/2021 18:01:20.0930] [2] szSourceDir: "C:\Windows\Temp\ExchangeSetup" [context value is: "C:\Windows\Temp\ExchangeSetup"] +[03/07/2021 18:01:20.0930] [2] szOrg: "" [context value is: "SoloORG"] +[03/07/2021 18:01:20.0930] [2] szLegacyOrg: "" [context value is: "SoloORG"] +[03/07/2021 18:01:20.0930] [2] szAdminGroup: "Exchange Administrative Group (FYDIBOHF23SPDLT)" [context value is: "Exchange Administrative Group (FYDIBOHF23SPDLT)"] +[03/07/2021 18:01:20.0930] [2] szLegacyAdminGroup: "Exchange Administrative Group (FYDIBOHF23SPDLT)" [context value is: "Exchange Administrative Group (FYDIBOHF23SPDLT)"] +[03/07/2021 18:01:20.0930] [2] szAdminGroupContainingRoutingGroup: "Exchange Administrative Group (FYDIBOHF23SPDLT)" [context value is: "Exchange Administrative Group (FYDIBOHF23SPDLT)"] +[03/07/2021 18:01:20.0930] [2] szRoutingGroup: "Exchange Routing Group (DWBGZMFD01QNBJR)" [context value is: "Exchange Routing Group (DWBGZMFD01QNBJR)"] +[03/07/2021 18:01:20.0933] [2] Looking for server object... +[03/07/2021 18:01:20.0935] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:20.0940] [2] Found server object; looking for serial number... +[03/07/2021 18:01:20.0940] [2] Serial number is "Version 15.1 (Build 32106.2)" +[03/07/2021 18:01:20.0944] [2] s_fUpgradingFromPT is FALSE +[03/07/2021 18:01:20.0944] [2] Entering CAtomOrgLevelCt::ScPreSetup +[03/07/2021 18:01:20.0944] [2] Entering CBaseServiceAtom(Microsoft Exchange Organization-Level Container Object)::ScPreSetup +[03/07/2021 18:01:20.0944] [2] Entering CBaseServiceAtom(Microsoft Exchange Organization-Level Container Object)::ScStopAtomServices +[03/07/2021 18:01:20.0944] [2] Leaving CBaseServiceAtom(Microsoft Exchange Organization-Level Container Object)::ScStopAtomServices +[03/07/2021 18:01:20.0944] [2] Leaving CBaseServiceAtom(Microsoft Exchange Organization-Level Container Object)::ScPreSetup +[03/07/2021 18:01:20.0944] [2] Leaving CAtomOrgLevelCt::ScPreSetup +[03/07/2021 18:01:20.0945] [2] Beginning Reinstall of Microsoft Exchange Organization-Level Container Object sub-component. +[03/07/2021 18:01:20.0945] [2] Entering CAtomOrgLevelCt::ScReinstall +[03/07/2021 18:01:20.0945] [2] Entering CBaseAtom(Microsoft Exchange Organization-Level Container Object)::ScRefreshDSObjects +[03/07/2021 18:01:20.0945] [2] Entering CAtomOrgLevelCt::ScAddDSObjects +[03/07/2021 18:01:21.0258] [2] Creating Active Directory objects for Microsoft Exchange Organization-Level Container Object. +[03/07/2021 18:01:21.0261] [2] Creating Microsoft Exchange container +[03/07/2021 18:01:21.0261] [2] Entering ScCreateExchangeCT +[03/07/2021 18:01:21.0268] [2] Leaving ScCreateExchangeCT +[03/07/2021 18:01:21.0268] [2] Creating Microsoft Exchange organization +[03/07/2021 18:01:21.0268] [2] Entering CAtomOrgLevelCt::ScCreateOrgCT +[03/07/2021 18:01:21.0275] [2] Leaving CAtomOrgLevelCt::ScCreateOrgCT +[03/07/2021 18:01:21.0276] [2] Entering ScHavePermissionToCreateDSObject +[03/07/2021 18:01:21.0279] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:21.0282] [2] Leaving ScHavePermissionToCreateDSObject +[03/07/2021 18:01:21.0282] [2] Configuring administrative rights +[03/07/2021 18:01:21.0283] [2] Entering ScInstallLDIFScript +[03/07/2021 18:01:21.0538] [2] Leaving ScInstallLDIFScript +[03/07/2021 18:01:21.0553] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:21.0555] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:21.0558] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:21.0586] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:21.0643] [2] Entering CAtomOrgLevelCt::ScAddPTAdministratorToAdminsAttr +[03/07/2021 18:01:21.0644] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:21.0647] [2] Leaving CAtomOrgLevelCt::ScAddPTAdministratorToAdminsAttr +[03/07/2021 18:01:21.0674] [2] Leaving CAtomOrgLevelCt::ScAddDSObjects +[03/07/2021 18:01:21.0674] [2] Leaving CBaseAtom(Microsoft Exchange Organization-Level Container Object)::ScRefreshDSObjects +[03/07/2021 18:01:21.0674] [2] Leaving CAtomOrgLevelCt::ScReinstall +[03/07/2021 18:01:21.0674] [2] Entering CAtomOrgLevelCt::ScUpdateSharedAtomRemovalControl +[03/07/2021 18:01:21.0674] [2] Leaving CAtomOrgLevelCt::ScUpdateSharedAtomRemovalControl +[03/07/2021 18:01:21.0674] [2] Completed Reinstall of Microsoft Exchange Organization-Level Container Object sub-component. +[03/07/2021 18:01:21.0674] [2] Leaving ScSetupAtom +[03/07/2021 18:01:21.0678] [2] Ending processing buildToBuildUpgrade-ExsetDataAtom +[03/07/2021 18:01:21.0680] [1] Executing: + install-RootOrganizationContainer -DomainController $RoleDomainController + + +[03/07/2021 18:01:21.0708] [2] Active Directory session settings for 'Install-RootOrganizationContainer' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:21.0709] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:21.0709] [2] Beginning processing install-RootOrganizationContainer +[03/07/2021 18:01:21.0722] [2] Ending processing install-RootOrganizationContainer +[03/07/2021 18:01:21.0725] [1] Executing: + Install-Container "ServiceEndpoints" + + +[03/07/2021 18:01:21.0732] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:21.0732] [2] User specified parameters: -Name:'ServiceEndpoints' +[03/07/2021 18:01:21.0732] [2] Beginning processing Install-Container +[03/07/2021 18:01:21.0745] [2] Processing object "ServiceEndpoints". +[03/07/2021 18:01:21.0751] [2] Ending processing Install-Container +[03/07/2021 18:01:21.0754] [1] Executing: + Get-Variable RoleDatacenterServiceEndpoint* | + foreach { + Write-ExchangeSetupLog -Info ("Adding endpoint from variable " + $_.Name); + if ($_.Value -eq $null -or $_.Value -eq [String]::Empty) + { + Write-ExchangeSetupLog -Info ("Variable is null or empty. Skipping."); + continue; + } + $epName = $_.Name.Substring("RoleDatacenterServiceEndpoint".Length); + $epXml = [xml]$_.Value; + $epUrl = $epXml.ServiceEndpoint.Url; + $epUrlTemplate = $epXml.ServiceEndpoint.UrlTemplate; + $epToken = $epXml.ServiceEndpoint.Token; + $epCert = $epXml.ServiceEndpoint.CertificateSubjectName; + $epAdditionalKeywords = $epXml.ServiceEndpoint.AdditionalKeywords; + if ([string]::IsNullorEmpty($epUrl)) + { + Write-ExchangeSetupLog -Info ("Calling New-ServiceEndPoint for endpoint $epName with URL template $epUrlTemplate, Token $epToken and certificate subject $epCert"); + New-ServiceEndpoint -Name $epName -UrlTemplate $epUrlTemplate -Token $epToken -CertificateSubjectName $epCert -AdditionalKeywords $epAdditionalKeywords -DomainController $RoleDomainController; + } + else + { + Write-ExchangeSetupLog -Info ("Calling New-ServiceEndPoint for endpoint $epName with URL $epUrl, URL template $epUrlTemplate, Token $epToken and certificate subject $epCert"); + New-ServiceEndpoint -Name $epName -Url $epUrl -UrlTemplate $epUrlTemplate -Token $epToken -CertificateSubjectName $epCert -AdditionalKeywords $epAdditionalKeywords -DomainController $RoleDomainController; + } + } + +[03/07/2021 18:01:21.0781] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0784] [2] Adding endpoint from variable RoleDatacenterServiceEndpointABCHContactService +[03/07/2021 18:01:21.0785] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0832] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0833] [2] Calling New-ServiceEndPoint for endpoint ABCHContactService with URL http://pvt-contacts.msn.com/abservice/abservice.asmx, URL template , Token and certificate subject +[03/07/2021 18:01:21.0834] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0852] [2] Active Directory session settings for 'New-ServiceEndpoint' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:21.0852] [2] User specified parameters: -Name:'ABCHContactService' -Url:'http://pvt-contacts.msn.com/abservice/abservice.asmx' -UrlTemplate:$null -Token:$null -CertificateSubjectName:$null -AdditionalKeywords:$null -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:21.0852] [2] Beginning processing New-ServiceEndpoint +[03/07/2021 18:01:21.0854] [2] Processing object "ABCHContactService". +[03/07/2021 18:01:21.0929] [2] The service endpoint 'ABCHContactService' was updated on server 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:21.0930] [2] Ending processing New-ServiceEndpoint +[03/07/2021 18:01:21.0931] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0932] [2] Adding endpoint from variable RoleDatacenterServiceEndpointDomainPartnerManageDelegation +[03/07/2021 18:01:21.0932] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0934] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0934] [2] Calling New-ServiceEndPoint for endpoint DomainPartnerManageDelegation with URL https://domains.live.com/service/managedelegation.asmx, URL template , Token and certificate subject +[03/07/2021 18:01:21.0935] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0936] [2] Active Directory session settings for 'New-ServiceEndpoint' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:21.0936] [2] User specified parameters: -Name:'DomainPartnerManageDelegation' -Url:'https://domains.live.com/service/managedelegation.asmx' -UrlTemplate:$null -Token:$null -CertificateSubjectName:$null -AdditionalKeywords:$null -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:21.0936] [2] Beginning processing New-ServiceEndpoint +[03/07/2021 18:01:21.0937] [2] Processing object "DomainPartnerManageDelegation". +[03/07/2021 18:01:21.0941] [2] The service endpoint 'DomainPartnerManageDelegation' was updated on server 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:21.0942] [2] Ending processing New-ServiceEndpoint +[03/07/2021 18:01:21.0943] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0944] [2] Adding endpoint from variable RoleDatacenterServiceEndpointDomainPartnerManageDelegation2 +[03/07/2021 18:01:21.0944] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0946] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0946] [2] Calling New-ServiceEndPoint for endpoint DomainPartnerManageDelegation2 with URL https://domains.live.com/service/managedelegation2.asmx, URL template , Token and certificate subject +[03/07/2021 18:01:21.0947] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0948] [2] Active Directory session settings for 'New-ServiceEndpoint' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:21.0949] [2] User specified parameters: -Name:'DomainPartnerManageDelegation2' -Url:'https://domains.live.com/service/managedelegation2.asmx' -UrlTemplate:$null -Token:$null -CertificateSubjectName:$null -AdditionalKeywords:$null -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:21.0949] [2] Beginning processing New-ServiceEndpoint +[03/07/2021 18:01:21.0949] [2] Processing object "DomainPartnerManageDelegation2". +[03/07/2021 18:01:21.0954] [2] The service endpoint 'DomainPartnerManageDelegation2' was updated on server 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:21.0954] [2] Ending processing New-ServiceEndpoint +[03/07/2021 18:01:21.0956] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0956] [2] Adding endpoint from variable RoleDatacenterServiceEndpointLiveFederationMetadata +[03/07/2021 18:01:21.0957] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0958] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0959] [2] Calling New-ServiceEndPoint for endpoint LiveFederationMetadata with URL https://nexus.passport.com/FederationMetadata/2006-12/FederationMetadata.xml, URL template , Token and certificate subject +[03/07/2021 18:01:21.0960] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0961] [2] Active Directory session settings for 'New-ServiceEndpoint' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:21.0961] [2] User specified parameters: -Name:'LiveFederationMetadata' -Url:'https://nexus.passport.com/FederationMetadata/2006-12/FederationMetadata.xml' -UrlTemplate:$null -Token:$null -CertificateSubjectName:$null -AdditionalKeywords:$null -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:21.0961] [2] Beginning processing New-ServiceEndpoint +[03/07/2021 18:01:21.0962] [2] Processing object "LiveFederationMetadata". +[03/07/2021 18:01:21.0967] [2] The service endpoint 'LiveFederationMetadata' was updated on server 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:21.0968] [2] Ending processing New-ServiceEndpoint +[03/07/2021 18:01:21.0970] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0970] [2] Adding endpoint from variable RoleDatacenterServiceEndpointLiveGetUserRealm +[03/07/2021 18:01:21.0971] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0972] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0973] [2] Calling New-ServiceEndPoint for endpoint LiveGetUserRealm with URL https://login.live.com/GetUserRealm.srf, URL template , Token and certificate subject +[03/07/2021 18:01:21.0973] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0974] [2] Active Directory session settings for 'New-ServiceEndpoint' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:21.0975] [2] User specified parameters: -Name:'LiveGetUserRealm' -Url:'https://login.live.com/GetUserRealm.srf' -UrlTemplate:$null -Token:$null -CertificateSubjectName:$null -AdditionalKeywords:$null -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:21.0975] [2] Beginning processing New-ServiceEndpoint +[03/07/2021 18:01:21.0975] [2] Processing object "LiveGetUserRealm". +[03/07/2021 18:01:21.0982] [2] The service endpoint 'LiveGetUserRealm' was updated on server 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:21.0982] [2] Ending processing New-ServiceEndpoint +[03/07/2021 18:01:21.0984] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0985] [2] Adding endpoint from variable RoleDatacenterServiceEndpointLiveServiceLogin2 +[03/07/2021 18:01:21.0985] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0987] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0987] [2] Calling New-ServiceEndPoint for endpoint LiveServiceLogin2 with URL https://login.live.com/RST2.srf, URL template , Token and certificate subject +[03/07/2021 18:01:21.0988] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0989] [2] Active Directory session settings for 'New-ServiceEndpoint' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:21.0989] [2] User specified parameters: -Name:'LiveServiceLogin2' -Url:'https://login.live.com/RST2.srf' -UrlTemplate:$null -Token:$null -CertificateSubjectName:$null -AdditionalKeywords:$null -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:21.0989] [2] Beginning processing New-ServiceEndpoint +[03/07/2021 18:01:21.0990] [2] Processing object "LiveServiceLogin2". +[03/07/2021 18:01:21.0994] [2] The service endpoint 'LiveServiceLogin2' was updated on server 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:21.0994] [2] Ending processing New-ServiceEndpoint +[03/07/2021 18:01:21.0994] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0997] [2] Adding endpoint from variable RoleDatacenterServiceEndpointMsoFederationMetadata +[03/07/2021 18:01:21.0998] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:21.0999] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:22.0000] [2] Calling New-ServiceEndPoint for endpoint MsoFederationMetadata with URL https://nexus.microsoftonline-p.com/FederationMetadata/2006-12/FederationMetadata.xml, URL template , Token and certificate subject +[03/07/2021 18:01:22.0000] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:22.0001] [2] Active Directory session settings for 'New-ServiceEndpoint' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0001] [2] User specified parameters: -Name:'MsoFederationMetadata' -Url:'https://nexus.microsoftonline-p.com/FederationMetadata/2006-12/FederationMetadata.xml' -UrlTemplate:$null -Token:$null -CertificateSubjectName:$null -AdditionalKeywords:$null -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0002] [2] Beginning processing New-ServiceEndpoint +[03/07/2021 18:01:22.0002] [2] Processing object "MsoFederationMetadata". +[03/07/2021 18:01:22.0007] [2] The service endpoint 'MsoFederationMetadata' was updated on server 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0007] [2] Ending processing New-ServiceEndpoint +[03/07/2021 18:01:22.0009] [1] Executing: + install-Container -Name:"Workload Management Settings" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0021] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0022] [2] User specified parameters: -Name:'Workload Management Settings' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0022] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0023] [2] Processing object "Workload Management Settings". +[03/07/2021 18:01:22.0026] [2] Ending processing install-Container +[03/07/2021 18:01:22.0029] [1] Executing: + install-Container -Name:"Monitoring Settings" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0032] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0034] [2] User specified parameters: -Name:'Monitoring Settings' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0034] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0034] [2] Processing object "Monitoring Settings". +[03/07/2021 18:01:22.0038] [2] Ending processing install-Container +[03/07/2021 18:01:22.0040] [1] Executing: + install-Container -Name:"Monitoring Settings","Overrides" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0042] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0042] [2] User specified parameters: -Name:'Monitoring Settings','Overrides' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0042] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0043] [2] Processing object "Overrides". +[03/07/2021 18:01:22.0046] [2] Ending processing install-Container +[03/07/2021 18:01:22.0048] [1] Executing: + install-Container -Name:"Monitoring Settings","Overrides","Probe" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0049] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0050] [2] User specified parameters: -Name:'Monitoring Settings','Overrides','Probe' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0050] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0050] [2] Processing object "Probe". +[03/07/2021 18:01:22.0053] [2] Ending processing install-Container +[03/07/2021 18:01:22.0055] [1] Executing: + install-Container -Name:"Monitoring Settings","Overrides","Monitor" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0057] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0058] [2] User specified parameters: -Name:'Monitoring Settings','Overrides','Monitor' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0058] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0058] [2] Processing object "Monitor". +[03/07/2021 18:01:22.0062] [2] Ending processing install-Container +[03/07/2021 18:01:22.0063] [1] Executing: + install-Container -Name:"Monitoring Settings","Overrides","Responder" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0066] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0066] [2] User specified parameters: -Name:'Monitoring Settings','Overrides','Responder' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0066] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0067] [2] Processing object "Responder". +[03/07/2021 18:01:22.0072] [2] Ending processing install-Container +[03/07/2021 18:01:22.0095] [1] Executing: + install-Container -Name:"Monitoring Settings","Overrides","Maintenance" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0097] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0097] [2] User specified parameters: -Name:'Monitoring Settings','Overrides','Maintenance' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0097] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0098] [2] Processing object "Maintenance". +[03/07/2021 18:01:22.0101] [2] Ending processing install-Container +[03/07/2021 18:01:22.0104] [1] Executing: + Install-AutoDiscoverContainer -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0112] [2] Active Directory session settings for 'Install-AutoDiscoverContainer' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0113] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0113] [2] Beginning processing Install-AutoDiscoverContainer +[03/07/2021 18:01:22.0116] [2] Processing object "Solo.local/Configuration/Services/Microsoft Exchange Autodiscover". +[03/07/2021 18:01:22.0136] [2] The properties changed on the object '' (CN=Microsoft Exchange Autodiscover,CN=Services,CN=Configuration,DC=Solo,DC=local) are: "{ Id[distinguishedName]='Solo.local/Configuration/Services/Microsoft Exchange Autodiscover', OrganizationId[msExchOURoot, msExchCU]='' }". +[03/07/2021 18:01:22.0142] [2] Saving object "Solo.local/Configuration/Services/Microsoft Exchange Autodiscover" of type "ADContainer" and state "New". +[03/07/2021 18:01:22.0218] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0219] [2] Ending processing Install-AutoDiscoverContainer +[03/07/2021 18:01:22.0221] [1] Executing: + if ($RoleCustomerFeedbackEnabled -ne $null) + { + Set-OrganizationConfig -CustomerFeedbackEnabled $RoleCustomerFeedbackEnabled; + } + +[03/07/2021 18:01:22.0225] [1] Executing: + Set-OrganizationConfig -Industry $RoleIndustry; + +[03/07/2021 18:01:22.0259] [2] Active Directory session settings for 'Set-OrganizationConfig' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0260] [2] User specified parameters: -Industry:'NotSpecified' +[03/07/2021 18:01:22.0260] [2] Beginning processing Set-OrganizationConfig +[03/07/2021 18:01:22.0292] [2] Searching objects of type "ADOrganizationConfig" with filter "$null", scope "SubTree" under the root "$null". +[03/07/2021 18:01:22.0298] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0335] [2] Processing object "SoloORG". +[03/07/2021 18:01:22.0343] [2] Saving object "SoloORG" of type "ADOrganizationConfig" and state "Changed". +[03/07/2021 18:01:22.0346] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0346] [2] Ending processing Set-OrganizationConfig +[03/07/2021 18:01:22.0348] [1] Executing: + if ($RoleIsDatacenter -eq $true -or $RoleIsPartnerHosted -eq $true) + { + install-ConfigurationUnitsContainer -DomainController $RoleDomainController + } + +[03/07/2021 18:01:22.0358] [1] Executing: + install-Container -Name:"Provisioning Policy Container" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0360] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0360] [2] User specified parameters: -Name:'Provisioning Policy Container' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0360] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0361] [2] Processing object "Provisioning Policy Container". +[03/07/2021 18:01:22.0365] [2] Ending processing install-Container +[03/07/2021 18:01:22.0369] [1] Executing: + install-Container -Name:"Provisioning Policy Container","Enforcement" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0370] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0371] [2] User specified parameters: -Name:'Provisioning Policy Container','Enforcement' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0371] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0372] [2] Processing object "Enforcement". +[03/07/2021 18:01:22.0375] [2] Ending processing install-Container +[03/07/2021 18:01:22.0384] [1] Executing: + $policy = Get-RecipientEnforcementProvisioningPolicy -DomainController $RoleDomainController; + if ($policy -ne $null -and (($policy.Name -ne "Recipient Quota Policy") -or (-not $policy.TargetObjects.Contains("SyncMailbox")))) + { + $dlQuota = $policy.DistributionListCountQuota; + $mbQuota = $policy.MailboxCountQuota; + $muQuota = $policy.MailUserCountQuota; + $mcQuota = $policy.ContactCountQuota; + $pfmbQuota = $policy.PublicFolderMailboxCountQuota; + $pfhmbQuota = $policy.PublicFolderHierarchyMailboxCountQuota; + $tmbQuota = $policy.TeamMailboxCountQuota; + $mpfQuota = $policy.MailPublicFolderCountQuota; + + Remove-RecipientEnforcementProvisioningPolicy -Identity $policy.Identity -Confirm:$false -DomainController $RoleDomainController; + $newPolicy = New-RecipientEnforcementProvisioningPolicy -DomainController $RoleDomainController; + Set-RecipientEnforcementProvisioningPolicy -Identity $newPolicy.Identity ` + -DistributionListCountQuota $dlQuota ` + -MailboxCountQuota $mbQuota ` + -MailUserCountQuota $muQuota ` + -ContactCountQuota $mcQuota ` + -PublicFolderMailboxCountQuota $pfmbQuota ` + -PublicFolderHierarchyMailboxCountQuota $pfhmbQuota ` + -TeamMailboxCountQuota $tmbQuota ` + -MailPublicFolderCountQuota $mpfQuota ` + -DomainController $RoleDomainController; + } + +[03/07/2021 18:01:22.0397] [2] Active Directory session settings for 'Get-RecipientEnforcementProvisioningPolicy' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0398] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0398] [2] Beginning processing Get-RecipientEnforcementProvisioningPolicy +[03/07/2021 18:01:22.0404] [2] Searching objects of type "RecipientEnforcementProvisioningPolicy" with filter "$null", scope "SubTree" under the root "$null". +[03/07/2021 18:01:22.0421] [2] Request filter in Get Task: (&(objectCategory=msExchRecipientEnforcementPolicy)(msExchProvisioningPolicyType:1.2.840.113556.1.4.803:=2)(|(&(msExchVersion<=1125899906842624)(!(msExchVersion=1125899906842624)))(!(msExchVersion=*)))). +[03/07/2021 18:01:22.0424] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0424] [2] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 18:01:22.0425] [2] Ending processing Get-RecipientEnforcementProvisioningPolicy +[03/07/2021 18:01:22.0429] [1] Executing: + install-Container -Name:"Address Lists Container" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0432] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0432] [2] User specified parameters: -Name:'Address Lists Container' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0432] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0434] [2] Processing object "CN=Address Lists Container,CN=SoloORG,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local". +[03/07/2021 18:01:22.0437] [2] Ending processing install-Container +[03/07/2021 18:01:22.0439] [1] Executing: + install-Container -Name:"Address Lists Container","Offline Address Lists" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0441] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0441] [2] User specified parameters: -Name:'Address Lists Container','Offline Address Lists' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0441] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0442] [2] Processing object "\". +[03/07/2021 18:01:22.0446] [2] Ending processing install-Container +[03/07/2021 18:01:22.0449] [1] Executing: + install-CannedAddressLists -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0492] [2] Active Directory session settings for 'Install-CannedAddressLists' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0492] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0493] [2] Beginning processing install-CannedAddressLists +[03/07/2021 18:01:22.0518] [2] Processing object "\". +[03/07/2021 18:01:22.0549] [2] Searching objects of type "AddressBookBase" with filter "(|((LdapRecipientFilter Equal (&(mailNickname=*)(objectCategory=group)))(|((LdapRecipientFilter Equal (& (mailnickname=*) (| (objectCategory=group) )))))))", scope "OneLevel" under the root "\". +[03/07/2021 18:01:22.0553] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0556] [2] Searching objects of type "AddressBookBase" with filter "(|((LdapRecipientFilter Equal (&(mailNickname=*)(|(&(objectCategory=person)(objectClass=user)(!(homeMDB=*))(!(msExchHomeServerName=*)))(&(objectCategory=person)(objectClass=user)(|(homeMDB=*)(msExchHomeServerName=*))))(!(msExchRecipientTypeDetails=1099511627776))))(|((LdapRecipientFilter Equal (&(mailnickname=*)(|(&(objectCategory=person)(objectClass=user)(!(homeMDB=*))(!(msExchHomeServerName=*)))(&(objectCategory=person)(objectClass=user)(|(homeMDB=*)(msExchHomeServerName=*))))))))))", scope "OneLevel" under the root "\". +[03/07/2021 18:01:22.0559] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0568] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0571] [2] Searching objects of type "AddressBookBase" with filter "(|((LdapRecipientFilter Equal (&(mailNickname=*)(objectCategory=person)(objectClass=contact)))(|((LdapRecipientFilter Equal (& (mailnickname=*) (| (&(objectCategory=person)(objectClass=contact)) )))))))", scope "OneLevel" under the root "\". +[03/07/2021 18:01:22.0574] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0574] [2] Searching objects of type "AddressBookBase" with filter "(|((LdapRecipientFilter Equal (&(mailNickname=*)(objectCategory=group)))(|((LdapRecipientFilter Equal (& (mailnickname=*) (| (objectCategory=group) )))))))", scope "OneLevel" under the root "\". +[03/07/2021 18:01:22.0577] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0589] [2] Searching objects of type "AddressBookBase" with filter "(|((LdapRecipientFilter Equal (&(mailNickname=*)(|(msExchRecipientDisplayType=7)(msExchRecipientDisplayType=-2147481850))))(|((LdapRecipientFilter Equal (& (mailnickname=*) (| (msExchResourceMetaData=ResourceType:Room) )))(LdapRecipientFilter Equal (&(mailnickname=*)(msExchResourceMetaData=ResourceType:Room)))))))", scope "OneLevel" under the root "\". +[03/07/2021 18:01:22.0593] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0593] [2] Searching objects of type "AddressBookBase" with filter "(|((LdapRecipientFilter Equal (&(mailNickname=*)(|(&(objectCategory=person)(objectClass=user)(!(homeMDB=*))(!(msExchHomeServerName=*)))(&(objectCategory=person)(objectClass=user)(|(homeMDB=*)(msExchHomeServerName=*))))(!(msExchRecipientTypeDetails=1099511627776))))(|((LdapRecipientFilter Equal (&(mailnickname=*)(|(&(objectCategory=person)(objectClass=user)(!(homeMDB=*))(!(msExchHomeServerName=*)))(&(objectCategory=person)(objectClass=user)(|(homeMDB=*)(msExchHomeServerName=*))))))))))", scope "OneLevel" under the root "\". +[03/07/2021 18:01:22.0595] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0596] [2] Searching objects of type "AddressBookBase" with filter "(|((LdapRecipientFilter Equal (&(mailNickname=*)(objectCategory=publicFolder)))(|((LdapRecipientFilter Equal (& (mailnickname=*) (| (objectCategory=publicFolder) )))))))", scope "OneLevel" under the root "\". +[03/07/2021 18:01:22.0601] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0601] [2] Ending processing install-CannedAddressLists +[03/07/2021 18:01:22.0604] [1] Executing: + install-GlobalAddressLists -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0608] [2] Active Directory session settings for 'Install-GlobalAddressLists' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0609] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0609] [2] Beginning processing install-GlobalAddressLists +[03/07/2021 18:01:22.0614] [2] Processing object "\". +[03/07/2021 18:01:22.0624] [2] Ending processing install-GlobalAddressLists +[03/07/2021 18:01:22.0628] [1] Executing: + install-Container -Name:"RBAC" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0633] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0633] [2] User specified parameters: -Name:'RBAC' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0634] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0638] [2] Processing object "RBAC". +[03/07/2021 18:01:22.0643] [2] Ending processing install-Container +[03/07/2021 18:01:22.0645] [1] Executing: + install-Container -Name:"RBAC","Roles" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0647] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0647] [2] User specified parameters: -Name:'RBAC','Roles' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0647] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0648] [2] Processing object "Roles". +[03/07/2021 18:01:22.0652] [2] Ending processing install-Container +[03/07/2021 18:01:22.0653] [1] Executing: + install-Container -Name:"RBAC","Scopes" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0656] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0656] [2] User specified parameters: -Name:'RBAC','Scopes' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0657] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0658] [2] Processing object "Scopes". +[03/07/2021 18:01:22.0662] [2] Ending processing install-Container +[03/07/2021 18:01:22.0663] [1] Executing: + install-Container -Name:"RBAC","Role Assignments" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0665] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0665] [2] User specified parameters: -Name:'RBAC','Role Assignments' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0665] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0669] [2] Processing object "Role Assignments". +[03/07/2021 18:01:22.0673] [2] Ending processing install-Container +[03/07/2021 18:01:22.0676] [1] Executing: + install-Container -Name:"RBAC","Policies" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0678] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0678] [2] User specified parameters: -Name:'RBAC','Policies' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0679] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0680] [2] Processing object "Policies". +[03/07/2021 18:01:22.0684] [2] Ending processing install-Container +[03/07/2021 18:01:22.0691] [1] Executing: + install-TransportConfigContainer -Name:"Transport Settings" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0759] [2] Active Directory session settings for 'install-TransportConfigContainer' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0759] [2] User specified parameters: -Name:'Transport Settings' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0760] [2] Beginning processing install-TransportConfigContainer +[03/07/2021 18:01:22.0761] [2] Processing object "Transport Settings". +[03/07/2021 18:01:22.0850] [2] Ending processing install-TransportConfigContainer +[03/07/2021 18:01:22.0852] [1] Executing: + if($RoleIsDatacenter -ne $true -and $RoleIsPartnerHosted -ne $true) + { + if ((Get-MalwareFilterPolicy -DomainController $RoleDomainController | where {$_.IsDefault -eq $true}) -eq $null) + { + New-MalwareFilterPolicy -Name "Default" -DomainController $RoleDomainController + } + } + +[03/07/2021 18:01:22.0862] [2] Active Directory session settings for 'Get-MalwareFilterPolicy' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0862] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0862] [2] Beginning processing Get-MalwareFilterPolicy +[03/07/2021 18:01:22.0866] [2] Searching objects of type "MalwareFilterPolicy" with filter "(ExchangeVersion Equal 0.20 (15.0.0.0))", scope "SubTree" under the root "$null". +[03/07/2021 18:01:22.0872] [2] Request filter in Get Task: (&(msExchVersion=88218628259840)(objectCategory=msExchMalwareFilterConfig)(|(&(msExchVersion<=1125899906842624)(!(msExchVersion=1125899906842624)))(!(msExchVersion=*)))). +[03/07/2021 18:01:22.0874] [2] Internal Query Filter in Get Task: (ExchangeVersion Equal 0.20 (15.0.0.0)). +[03/07/2021 18:01:22.0877] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:22.0878] [2] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 18:01:22.0893] [2] Ending processing Get-MalwareFilterPolicy +[03/07/2021 18:01:22.0897] [1] Executing: + install-Container -Name:"Transport Settings","Accepted Domains" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0899] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0900] [2] User specified parameters: -Name:'Transport Settings','Accepted Domains' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0900] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0900] [2] Processing object "Accepted Domains". +[03/07/2021 18:01:22.0904] [2] Ending processing install-Container +[03/07/2021 18:01:22.0908] [1] Executing: + install-DefaultAcceptedDomain -Name $RoleFullyQualifiedDomainName -DomainName $RoleFullyQualifiedDomainName -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0933] [2] Active Directory session settings for 'Install-DefaultAcceptedDomain' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0933] [2] User specified parameters: -Name:'Solo.local' -DomainName:'Solo.local' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0933] [2] Beginning processing install-DefaultAcceptedDomain +[03/07/2021 18:01:22.0939] [2] Processing object "Solo.local". +[03/07/2021 18:01:22.0956] [2] Ending processing install-DefaultAcceptedDomain +[03/07/2021 18:01:22.0959] [1] Executing: + install-Container -Name:"Transport Settings","Interceptor Rules" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0962] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0962] [2] User specified parameters: -Name:'Transport Settings','Interceptor Rules' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0962] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0963] [2] Processing object "Interceptor Rules". +[03/07/2021 18:01:22.0967] [2] Ending processing install-Container +[03/07/2021 18:01:22.0969] [1] Executing: + install-Container -Name:"Transport Settings","Transport Feature Overrides" -DomainController $RoleDomainController + + +[03/07/2021 18:01:22.0972] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0972] [2] User specified parameters: -Name:'Transport Settings','Transport Feature Overrides' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0972] [2] Beginning processing install-Container +[03/07/2021 18:01:22.0973] [2] Processing object "Transport Feature Overrides". +[03/07/2021 18:01:22.0977] [2] Ending processing install-Container +[03/07/2021 18:01:22.0979] [1] Executing: + if ( $RoleIsDatacenterDedicated ) + { + Install-EmailAddressPolicy -DomainController $RoleDomainController -DomainName $RoleDatacenterManagedAcceptedDomain + } + else + { + Install-EmailAddressPolicy -DomainController $RoleDomainController + } + +[03/07/2021 18:01:22.0984] [2] Active Directory session settings for 'Install-EmailAddressPolicy' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:22.0984] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:22.0985] [2] Beginning processing Install-EmailAddressPolicy +[03/07/2021 18:01:22.0991] [2] Processing object "Recipient Policies". +[03/07/2021 18:01:23.0172] [2] Ending processing Install-EmailAddressPolicy +[03/07/2021 18:01:23.0182] [1] Executing: + $acceptedDomains = @{}; + Get-AcceptedDomain -DomainController $RoleDomainController | foreach { + $domainName = $_.DomainName.ToString(); + if ($acceptedDomains.Contains($domainName)) { + Write-ExchangeSetupLog -Warning "Duplicate AcceptedDomain found. '$($acceptedDomains[$domainName])' and '$($_.Name)' both reference domain '$domainName'"; + } else { + $acceptedDomains.Add($domainName, $_.Name); + }; + }; + + function getSmtpTemplates ([string]$property) + { + $input | + Select-Object -ExpandProperty $property | + Where-Object {$_.PrefixString -eq "SMTP"} | + Foreach-Object {$_.AddressTemplateString -replace ".*@", ""}; + } + + + function addDomains ([Microsoft.Exchange.Data.Directory.SystemConfiguration.AcceptedDomainType]$domainType) + { + $domain = $null; + $input | + Where-Object {-not $acceptedDomains.ContainsKey($_) -and -not $acceptedDomains.ContainsKey("*.$_")} | + Where-Object {[Microsoft.Exchange.Data.SmtpDomainWithSubdomains]::TryParse($_, [ref] $domain)} | + Foreach-Object { + + $name = $domain.ToString(); + + # Test to see if email address policy matches a recipient policy + # with a wildcard domain before adding it + $needToAddDomain = $true; + While ($name.Contains(".")) { + $index = $name.IndexOf(".") + 1; + $name = $name.Substring($index); + if ($acceptedDomains.ContainsKey("*.$name")) { + $needToAddDomain = $false; + Break; + }; + }; + + if ($needToAddDomain) { + $name = $domain.ToString(); + if ($name.Length -gt 64) { $name = $name.Substring(0, 64) }; + if ($acceptedDomains.ContainsValue($name) ) {$name = [System.Guid]::NewGuid().ToString()}; + + New-AcceptedDomain -Name:$name -DomainName:$domain -DomainType:$domainType -DomainController $RoleDomainController; + $acceptedDomains[$domain.ToString()] = $name; + }; + }; + } + + $emailAddressPolicies = Get-EmailAddressPolicy -DomainController $RoleDomainController; + $emailAddressPolicies | getSmtpTemplates "NonAuthoritativeDomains" | addDomains "InternalRelay"; + $emailAddressPolicies | getSmtpTemplates "EnabledEmailAddressTemplates" | addDomains "Authoritative"; + +[03/07/2021 18:01:23.0194] [2] Active Directory session settings for 'Get-AcceptedDomain' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0194] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:23.0194] [2] Beginning processing Get-AcceptedDomain +[03/07/2021 18:01:23.0199] [2] Searching objects of type "AcceptedDomain" with filter "$null", scope "SubTree" under the root "$null". +[03/07/2021 18:01:23.0199] [2] Request filter in Get Task: (&(objectCategory=msExchAcceptedDomain)(!(msExchAcceptedDomainFlags=16))(!(msExchAcceptedDomainFlags=17))(|(&(msExchVersion<=1125899906842624)(!(msExchVersion=1125899906842624)))(!(msExchVersion=*)))). +[03/07/2021 18:01:23.0202] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:23.0202] [2] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 18:01:23.0222] [2] Ending processing Get-AcceptedDomain +[03/07/2021 18:01:23.0225] [2] Active Directory session settings for 'Get-EmailAddressPolicy' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0225] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:23.0226] [2] Beginning processing Get-EmailAddressPolicy +[03/07/2021 18:01:23.0230] [2] Searching objects of type "EmailAddressPolicy" with filter "(PolicyOptionListValue Equal System.Byte[])", scope "SubTree" under the root "Recipient Policies". +[03/07/2021 18:01:23.0232] [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=*)))). +[03/07/2021 18:01:23.0232] [2] Internal Query Filter in Get Task: (PolicyOptionListValue Equal System.Byte[]). +[03/07/2021 18:01:23.0236] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:23.0237] [2] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 18:01:23.0271] [2] Searching objects of type "EmailAddressPolicy" with filter "(PolicyOptionListValue NotEqual System.Byte[])", scope "SubTree" under the root "Recipient Policies". +[03/07/2021 18:01:23.0274] [2] Ending processing Get-EmailAddressPolicy +[03/07/2021 18:01:23.0330] [1] Executing: + Write-ExchangeSetupLog -Info "Set the default Accepted domain from the default recipient policy"; + $defaultEmailAddressPolicy = get-EmailAddressPolicy -DomainController $RoleDomainController -Identity:"Default Policy"; + + $defaultSmtpTemplate = $defaultEmailAddressPolicy.EnabledPrimarySMTPAddressTemplate; + + $index = $defaultSmtpTemplate.IndexOf("@") + 1; + $eapAuthoritativeDomain = $defaultSmtpTemplate.Substring($index); + + $acceptedDomains = Get-AcceptedDomain -DomainController $RoleDomainController + $defaultDomain = $acceptedDomains | Where {$_.DomainName -eq $eapAuthoritativeDomain -or $_.DomanName -eq "*.$eapAuthoritativeDomain" }; + + # For dedicated customers, the default accepted domain [$RoleDatacenterManagedAcceptedDomain] should have been created in the previous task. + if( -not $defaultDomain -and $RoleIsDatacenterDedicated) + { + throw "No accepted domain found matching SmtpTemplate [$eapAuthoritativeDomain]" + } + + # If an accepted domain couldn't be found which matches the default email address policy, then try and find + # the wildcard domain which matches it and set that as the default + While ($defaultDomain -eq $null -and $eapAuthoritativeDomain.Contains(".")) { + $index = $eapAuthoritativeDomain.IndexOf(".") + 1; + $eapAuthoritativeDomain = $eapAuthoritativeDomain.Substring($index); + $defaultDomain = $acceptedDomains | Where {$_.DomainName -eq "*.$eapAuthoritativeDomain" }; + }; + + $currentDefaultDomain = $acceptedDomains | ? { $_.Default } + if($currentDefaultDomain -and $currentDefaultDomain.DomainName -ne $defaultDomain.DomainName) + { + Write-ExchangeSetupLog -Info "Current default domain is [$($currentDefaultDomain.DomainName)]. Setting [$($defaultDomain.DomainName)] to be new default..." + } + + $defaultDomain | set-accepteddomain -DomainController $RoleDomainController -MakeDefault:$true; + Write-ExchangeSetupLog -Info "Default domain $defaultDomain"; + +[03/07/2021 18:01:23.0336] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:23.0336] [2] Set the default Accepted domain from the default recipient policy +[03/07/2021 18:01:23.0337] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:23.0340] [2] Active Directory session settings for 'Get-EmailAddressPolicy' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0340] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' -Identity:'Default Policy' +[03/07/2021 18:01:23.0341] [2] Beginning processing get-EmailAddressPolicy +[03/07/2021 18:01:23.0347] [2] Searching objects "Default Policy" of type "EmailAddressPolicy" under the root "$null". +[03/07/2021 18:01:23.0353] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:23.0354] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:23.0354] [2] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 18:01:23.0358] [2] Ending processing get-EmailAddressPolicy +[03/07/2021 18:01:23.0365] [2] Active Directory session settings for 'Get-AcceptedDomain' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0365] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:23.0366] [2] Beginning processing Get-AcceptedDomain +[03/07/2021 18:01:23.0366] [2] Searching objects of type "AcceptedDomain" with filter "$null", scope "SubTree" under the root "$null". +[03/07/2021 18:01:23.0366] [2] Request filter in Get Task: (&(objectCategory=msExchAcceptedDomain)(!(msExchAcceptedDomainFlags=16))(!(msExchAcceptedDomainFlags=17))(|(&(msExchVersion<=1125899906842624)(!(msExchVersion=1125899906842624)))(!(msExchVersion=*)))). +[03/07/2021 18:01:23.0369] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:23.0370] [2] Preparing to output objects. The maximum size of the result set is "Unlimited". +[03/07/2021 18:01:23.0371] [2] Ending processing Get-AcceptedDomain +[03/07/2021 18:01:23.0402] [2] Active Directory session settings for 'Set-AcceptedDomain' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0402] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' -MakeDefault:'True' +[03/07/2021 18:01:23.0403] [2] Beginning processing set-accepteddomain +[03/07/2021 18:01:23.0436] [2] Searching objects "Solo.local" of type "AcceptedDomain" under the root "$null". +[03/07/2021 18:01:23.0445] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:23.0446] [2] Processing object "Solo.local". +[03/07/2021 18:01:23.0500] [2] No properties changed for the object "Solo.local". +[03/07/2021 18:01:23.0502] [2] [WARNING] The command completed successfully but no settings of 'Solo.local' have been modified. +[03/07/2021 18:01:23.0502] [2] Saving object "Solo.local" of type "AcceptedDomain" and state "Unchanged". +[03/07/2021 18:01:23.0503] [2] Previous operation run on domain controller 'Solo-DC1.Solo.local'. +[03/07/2021 18:01:23.0508] [2] Ending processing set-accepteddomain +[03/07/2021 18:01:23.0515] [2] Beginning processing Write-ExchangeSetupLog +[03/07/2021 18:01:23.0516] [2] Default domain Solo.local +[03/07/2021 18:01:23.0516] [2] Ending processing Write-ExchangeSetupLog +[03/07/2021 18:01:23.0518] [1] Executing: + Install-Container -Name:"Connections" -DomainController $RoleDomainController + + +[03/07/2021 18:01:23.0520] [2] Active Directory session settings for 'install-Container' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0520] [2] User specified parameters: -Name:'Connections' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:23.0526] [2] Beginning processing Install-Container +[03/07/2021 18:01:23.0527] [2] Processing object "Connections". +[03/07/2021 18:01:23.0531] [2] Ending processing Install-Container +[03/07/2021 18:01:23.0532] [1] Executing: + New-ExchangeAssistanceConfig -DomainController $RoleDomainController + + +[03/07/2021 18:01:23.0548] [2] Active Directory session settings for 'New-ExchangeAssistanceConfig' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0549] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:23.0549] [2] Beginning processing New-ExchangeAssistanceConfig +[03/07/2021 18:01:23.0556] [2] Processing object "ExchangeAssistance". +[03/07/2021 18:01:23.0574] [2] Ending processing New-ExchangeAssistanceConfig +[03/07/2021 18:01:23.0577] [1] Executing: + Install-GlobalSettingsContainer -Name:"Global Settings" -DomainController $RoleDomainController + + +[03/07/2021 18:01:23.0582] [2] Active Directory session settings for 'Install-GlobalSettingsContainer' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0582] [2] User specified parameters: -Name:'Global Settings' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:23.0582] [2] Beginning processing Install-GlobalSettingsContainer +[03/07/2021 18:01:23.0583] [2] Processing object "Global Settings". +[03/07/2021 18:01:23.0588] [2] Ending processing Install-GlobalSettingsContainer +[03/07/2021 18:01:23.0590] [1] Executing: + Install-MessageDeliveryContainer -DomainController $RoleDomainController + + +[03/07/2021 18:01:23.0595] [2] Active Directory session settings for 'install-MessageDeliveryContainer' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0595] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:23.0596] [2] Beginning processing Install-MessageDeliveryContainer +[03/07/2021 18:01:23.0596] [2] Processing object "Message Delivery". +[03/07/2021 18:01:23.0603] [2] Ending processing Install-MessageDeliveryContainer +[03/07/2021 18:01:23.0607] [1] Executing: + Install-DefaultMessageFilterContainer -DomainController $RoleDomainController + + +[03/07/2021 18:01:23.0614] [2] Active Directory session settings for 'install-DefaultMessageFilterContainer' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0615] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:23.0615] [2] Beginning processing Install-DefaultMessageFilterContainer +[03/07/2021 18:01:23.0616] [2] Processing object "Default Message Filter". +[03/07/2021 18:01:23.0620] [2] Ending processing Install-DefaultMessageFilterContainer +[03/07/2021 18:01:23.0623] [1] Executing: + Install-DefaultConnectionFilterContainer -DomainController $RoleDomainController + + +[03/07/2021 18:01:23.0637] [2] Active Directory session settings for 'install-DefaultConnectionFilterContainer' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0637] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:23.0637] [2] Beginning processing Install-DefaultConnectionFilterContainer +[03/07/2021 18:01:23.0638] [2] Processing object "Default Connection Filter". +[03/07/2021 18:01:23.0642] [2] Ending processing Install-DefaultConnectionFilterContainer +[03/07/2021 18:01:23.0644] [1] Executing: + Install-InternetMessageFormat -DomainController $RoleDomainController + + +[03/07/2021 18:01:23.0650] [2] Active Directory session settings for 'Install-InternetMessageFormat' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0650] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:23.0650] [2] Beginning processing Install-InternetMessageFormat +[03/07/2021 18:01:23.0659] [2] Processing object "Internet Message Formats". +[03/07/2021 18:01:23.0682] [2] Ending processing Install-InternetMessageFormat +[03/07/2021 18:01:23.0684] [1] Executing: + buildToBuildUpgrade-ExsetDataAtom -AtomName OrgCtChildren -DomainController $RoleDomainController + + +[03/07/2021 18:01:23.0686] [2] Active Directory session settings for 'BuildToBuildUpgrade-ExsetdataAtom' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:23.0686] [2] User specified parameters: -AtomName:'OrgCtChildren' -DomainController:'Solo-DC1.Solo.local' +[03/07/2021 18:01:23.0687] [2] Beginning processing buildToBuildUpgrade-ExsetDataAtom +[03/07/2021 18:01:23.0687] [2] Calling exsetdata atom OrgCtChildren in mode "Reinstall". +[03/07/2021 18:01:23.0687] [2] Entering ScSetAdminGroupNamesOnManagedCodeContext +[03/07/2021 18:01:23.0687] [2] Leaving ScSetAdminGroupOnManagedCodeContext +[03/07/2021 18:01:23.0687] [2] Entering ScSetupAtom +[03/07/2021 18:01:23.0687] [2] Parameters: +[03/07/2021 18:01:23.0687] [2] idsAtomID: 0X0000FAB3 ("Microsoft Exchange Organization-Level container children") +[03/07/2021 18:01:23.0687] [2] idsSetupMode: 0X0000F203 ("Reinstall") +[03/07/2021 18:01:23.0687] [2] szDestDir: "C:\Windows\Temp\ExchangeSetup" [context value is: "C:\Windows\Temp\ExchangeSetup"] +[03/07/2021 18:01:23.0687] [2] szSourceDir: "C:\Windows\Temp\ExchangeSetup" [context value is: "C:\Windows\Temp\ExchangeSetup"] +[03/07/2021 18:01:23.0687] [2] szOrg: "" [context value is: "SoloORG"] +[03/07/2021 18:01:23.0687] [2] szLegacyOrg: "" [context value is: "SoloORG"] +[03/07/2021 18:01:23.0687] [2] szAdminGroup: "Exchange Administrative Group (FYDIBOHF23SPDLT)" [context value is: "Exchange Administrative Group (FYDIBOHF23SPDLT)"] +[03/07/2021 18:01:23.0687] [2] szLegacyAdminGroup: "Exchange Administrative Group (FYDIBOHF23SPDLT)" [context value is: "Exchange Administrative Group (FYDIBOHF23SPDLT)"] +[03/07/2021 18:01:23.0687] [2] szAdminGroupContainingRoutingGroup: "Exchange Administrative Group (FYDIBOHF23SPDLT)" [context value is: "Exchange Administrative Group (FYDIBOHF23SPDLT)"] +[03/07/2021 18:01:23.0687] [2] szRoutingGroup: "Exchange Routing Group (DWBGZMFD01QNBJR)" [context value is: "Exchange Routing Group (DWBGZMFD01QNBJR)"] +[03/07/2021 18:01:23.0688] [2] Entering CAtomOrgCtChildren::ScPreSetup +[03/07/2021 18:01:23.0688] [2] Entering CBaseServiceAtom(Microsoft Exchange Organization-Level container children)::ScPreSetup +[03/07/2021 18:01:23.0688] [2] Entering CBaseServiceAtom(Microsoft Exchange Organization-Level container children)::ScStopAtomServices +[03/07/2021 18:01:23.0688] [2] Leaving CBaseServiceAtom(Microsoft Exchange Organization-Level container children)::ScStopAtomServices +[03/07/2021 18:01:23.0688] [2] Leaving CBaseServiceAtom(Microsoft Exchange Organization-Level container children)::ScPreSetup +[03/07/2021 18:01:23.0688] [2] Leaving CAtomOrgCtChildren::ScPreSetup +[03/07/2021 18:01:23.0688] [2] Beginning Reinstall of Microsoft Exchange Organization-Level container children sub-component. +[03/07/2021 18:01:23.0688] [2] Entering CBaseAtom(Microsoft Exchange Organization-Level container children)::ScRefreshDSObjects +[03/07/2021 18:01:23.0688] [2] Creating Active Directory objects for Microsoft Exchange Organization-Level container children. +[03/07/2021 18:01:23.0688] [2] Creating addressing container +[03/07/2021 18:01:23.0688] [2] Entering CAtomOrgCtChildren::ScCreateOrgLevelAddressingCTAndObjs +[03/07/2021 18:01:23.0694] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:23.0696] [2] Entering CAtomOrgCtChildren::ScLinkTemplateRoot +[03/07/2021 18:01:23.0703] [2] Leaving CAtomOrgCtChildren::ScLinkTemplateRoot +[03/07/2021 18:01:23.0704] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:23.0711] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:23.0713] [2] Leaving CAtomOrgCtChildren::ScCreateOrgLevelAddressingCTAndObjs +[03/07/2021 18:01:23.0713] [2] Creating templates +[03/07/2021 18:01:23.0713] [2] Entering CAtomOrgCtChildren::ScUpdateTemplates +[03/07/2021 18:01:23.0713] [2] Attempt to get an exclusive access to the directory +[03/07/2021 18:01:23.0714] [2] Checking if the user has enough persmissions to update templates. +[03/07/2021 18:01:23.0714] [2] Entering ScHavePermissionToCreateDSObject +[03/07/2021 18:01:23.0716] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:23.0720] [2] Leaving ScHavePermissionToCreateDSObject +[03/07/2021 18:01:23.0720] [2] User has enough permissions to update templates. +[03/07/2021 18:01:24.0937] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0940] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0941] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0942] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0943] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0945] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0952] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0953] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0956] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0957] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0958] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0960] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0961] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0964] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0965] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0966] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0967] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0969] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0970] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0971] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0972] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0975] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0976] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0977] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0979] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0981] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0982] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0983] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0984] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0988] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0989] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0990] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0991] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0993] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0994] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0995] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0996] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:24.0999] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0000] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0001] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0002] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0004] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0005] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0005] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0006] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0009] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0010] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0011] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0012] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0014] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0016] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0016] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0017] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0020] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0021] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0022] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0023] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0025] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0026] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0027] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0028] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0031] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0036] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0037] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0038] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0041] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0041] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0042] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0043] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0046] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0047] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0048] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0049] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0052] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0053] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0054] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0055] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0058] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0059] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0059] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0060] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0063] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0064] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0065] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0066] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0068] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0069] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0070] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0070] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0076] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0077] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0078] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0080] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0082] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0083] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0084] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0085] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0087] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0089] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0090] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0091] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0093] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0094] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0095] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0096] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0098] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0099] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0100] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0101] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0104] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0104] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0105] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0106] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0109] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0109] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0110] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0111] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0113] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0114] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0115] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0116] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0118] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0119] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0120] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0121] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0123] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0124] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0124] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0126] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0128] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0128] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0129] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0130] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0132] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0133] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0135] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0136] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0138] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0139] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0140] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0140] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0143] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0144] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0144] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0145] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0149] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0150] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0152] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0153] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0157] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0157] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0158] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0159] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0163] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0164] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0167] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0167] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0170] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0171] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0172] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0173] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0175] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0176] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0177] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0178] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0180] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0181] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0182] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0183] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0185] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0186] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0187] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0188] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0191] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0192] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0193] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0194] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0198] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0198] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0199] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0200] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0202] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0203] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0204] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0205] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0208] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0209] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0210] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0212] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0214] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0215] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0216] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0217] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0219] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0219] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0220] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0221] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0223] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0223] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0224] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0225] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=409/cn=X400 +[03/07/2021 18:01:25.0230] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0242] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=409/cn=MS +[03/07/2021 18:01:25.0245] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0253] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=409/cn=SMTP +[03/07/2021 18:01:25.0256] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0265] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=409/cn=MSA +[03/07/2021 18:01:25.0268] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0277] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=409/cn=CCMAIL +[03/07/2021 18:01:25.0280] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0288] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=401/cn=X400 +[03/07/2021 18:01:25.0293] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0298] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=401/cn=MS +[03/07/2021 18:01:25.0301] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0307] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=401/cn=SMTP +[03/07/2021 18:01:25.0310] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0315] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=401/cn=MSA +[03/07/2021 18:01:25.0318] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0324] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=401/cn=CCMAIL +[03/07/2021 18:01:25.0327] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0335] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=402/cn=X400 +[03/07/2021 18:01:25.0340] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0346] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=402/cn=MS +[03/07/2021 18:01:25.0350] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0356] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=402/cn=SMTP +[03/07/2021 18:01:25.0359] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0365] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=402/cn=MSA +[03/07/2021 18:01:25.0368] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0374] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=402/cn=CCMAIL +[03/07/2021 18:01:25.0376] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0382] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=403/cn=X400 +[03/07/2021 18:01:25.0386] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0391] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=403/cn=MS +[03/07/2021 18:01:25.0395] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0399] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=403/cn=SMTP +[03/07/2021 18:01:25.0402] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0407] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=403/cn=MSA +[03/07/2021 18:01:25.0411] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0416] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=403/cn=CCMAIL +[03/07/2021 18:01:25.0420] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0426] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=405/cn=X400 +[03/07/2021 18:01:25.0431] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0437] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=405/cn=MS +[03/07/2021 18:01:25.0439] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0445] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=405/cn=SMTP +[03/07/2021 18:01:25.0450] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0455] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=405/cn=MSA +[03/07/2021 18:01:25.0459] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0463] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=405/cn=CCMAIL +[03/07/2021 18:01:25.0467] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0472] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=406/cn=X400 +[03/07/2021 18:01:25.0475] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0480] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=406/cn=MS +[03/07/2021 18:01:25.0482] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0487] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=406/cn=SMTP +[03/07/2021 18:01:25.0490] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0495] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=406/cn=MSA +[03/07/2021 18:01:25.0498] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0503] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=406/cn=CCMAIL +[03/07/2021 18:01:25.0506] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0511] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=407/cn=X400 +[03/07/2021 18:01:25.0516] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0520] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=407/cn=MS +[03/07/2021 18:01:25.0524] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0529] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=407/cn=SMTP +[03/07/2021 18:01:25.0532] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0539] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=407/cn=MSA +[03/07/2021 18:01:25.0542] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0547] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=407/cn=CCMAIL +[03/07/2021 18:01:25.0551] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0555] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=408/cn=X400 +[03/07/2021 18:01:25.0559] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0564] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=408/cn=MS +[03/07/2021 18:01:25.0567] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0572] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=408/cn=SMTP +[03/07/2021 18:01:25.0579] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0586] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=408/cn=MSA +[03/07/2021 18:01:25.0589] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0594] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=408/cn=CCMAIL +[03/07/2021 18:01:25.0597] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0602] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C0A/cn=X400 +[03/07/2021 18:01:25.0605] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0612] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C0A/cn=MS +[03/07/2021 18:01:25.0616] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0622] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C0A/cn=SMTP +[03/07/2021 18:01:25.0626] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0632] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C0A/cn=MSA +[03/07/2021 18:01:25.0635] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0641] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C0A/cn=CCMAIL +[03/07/2021 18:01:25.0643] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0648] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=425/cn=X400 +[03/07/2021 18:01:25.0652] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0657] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=425/cn=MS +[03/07/2021 18:01:25.0660] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0669] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=425/cn=SMTP +[03/07/2021 18:01:25.0671] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0677] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=425/cn=MSA +[03/07/2021 18:01:25.0680] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0684] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=425/cn=CCMAIL +[03/07/2021 18:01:25.0687] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0693] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=42D/cn=X400 +[03/07/2021 18:01:25.0697] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0702] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=42D/cn=MS +[03/07/2021 18:01:25.0706] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0710] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=42D/cn=SMTP +[03/07/2021 18:01:25.0714] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0718] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=42D/cn=MSA +[03/07/2021 18:01:25.0721] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0726] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=42D/cn=CCMAIL +[03/07/2021 18:01:25.0729] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0735] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=429/cn=X400 +[03/07/2021 18:01:25.0738] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0743] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=429/cn=MS +[03/07/2021 18:01:25.0746] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0752] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=429/cn=SMTP +[03/07/2021 18:01:25.0754] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0760] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=429/cn=MSA +[03/07/2021 18:01:25.0762] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0767] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=429/cn=CCMAIL +[03/07/2021 18:01:25.0771] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0776] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=464/cn=X400 +[03/07/2021 18:01:25.0780] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0788] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=464/cn=MS +[03/07/2021 18:01:25.0791] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0797] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=464/cn=SMTP +[03/07/2021 18:01:25.0800] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0805] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=464/cn=MSA +[03/07/2021 18:01:25.0809] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0814] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=464/cn=CCMAIL +[03/07/2021 18:01:25.0816] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0823] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40B/cn=X400 +[03/07/2021 18:01:25.0826] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0832] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40B/cn=MS +[03/07/2021 18:01:25.0836] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0841] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40B/cn=SMTP +[03/07/2021 18:01:25.0844] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0850] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40B/cn=MSA +[03/07/2021 18:01:25.0854] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0859] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40B/cn=CCMAIL +[03/07/2021 18:01:25.0862] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0867] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40C/cn=X400 +[03/07/2021 18:01:25.0871] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0877] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40C/cn=MS +[03/07/2021 18:01:25.0881] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0886] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40C/cn=SMTP +[03/07/2021 18:01:25.0892] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0899] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40C/cn=MSA +[03/07/2021 18:01:25.0904] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0910] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40C/cn=CCMAIL +[03/07/2021 18:01:25.0916] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0922] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=456/cn=X400 +[03/07/2021 18:01:25.0926] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0932] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=456/cn=MS +[03/07/2021 18:01:25.0934] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0939] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=456/cn=SMTP +[03/07/2021 18:01:25.0942] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0946] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=456/cn=MSA +[03/07/2021 18:01:25.0951] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0957] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=456/cn=CCMAIL +[03/07/2021 18:01:25.0960] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0966] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40D/cn=X400 +[03/07/2021 18:01:25.0969] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0974] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40D/cn=MS +[03/07/2021 18:01:25.0977] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0991] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40D/cn=SMTP +[03/07/2021 18:01:25.0994] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:25.0999] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40D/cn=MSA +[03/07/2021 18:01:26.0002] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0009] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40D/cn=CCMAIL +[03/07/2021 18:01:26.0013] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0018] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=439/cn=X400 +[03/07/2021 18:01:26.0021] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0025] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=439/cn=MS +[03/07/2021 18:01:26.0028] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0032] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=439/cn=SMTP +[03/07/2021 18:01:26.0035] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0041] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=439/cn=MSA +[03/07/2021 18:01:26.0043] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0048] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=439/cn=CCMAIL +[03/07/2021 18:01:26.0051] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0056] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41A/cn=X400 +[03/07/2021 18:01:26.0059] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0064] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41A/cn=MS +[03/07/2021 18:01:26.0067] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0072] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41A/cn=SMTP +[03/07/2021 18:01:26.0075] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0079] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41A/cn=MSA +[03/07/2021 18:01:26.0083] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0087] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41A/cn=CCMAIL +[03/07/2021 18:01:26.0090] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0095] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40E/cn=X400 +[03/07/2021 18:01:26.0098] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0103] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40E/cn=MS +[03/07/2021 18:01:26.0106] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0111] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40E/cn=SMTP +[03/07/2021 18:01:26.0114] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0119] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40E/cn=MSA +[03/07/2021 18:01:26.0122] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0128] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40E/cn=CCMAIL +[03/07/2021 18:01:26.0131] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0137] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=421/cn=X400 +[03/07/2021 18:01:26.0142] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0148] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=421/cn=MS +[03/07/2021 18:01:26.0153] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0160] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=421/cn=SMTP +[03/07/2021 18:01:26.0163] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0168] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=421/cn=MSA +[03/07/2021 18:01:26.0172] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0177] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=421/cn=CCMAIL +[03/07/2021 18:01:26.0180] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0185] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40F/cn=X400 +[03/07/2021 18:01:26.0188] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0194] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40F/cn=MS +[03/07/2021 18:01:26.0197] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0202] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40F/cn=SMTP +[03/07/2021 18:01:26.0205] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0212] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40F/cn=MSA +[03/07/2021 18:01:26.0216] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0226] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=40F/cn=CCMAIL +[03/07/2021 18:01:26.0230] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0235] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=410/cn=X400 +[03/07/2021 18:01:26.0239] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0247] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=410/cn=MS +[03/07/2021 18:01:26.0250] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0256] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=410/cn=SMTP +[03/07/2021 18:01:26.0261] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0268] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=410/cn=MSA +[03/07/2021 18:01:26.0272] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0277] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=410/cn=CCMAIL +[03/07/2021 18:01:26.0280] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0288] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=411/cn=X400 +[03/07/2021 18:01:26.0291] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0297] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=411/cn=MS +[03/07/2021 18:01:26.0300] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0304] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=411/cn=SMTP +[03/07/2021 18:01:26.0308] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0313] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=411/cn=MSA +[03/07/2021 18:01:26.0316] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0321] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=411/cn=CCMAIL +[03/07/2021 18:01:26.0324] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0330] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=8411/cn=X400 +[03/07/2021 18:01:26.0333] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0339] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=8411/cn=MS +[03/07/2021 18:01:26.0342] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0347] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=8411/cn=SMTP +[03/07/2021 18:01:26.0350] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0356] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=8411/cn=MSA +[03/07/2021 18:01:26.0359] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0364] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=8411/cn=CCMAIL +[03/07/2021 18:01:26.0367] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0372] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=43F/cn=X400 +[03/07/2021 18:01:26.0382] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0389] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=43F/cn=MS +[03/07/2021 18:01:26.0393] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0397] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=43F/cn=SMTP +[03/07/2021 18:01:26.0401] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0405] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=43F/cn=MSA +[03/07/2021 18:01:26.0408] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0413] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=43F/cn=CCMAIL +[03/07/2021 18:01:26.0416] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0422] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=412/cn=X400 +[03/07/2021 18:01:26.0425] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0430] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=412/cn=MS +[03/07/2021 18:01:26.0433] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0438] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=412/cn=SMTP +[03/07/2021 18:01:26.0440] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0445] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=412/cn=MSA +[03/07/2021 18:01:26.0448] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0455] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=412/cn=CCMAIL +[03/07/2021 18:01:26.0458] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0463] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=427/cn=X400 +[03/07/2021 18:01:26.0467] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0472] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=427/cn=MS +[03/07/2021 18:01:26.0476] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0484] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=427/cn=SMTP +[03/07/2021 18:01:26.0487] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0492] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=427/cn=MSA +[03/07/2021 18:01:26.0495] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0500] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=427/cn=CCMAIL +[03/07/2021 18:01:26.0503] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0508] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=426/cn=X400 +[03/07/2021 18:01:26.0512] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0517] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=426/cn=MS +[03/07/2021 18:01:26.0520] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0525] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=426/cn=SMTP +[03/07/2021 18:01:26.0529] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0534] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=426/cn=MSA +[03/07/2021 18:01:26.0537] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0543] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=426/cn=CCMAIL +[03/07/2021 18:01:26.0546] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0552] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=43E/cn=X400 +[03/07/2021 18:01:26.0555] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0560] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=43E/cn=MS +[03/07/2021 18:01:26.0563] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0567] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=43E/cn=SMTP +[03/07/2021 18:01:26.0570] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0578] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=43E/cn=MSA +[03/07/2021 18:01:26.0584] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0590] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=43E/cn=CCMAIL +[03/07/2021 18:01:26.0593] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0599] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=414/cn=X400 +[03/07/2021 18:01:26.0603] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0612] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=414/cn=MS +[03/07/2021 18:01:26.0616] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0621] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=414/cn=SMTP +[03/07/2021 18:01:26.0623] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0628] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=414/cn=MSA +[03/07/2021 18:01:26.0631] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0639] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=414/cn=CCMAIL +[03/07/2021 18:01:26.0642] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0646] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=413/cn=X400 +[03/07/2021 18:01:26.0649] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0654] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=413/cn=MS +[03/07/2021 18:01:26.0657] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0662] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=413/cn=SMTP +[03/07/2021 18:01:26.0666] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0671] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=413/cn=MSA +[03/07/2021 18:01:26.0674] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0683] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=413/cn=CCMAIL +[03/07/2021 18:01:26.0687] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0693] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=415/cn=X400 +[03/07/2021 18:01:26.0698] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0704] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=415/cn=MS +[03/07/2021 18:01:26.0708] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0713] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=415/cn=SMTP +[03/07/2021 18:01:26.0716] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0723] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=415/cn=MSA +[03/07/2021 18:01:26.0725] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0735] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=415/cn=CCMAIL +[03/07/2021 18:01:26.0738] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0744] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=816/cn=X400 +[03/07/2021 18:01:26.0747] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0758] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=816/cn=MS +[03/07/2021 18:01:26.0762] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0770] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=816/cn=SMTP +[03/07/2021 18:01:26.0773] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0779] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=816/cn=MSA +[03/07/2021 18:01:26.0782] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0787] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=816/cn=CCMAIL +[03/07/2021 18:01:26.0790] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0796] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=416/cn=X400 +[03/07/2021 18:01:26.0800] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0806] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=416/cn=MS +[03/07/2021 18:01:26.0811] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0815] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=416/cn=SMTP +[03/07/2021 18:01:26.0818] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0824] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=416/cn=MSA +[03/07/2021 18:01:26.0827] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0831] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=416/cn=CCMAIL +[03/07/2021 18:01:26.0834] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0840] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=418/cn=X400 +[03/07/2021 18:01:26.0843] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0849] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=418/cn=MS +[03/07/2021 18:01:26.0853] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0858] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=418/cn=SMTP +[03/07/2021 18:01:26.0864] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0869] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=418/cn=MSA +[03/07/2021 18:01:26.0872] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0878] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=418/cn=CCMAIL +[03/07/2021 18:01:26.0881] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0888] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=419/cn=X400 +[03/07/2021 18:01:26.0894] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0900] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=419/cn=MS +[03/07/2021 18:01:26.0903] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0907] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=419/cn=SMTP +[03/07/2021 18:01:26.0911] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0915] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=419/cn=MSA +[03/07/2021 18:01:26.0918] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0923] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=419/cn=CCMAIL +[03/07/2021 18:01:26.0926] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0931] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41B/cn=X400 +[03/07/2021 18:01:26.0935] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0940] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41B/cn=MS +[03/07/2021 18:01:26.0943] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0948] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41B/cn=SMTP +[03/07/2021 18:01:26.0951] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0960] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41B/cn=MSA +[03/07/2021 18:01:26.0963] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0969] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41B/cn=CCMAIL +[03/07/2021 18:01:26.0972] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0977] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=424/cn=X400 +[03/07/2021 18:01:26.0981] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0986] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=424/cn=MS +[03/07/2021 18:01:26.0989] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:26.0994] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=424/cn=SMTP +[03/07/2021 18:01:26.0997] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0002] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=424/cn=MSA +[03/07/2021 18:01:27.0005] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0010] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=424/cn=CCMAIL +[03/07/2021 18:01:27.0015] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0023] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=81A/cn=X400 +[03/07/2021 18:01:27.0028] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0034] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=81A/cn=MS +[03/07/2021 18:01:27.0037] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0042] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=81A/cn=SMTP +[03/07/2021 18:01:27.0045] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0050] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=81A/cn=MSA +[03/07/2021 18:01:27.0053] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0059] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=81A/cn=CCMAIL +[03/07/2021 18:01:27.0062] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0067] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C1A/cn=X400 +[03/07/2021 18:01:27.0070] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0075] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C1A/cn=MS +[03/07/2021 18:01:27.0078] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0084] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C1A/cn=SMTP +[03/07/2021 18:01:27.0089] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0095] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C1A/cn=MSA +[03/07/2021 18:01:27.0098] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0103] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C1A/cn=CCMAIL +[03/07/2021 18:01:27.0106] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0111] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41D/cn=X400 +[03/07/2021 18:01:27.0114] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0120] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41D/cn=MS +[03/07/2021 18:01:27.0123] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0129] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41D/cn=SMTP +[03/07/2021 18:01:27.0132] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0139] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41D/cn=MSA +[03/07/2021 18:01:27.0143] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0155] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41D/cn=CCMAIL +[03/07/2021 18:01:27.0159] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0164] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41E/cn=X400 +[03/07/2021 18:01:27.0167] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0172] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41E/cn=MS +[03/07/2021 18:01:27.0175] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0181] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41E/cn=SMTP +[03/07/2021 18:01:27.0186] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0192] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41E/cn=MSA +[03/07/2021 18:01:27.0195] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0201] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41E/cn=CCMAIL +[03/07/2021 18:01:27.0204] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0210] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41F/cn=X400 +[03/07/2021 18:01:27.0213] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0222] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41F/cn=MS +[03/07/2021 18:01:27.0225] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0231] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41F/cn=SMTP +[03/07/2021 18:01:27.0235] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0240] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41F/cn=MSA +[03/07/2021 18:01:27.0244] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0249] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=41F/cn=CCMAIL +[03/07/2021 18:01:27.0260] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0266] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=422/cn=X400 +[03/07/2021 18:01:27.0270] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0280] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=422/cn=MS +[03/07/2021 18:01:27.0283] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0293] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=422/cn=SMTP +[03/07/2021 18:01:27.0295] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0301] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=422/cn=MSA +[03/07/2021 18:01:27.0304] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0308] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=422/cn=CCMAIL +[03/07/2021 18:01:27.0312] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0317] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=420/cn=X400 +[03/07/2021 18:01:27.0321] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0326] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=420/cn=MS +[03/07/2021 18:01:27.0330] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0335] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=420/cn=SMTP +[03/07/2021 18:01:27.0338] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0343] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=420/cn=MSA +[03/07/2021 18:01:27.0346] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0354] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=420/cn=CCMAIL +[03/07/2021 18:01:27.0357] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0362] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=42A/cn=X400 +[03/07/2021 18:01:27.0366] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0371] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=42A/cn=MS +[03/07/2021 18:01:27.0374] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0381] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=42A/cn=SMTP +[03/07/2021 18:01:27.0385] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0391] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=42A/cn=MSA +[03/07/2021 18:01:27.0394] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0399] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=42A/cn=CCMAIL +[03/07/2021 18:01:27.0404] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0409] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=804/cn=X400 +[03/07/2021 18:01:27.0413] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0420] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=804/cn=MS +[03/07/2021 18:01:27.0424] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0435] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=804/cn=SMTP +[03/07/2021 18:01:27.0439] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0449] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=804/cn=MSA +[03/07/2021 18:01:27.0452] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0460] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=804/cn=CCMAIL +[03/07/2021 18:01:27.0464] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0469] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=404/cn=X400 +[03/07/2021 18:01:27.0472] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0477] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=404/cn=MS +[03/07/2021 18:01:27.0480] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0486] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=404/cn=SMTP +[03/07/2021 18:01:27.0489] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0496] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=404/cn=MSA +[03/07/2021 18:01:27.0499] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0513] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=404/cn=CCMAIL +[03/07/2021 18:01:27.0516] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0521] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C04/cn=X400 +[03/07/2021 18:01:27.0525] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0531] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C04/cn=MS +[03/07/2021 18:01:27.0535] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0541] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C04/cn=SMTP +[03/07/2021 18:01:27.0544] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0549] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C04/cn=MSA +[03/07/2021 18:01:27.0552] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0557] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Address-Templates/cn=C04/cn=CCMAIL +[03/07/2021 18:01:27.0560] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0565] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0568] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0569] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0573] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0574] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0580] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0581] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0583] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0584] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0587] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0588] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0590] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0592] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0594] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0596] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0599] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0600] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0602] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0603] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0606] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0607] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0609] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0610] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0613] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0614] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0616] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0617] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0619] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0620] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0623] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0624] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0627] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0628] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0631] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0632] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0634] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0635] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0638] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0639] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0642] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0643] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0645] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0646] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0648] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0650] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0652] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0653] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0656] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0657] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0660] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0661] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0663] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0664] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0667] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0668] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0671] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0672] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0674] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0675] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0677] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0678] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0684] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0684] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0687] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0688] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0690] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0692] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0694] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0695] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0698] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0699] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0701] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0703] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0705] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0706] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0709] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0710] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0713] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0714] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0716] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0717] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0719] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0720] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0722] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0723] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0726] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0727] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0730] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0731] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0733] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0734] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0737] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0738] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0741] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0742] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0744] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0745] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0749] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0750] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0753] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0755] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=409/cn=0 +[03/07/2021 18:01:27.0758] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0765] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=409/cn=1 +[03/07/2021 18:01:27.0768] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0775] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=409/cn=2 +[03/07/2021 18:01:27.0778] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0786] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=409/cn=3 +[03/07/2021 18:01:27.0790] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0798] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=409/cn=6 +[03/07/2021 18:01:27.0801] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0809] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=401/cn=0 +[03/07/2021 18:01:27.0812] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0817] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=401/cn=1 +[03/07/2021 18:01:27.0820] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0826] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=401/cn=2 +[03/07/2021 18:01:27.0834] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0840] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=401/cn=3 +[03/07/2021 18:01:27.0843] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0850] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=401/cn=6 +[03/07/2021 18:01:27.0854] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0863] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=402/cn=0 +[03/07/2021 18:01:27.0866] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0874] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=402/cn=1 +[03/07/2021 18:01:27.0876] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0886] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=402/cn=2 +[03/07/2021 18:01:27.0890] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0896] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=402/cn=3 +[03/07/2021 18:01:27.0899] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0905] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=402/cn=6 +[03/07/2021 18:01:27.0908] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0913] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=403/cn=0 +[03/07/2021 18:01:27.0916] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0921] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=403/cn=1 +[03/07/2021 18:01:27.0925] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0930] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=403/cn=2 +[03/07/2021 18:01:27.0933] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0938] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=403/cn=3 +[03/07/2021 18:01:27.0941] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0948] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=403/cn=6 +[03/07/2021 18:01:27.0951] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0956] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=405/cn=0 +[03/07/2021 18:01:27.0959] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0966] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=405/cn=1 +[03/07/2021 18:01:27.0969] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0975] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=405/cn=2 +[03/07/2021 18:01:27.0981] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:27.0987] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=405/cn=3 +[03/07/2021 18:01:27.0991] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0007] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=405/cn=6 +[03/07/2021 18:01:28.0011] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0018] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=406/cn=0 +[03/07/2021 18:01:28.0021] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0026] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=406/cn=1 +[03/07/2021 18:01:28.0030] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0035] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=406/cn=2 +[03/07/2021 18:01:28.0038] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0044] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=406/cn=3 +[03/07/2021 18:01:28.0046] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0051] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=406/cn=6 +[03/07/2021 18:01:28.0054] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0059] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=407/cn=0 +[03/07/2021 18:01:28.0065] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0070] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=407/cn=1 +[03/07/2021 18:01:28.0073] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0078] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=407/cn=2 +[03/07/2021 18:01:28.0081] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0086] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=407/cn=3 +[03/07/2021 18:01:28.0089] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0098] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=407/cn=6 +[03/07/2021 18:01:28.0102] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0107] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=408/cn=0 +[03/07/2021 18:01:28.0110] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0116] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=408/cn=1 +[03/07/2021 18:01:28.0119] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0126] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=408/cn=2 +[03/07/2021 18:01:28.0130] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0137] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=408/cn=3 +[03/07/2021 18:01:28.0140] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0146] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=408/cn=6 +[03/07/2021 18:01:28.0149] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0156] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C0A/cn=0 +[03/07/2021 18:01:28.0160] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0165] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C0A/cn=1 +[03/07/2021 18:01:28.0168] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0174] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C0A/cn=2 +[03/07/2021 18:01:28.0179] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0184] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C0A/cn=3 +[03/07/2021 18:01:28.0186] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0193] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C0A/cn=6 +[03/07/2021 18:01:28.0196] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0205] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=425/cn=0 +[03/07/2021 18:01:28.0208] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0215] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=425/cn=1 +[03/07/2021 18:01:28.0218] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0226] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=425/cn=2 +[03/07/2021 18:01:28.0229] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0235] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=425/cn=3 +[03/07/2021 18:01:28.0238] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0245] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=425/cn=6 +[03/07/2021 18:01:28.0248] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0254] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=42D/cn=0 +[03/07/2021 18:01:28.0257] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0263] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=42D/cn=1 +[03/07/2021 18:01:28.0266] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0271] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=42D/cn=2 +[03/07/2021 18:01:28.0274] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0280] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=42D/cn=3 +[03/07/2021 18:01:28.0282] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0289] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=42D/cn=6 +[03/07/2021 18:01:28.0292] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0299] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=429/cn=0 +[03/07/2021 18:01:28.0302] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0307] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=429/cn=1 +[03/07/2021 18:01:28.0309] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0315] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=429/cn=2 +[03/07/2021 18:01:28.0318] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0323] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=429/cn=3 +[03/07/2021 18:01:28.0326] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0332] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=429/cn=6 +[03/07/2021 18:01:28.0335] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0342] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=464/cn=0 +[03/07/2021 18:01:28.0346] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0352] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=464/cn=1 +[03/07/2021 18:01:28.0356] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0364] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=464/cn=2 +[03/07/2021 18:01:28.0366] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0371] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=464/cn=3 +[03/07/2021 18:01:28.0382] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0389] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=464/cn=6 +[03/07/2021 18:01:28.0391] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0398] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40B/cn=0 +[03/07/2021 18:01:28.0402] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0409] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40B/cn=1 +[03/07/2021 18:01:28.0412] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0419] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40B/cn=2 +[03/07/2021 18:01:28.0422] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0427] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40B/cn=3 +[03/07/2021 18:01:28.0430] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0434] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40B/cn=6 +[03/07/2021 18:01:28.0439] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0445] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40C/cn=0 +[03/07/2021 18:01:28.0449] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0454] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40C/cn=1 +[03/07/2021 18:01:28.0458] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0466] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40C/cn=2 +[03/07/2021 18:01:28.0469] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0474] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40C/cn=3 +[03/07/2021 18:01:28.0477] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0482] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40C/cn=6 +[03/07/2021 18:01:28.0486] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0496] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=456/cn=0 +[03/07/2021 18:01:28.0500] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0509] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=456/cn=1 +[03/07/2021 18:01:28.0512] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0518] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=456/cn=2 +[03/07/2021 18:01:28.0521] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0526] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=456/cn=3 +[03/07/2021 18:01:28.0530] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0540] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=456/cn=6 +[03/07/2021 18:01:28.0543] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0549] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40D/cn=0 +[03/07/2021 18:01:28.0552] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0557] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40D/cn=1 +[03/07/2021 18:01:28.0560] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0565] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40D/cn=2 +[03/07/2021 18:01:28.0569] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0575] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40D/cn=3 +[03/07/2021 18:01:28.0578] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0583] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40D/cn=6 +[03/07/2021 18:01:28.0586] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0595] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=439/cn=0 +[03/07/2021 18:01:28.0598] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0603] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=439/cn=1 +[03/07/2021 18:01:28.0606] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0613] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=439/cn=2 +[03/07/2021 18:01:28.0616] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0622] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=439/cn=3 +[03/07/2021 18:01:28.0624] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0630] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=439/cn=6 +[03/07/2021 18:01:28.0633] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0639] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41A/cn=0 +[03/07/2021 18:01:28.0642] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0647] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41A/cn=1 +[03/07/2021 18:01:28.0649] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0654] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41A/cn=2 +[03/07/2021 18:01:28.0657] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0662] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41A/cn=3 +[03/07/2021 18:01:28.0666] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0671] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41A/cn=6 +[03/07/2021 18:01:28.0675] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0680] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40E/cn=0 +[03/07/2021 18:01:28.0683] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0689] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40E/cn=1 +[03/07/2021 18:01:28.0692] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0698] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40E/cn=2 +[03/07/2021 18:01:28.0701] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0706] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40E/cn=3 +[03/07/2021 18:01:28.0709] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0716] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40E/cn=6 +[03/07/2021 18:01:28.0719] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0724] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=421/cn=0 +[03/07/2021 18:01:28.0727] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0737] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=421/cn=1 +[03/07/2021 18:01:28.0740] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0746] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=421/cn=2 +[03/07/2021 18:01:28.0749] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0755] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=421/cn=3 +[03/07/2021 18:01:28.0757] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0762] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=421/cn=6 +[03/07/2021 18:01:28.0766] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0772] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40F/cn=0 +[03/07/2021 18:01:28.0776] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0782] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40F/cn=1 +[03/07/2021 18:01:28.0785] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0790] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40F/cn=2 +[03/07/2021 18:01:28.0793] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0800] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40F/cn=3 +[03/07/2021 18:01:28.0802] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0807] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=40F/cn=6 +[03/07/2021 18:01:28.0811] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0817] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=410/cn=0 +[03/07/2021 18:01:28.0820] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0826] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=410/cn=1 +[03/07/2021 18:01:28.0830] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0843] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=410/cn=2 +[03/07/2021 18:01:28.0847] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0855] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=410/cn=3 +[03/07/2021 18:01:28.0858] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0870] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=410/cn=6 +[03/07/2021 18:01:28.0874] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0880] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=411/cn=0 +[03/07/2021 18:01:28.0883] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0889] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=411/cn=1 +[03/07/2021 18:01:28.0892] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0897] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=411/cn=2 +[03/07/2021 18:01:28.0900] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0906] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=411/cn=3 +[03/07/2021 18:01:28.0909] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0914] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=411/cn=6 +[03/07/2021 18:01:28.0918] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0923] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=8411/cn=0 +[03/07/2021 18:01:28.0926] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0931] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=8411/cn=1 +[03/07/2021 18:01:28.0934] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0939] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=8411/cn=2 +[03/07/2021 18:01:28.0942] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0947] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=8411/cn=3 +[03/07/2021 18:01:28.0950] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0955] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=8411/cn=6 +[03/07/2021 18:01:28.0959] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0965] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=43F/cn=0 +[03/07/2021 18:01:28.0969] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0974] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=43F/cn=1 +[03/07/2021 18:01:28.0977] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0983] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=43F/cn=2 +[03/07/2021 18:01:28.0986] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0990] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=43F/cn=3 +[03/07/2021 18:01:28.0993] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:28.0998] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=43F/cn=6 +[03/07/2021 18:01:29.0001] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0007] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=412/cn=0 +[03/07/2021 18:01:29.0012] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0017] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=412/cn=1 +[03/07/2021 18:01:29.0020] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0027] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=412/cn=2 +[03/07/2021 18:01:29.0030] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0035] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=412/cn=3 +[03/07/2021 18:01:29.0039] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0049] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=412/cn=6 +[03/07/2021 18:01:29.0052] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0059] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=427/cn=0 +[03/07/2021 18:01:29.0062] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0067] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=427/cn=1 +[03/07/2021 18:01:29.0070] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0076] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=427/cn=2 +[03/07/2021 18:01:29.0080] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0091] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=427/cn=3 +[03/07/2021 18:01:29.0097] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0102] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=427/cn=6 +[03/07/2021 18:01:29.0106] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0112] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=426/cn=0 +[03/07/2021 18:01:29.0116] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0122] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=426/cn=1 +[03/07/2021 18:01:29.0125] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0130] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=426/cn=2 +[03/07/2021 18:01:29.0135] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0140] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=426/cn=3 +[03/07/2021 18:01:29.0142] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0147] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=426/cn=6 +[03/07/2021 18:01:29.0150] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0155] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=43E/cn=0 +[03/07/2021 18:01:29.0158] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0164] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=43E/cn=1 +[03/07/2021 18:01:29.0168] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0173] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=43E/cn=2 +[03/07/2021 18:01:29.0175] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0180] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=43E/cn=3 +[03/07/2021 18:01:29.0183] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0188] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=43E/cn=6 +[03/07/2021 18:01:29.0190] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0195] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=414/cn=0 +[03/07/2021 18:01:29.0198] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0204] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=414/cn=1 +[03/07/2021 18:01:29.0208] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0214] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=414/cn=2 +[03/07/2021 18:01:29.0221] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0225] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=414/cn=3 +[03/07/2021 18:01:29.0232] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0237] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=414/cn=6 +[03/07/2021 18:01:29.0240] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0245] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=413/cn=0 +[03/07/2021 18:01:29.0248] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0253] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=413/cn=1 +[03/07/2021 18:01:29.0257] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0262] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=413/cn=2 +[03/07/2021 18:01:29.0265] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0270] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=413/cn=3 +[03/07/2021 18:01:29.0273] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0279] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=413/cn=6 +[03/07/2021 18:01:29.0282] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0293] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=415/cn=0 +[03/07/2021 18:01:29.0296] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0302] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=415/cn=1 +[03/07/2021 18:01:29.0304] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0309] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=415/cn=2 +[03/07/2021 18:01:29.0312] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0317] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=415/cn=3 +[03/07/2021 18:01:29.0320] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0327] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=415/cn=6 +[03/07/2021 18:01:29.0331] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0337] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=816/cn=0 +[03/07/2021 18:01:29.0340] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0345] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=816/cn=1 +[03/07/2021 18:01:29.0348] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0355] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=816/cn=2 +[03/07/2021 18:01:29.0359] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0364] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=816/cn=3 +[03/07/2021 18:01:29.0367] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0372] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=816/cn=6 +[03/07/2021 18:01:29.0375] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0380] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=416/cn=0 +[03/07/2021 18:01:29.0383] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0390] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=416/cn=1 +[03/07/2021 18:01:29.0393] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0399] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=416/cn=2 +[03/07/2021 18:01:29.0402] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0407] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=416/cn=3 +[03/07/2021 18:01:29.0409] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0414] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=416/cn=6 +[03/07/2021 18:01:29.0417] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0422] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=418/cn=0 +[03/07/2021 18:01:29.0425] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0430] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=418/cn=1 +[03/07/2021 18:01:29.0433] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0438] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=418/cn=2 +[03/07/2021 18:01:29.0441] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0447] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=418/cn=3 +[03/07/2021 18:01:29.0450] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0457] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=418/cn=6 +[03/07/2021 18:01:29.0460] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0466] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=419/cn=0 +[03/07/2021 18:01:29.0470] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0475] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=419/cn=1 +[03/07/2021 18:01:29.0477] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0485] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=419/cn=2 +[03/07/2021 18:01:29.0489] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0495] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=419/cn=3 +[03/07/2021 18:01:29.0498] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0504] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=419/cn=6 +[03/07/2021 18:01:29.0511] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0518] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41B/cn=0 +[03/07/2021 18:01:29.0525] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0531] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41B/cn=1 +[03/07/2021 18:01:29.0534] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0540] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41B/cn=2 +[03/07/2021 18:01:29.0543] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0548] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41B/cn=3 +[03/07/2021 18:01:29.0551] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0556] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41B/cn=6 +[03/07/2021 18:01:29.0560] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0567] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=424/cn=0 +[03/07/2021 18:01:29.0573] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0581] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=424/cn=1 +[03/07/2021 18:01:29.0584] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0589] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=424/cn=2 +[03/07/2021 18:01:29.0592] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0598] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=424/cn=3 +[03/07/2021 18:01:29.0602] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0609] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=424/cn=6 +[03/07/2021 18:01:29.0615] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0622] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=81A/cn=0 +[03/07/2021 18:01:29.0625] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0631] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=81A/cn=1 +[03/07/2021 18:01:29.0635] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0640] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=81A/cn=2 +[03/07/2021 18:01:29.0643] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0648] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=81A/cn=3 +[03/07/2021 18:01:29.0651] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0656] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=81A/cn=6 +[03/07/2021 18:01:29.0659] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0665] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C1A/cn=0 +[03/07/2021 18:01:29.0668] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0673] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C1A/cn=1 +[03/07/2021 18:01:29.0676] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0682] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C1A/cn=2 +[03/07/2021 18:01:29.0685] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0691] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C1A/cn=3 +[03/07/2021 18:01:29.0693] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0706] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C1A/cn=6 +[03/07/2021 18:01:29.0710] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0717] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41D/cn=0 +[03/07/2021 18:01:29.0722] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0731] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41D/cn=1 +[03/07/2021 18:01:29.0740] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0751] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41D/cn=2 +[03/07/2021 18:01:29.0754] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0761] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41D/cn=3 +[03/07/2021 18:01:29.0764] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0769] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41D/cn=6 +[03/07/2021 18:01:29.0773] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0779] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41E/cn=0 +[03/07/2021 18:01:29.0782] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0788] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41E/cn=1 +[03/07/2021 18:01:29.0791] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0797] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41E/cn=2 +[03/07/2021 18:01:29.0800] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0805] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41E/cn=3 +[03/07/2021 18:01:29.0808] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0813] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41E/cn=6 +[03/07/2021 18:01:29.0816] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0821] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41F/cn=0 +[03/07/2021 18:01:29.0824] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0829] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41F/cn=1 +[03/07/2021 18:01:29.0832] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0840] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41F/cn=2 +[03/07/2021 18:01:29.0843] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0848] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41F/cn=3 +[03/07/2021 18:01:29.0850] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0855] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=41F/cn=6 +[03/07/2021 18:01:29.0858] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0862] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=422/cn=0 +[03/07/2021 18:01:29.0865] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0871] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=422/cn=1 +[03/07/2021 18:01:29.0873] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0879] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=422/cn=2 +[03/07/2021 18:01:29.0882] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0887] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=422/cn=3 +[03/07/2021 18:01:29.0889] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0895] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=422/cn=6 +[03/07/2021 18:01:29.0898] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0905] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=420/cn=0 +[03/07/2021 18:01:29.0908] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0913] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=420/cn=1 +[03/07/2021 18:01:29.0917] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0922] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=420/cn=2 +[03/07/2021 18:01:29.0925] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0930] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=420/cn=3 +[03/07/2021 18:01:29.0933] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0938] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=420/cn=6 +[03/07/2021 18:01:29.0941] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0947] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=42A/cn=0 +[03/07/2021 18:01:29.0949] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0954] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=42A/cn=1 +[03/07/2021 18:01:29.0957] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0962] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=42A/cn=2 +[03/07/2021 18:01:29.0964] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0969] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=42A/cn=3 +[03/07/2021 18:01:29.0972] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0977] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=42A/cn=6 +[03/07/2021 18:01:29.0980] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0985] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=804/cn=0 +[03/07/2021 18:01:29.0988] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:29.0993] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=804/cn=1 +[03/07/2021 18:01:29.0996] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0000] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=804/cn=2 +[03/07/2021 18:01:30.0003] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0008] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=804/cn=3 +[03/07/2021 18:01:30.0011] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0016] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=804/cn=6 +[03/07/2021 18:01:30.0020] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0024] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=404/cn=0 +[03/07/2021 18:01:30.0027] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0034] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=404/cn=1 +[03/07/2021 18:01:30.0037] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0042] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=404/cn=2 +[03/07/2021 18:01:30.0045] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0050] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=404/cn=3 +[03/07/2021 18:01:30.0053] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0057] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=404/cn=6 +[03/07/2021 18:01:30.0060] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0066] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C04/cn=0 +[03/07/2021 18:01:30.0069] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0074] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C04/cn=1 +[03/07/2021 18:01:30.0076] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0082] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C04/cn=2 +[03/07/2021 18:01:30.0084] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0089] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C04/cn=3 +[03/07/2021 18:01:30.0092] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0097] [2] Deleteting DS object /dc=local/dc=Solo/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=SoloORG/cn=Addressing/cn=Display-Templates/cn=C04/cn=6 +[03/07/2021 18:01:30.0100] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0106] [2] Entering CAtomOrgCtChildren::ScInstallTemplates +[03/07/2021 18:01:30.0106] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:30.0108] [2] Entering ScCreateTempFileName +[03/07/2021 18:01:30.0109] [2] Leaving ScCreateTempFileName +[03/07/2021 18:01:30.0109] [2] Entering ScSubstituteStringInFile +[03/07/2021 18:01:30.0152] [2] Leaving ScSubstituteStringInFile +[03/07/2021 18:01:32.0805] [2] Leaving CAtomOrgCtChildren::ScInstallTemplates +[03/07/2021 18:01:32.0808] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0808] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0810] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0810] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0816] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0816] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0819] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0819] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0821] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0821] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0824] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0824] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0826] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0826] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0830] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0830] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0833] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0833] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0836] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0836] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0838] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0839] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0841] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0841] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0844] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0844] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0846] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0847] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0849] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0849] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0852] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0852] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0856] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0856] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0859] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0859] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0861] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0861] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0864] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0864] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0866] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0866] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0869] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0869] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0872] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0872] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0876] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0876] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0878] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0879] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0882] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0883] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0886] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0886] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0892] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0892] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0895] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0895] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0898] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0898] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0901] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0901] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0904] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0904] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0907] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0907] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0910] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0910] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0913] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0913] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0918] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0918] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0920] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0920] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0923] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0923] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0926] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0926] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0933] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0933] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0936] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0936] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0940] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0940] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0942] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0942] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0945] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0945] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0947] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0947] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0950] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0950] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0953] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0953] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0956] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0956] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0960] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0960] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0963] [2] Entering CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0963] [2] Leaving CAtomOrgCtChildren::ScCopyAttribute +[03/07/2021 18:01:32.0965] [2] Leaving CAtomOrgCtChildren::ScUpdateTemplates +[03/07/2021 18:01:32.0976] [2] Creating templates +[03/07/2021 18:01:32.0976] [2] Entering CAtomOrgCtChildren::ScCreateProxyDLLObjects +[03/07/2021 18:01:32.0976] [2] Configuring X400 address type for i386 processor. +[03/07/2021 18:01:32.0976] [2] Entering ScCreateOrgLevelAddressTypeObjs +[03/07/2021 18:01:32.0980] [2] Leaving ScCreateOrgLevelAddressTypeObj +[03/07/2021 18:01:32.0980] [2] Configuring X400 address type for AMD64 processor. +[03/07/2021 18:01:32.0980] [2] Entering ScCreateOrgLevelAddressTypeObjs +[03/07/2021 18:01:32.0983] [2] Leaving ScCreateOrgLevelAddressTypeObj +[03/07/2021 18:01:32.0983] [2] Configuring SMTP address type for i386 processor. +[03/07/2021 18:01:32.0983] [2] Entering ScCreateOrgLevelAddressTypeObjs +[03/07/2021 18:01:32.0987] [2] Leaving ScCreateOrgLevelAddressTypeObj +[03/07/2021 18:01:32.0987] [2] Configuring SMTP address type for AMD64 processor. +[03/07/2021 18:01:32.0988] [2] Entering ScCreateOrgLevelAddressTypeObjs +[03/07/2021 18:01:32.0990] [2] Leaving ScCreateOrgLevelAddressTypeObj +[03/07/2021 18:01:32.0990] [2] Configuring NOTES address type for i386 processor. +[03/07/2021 18:01:32.0990] [2] Entering ScCreateOrgLevelAddressTypeObjs +[03/07/2021 18:01:32.0993] [2] Leaving ScCreateOrgLevelAddressTypeObj +[03/07/2021 18:01:32.0993] [2] Configuring NOTES address type for AMD64 processor. +[03/07/2021 18:01:32.0993] [2] Entering ScCreateOrgLevelAddressTypeObjs +[03/07/2021 18:01:32.0996] [2] Leaving ScCreateOrgLevelAddressTypeObj +[03/07/2021 18:01:32.0996] [2] Configuring GWISE address type for i386 processor. +[03/07/2021 18:01:32.0996] [2] Entering ScCreateOrgLevelAddressTypeObjs +[03/07/2021 18:01:32.0998] [2] Leaving ScCreateOrgLevelAddressTypeObj +[03/07/2021 18:01:32.0998] [2] Configuring GWISE address type for AMD64 processor. +[03/07/2021 18:01:32.0998] [2] Entering ScCreateOrgLevelAddressTypeObjs +[03/07/2021 18:01:33.0001] [2] Leaving ScCreateOrgLevelAddressTypeObj +[03/07/2021 18:01:33.0001] [2] Leaving CAtomOrgCtChildren::ScCreateProxyDLLObjects +[03/07/2021 18:01:33.0001] [2] Creating system policies. +[03/07/2021 18:01:33.0001] [2] Entering CAtomOrgCtChildren::ScCreateSystemPolicies +[03/07/2021 18:01:33.0001] [2] Creating System Policies +[03/07/2021 18:01:33.0004] [2] Creating System Policies\Mail Enable Recipient +[03/07/2021 18:01:33.0006] [2] Creating System Policies\Mailbox Enable User +[03/07/2021 18:01:33.0009] [2] Leaving CAtomOrgCtChildren::ScCreateSystemPolicies +[03/07/2021 18:01:33.0009] [2] Setting policy roots attribute on the Microsoft Exchange container +[03/07/2021 18:01:33.0009] [2] Entering CAtomOrgCtChildren::ScSetPolicyRootsOnExchangeContainer +[03/07/2021 18:01:33.0013] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:33.0014] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:33.0016] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:33.0019] [2] Status code check (d:\dbs\sh\e16df\1126_100440_0\cmd\19\sources\dev\admin\src\libs\ds\x_dob.cxx:3370) + Error code 0X8000500D (20493): This property can't be found in the cache. +[03/07/2021 18:01:33.0024] [2] Leaving CAtomOrgCtChildren::ScSetPolicyRootsOnExchangeContainer +[03/07/2021 18:01:33.0024] [2] Leaving CAtomOrgCtChildren::ScAddDSObjects +[03/07/2021 18:01:33.0024] [2] Leaving CBaseAtom(Microsoft Exchange Organization-Level container children)::ScRefreshDSObjects +[03/07/2021 18:01:33.0024] [2] Entering CAtomOrgCtChildren::ScUpdateSharedAtomRemovalControl +[03/07/2021 18:01:33.0024] [2] Leaving CAtomOrgCtChildren::ScUpdateSharedAtomRemovalControl +[03/07/2021 18:01:33.0024] [2] Completed Reinstall of Microsoft Exchange Organization-Level container children sub-component. +[03/07/2021 18:01:33.0024] [2] Leaving ScSetupAtom +[03/07/2021 18:01:33.0026] [2] Ending processing buildToBuildUpgrade-ExsetDataAtom +[03/07/2021 18:01:33.0028] [1] Executing: + initialize-ExchangeUniversalGroups -DomainController $RoleDomainController -ActiveDirectorySplitPermissions $RoleActiveDirectorySplitPermissions + + +[03/07/2021 18:01:33.0034] [2] Active Directory session settings for 'initialize-ExchangeUniversalGroups' are: View Entire Forest: 'True', Configuration Domain Controller: 'Solo-DC1.Solo.local', Preferred Global Catalog: 'Solo-DC1.Solo.local', Preferred Domain Controllers: '{ Solo-DC1.Solo.local }' +[03/07/2021 18:01:33.0034] [2] User specified parameters: -DomainController:'Solo-DC1.Solo.local' -ActiveDirectorySplitPermissions:$null +[03/07/2021 18:01:33.0035] [2] Beginning processing initialize-ExchangeUniversalGroups +[03/07/2021 18:01:33.0048] [2] Used domain controller Solo-DC1.Solo.local to read object DC=Solo,DC=local. +[03/07/2021 18:01:33.0053] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Configuration,DC=Solo,DC=local. +[03/07/2021 18:01:33.0055] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local. +[03/07/2021 18:01:33.0504] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0509] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0512] [2] Used domain controller Solo-DC1.Solo.local to read object CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0535] [2] Used domain controller Solo-DC1.Solo.local to read object CN=UM Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0539] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Help Desk,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0543] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Records Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0555] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Server Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0559] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Delegated Setup,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0563] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Hygiene Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0567] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Compliance Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0570] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Security Reader,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0574] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Security Administrator,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0578] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Exchange Servers,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0581] [2] Used domain controller Solo-DC1.Solo.local to read object CN=ExchangeLegacyInterop,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0585] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Exchange Trusted Subsystem,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0589] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Exchange Windows Permissions,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0599] [2] Used domain controller Solo-DC1.Solo.local to read object OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0617] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0617] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0617] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0621] [2] Group CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local already exists. +[03/07/2021 18:01:33.0627] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0642] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0643] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0643] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0643] [2] Group CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local already exists. +[03/07/2021 18:01:33.0643] [2] Used domain controller Solo-DC1.Solo.local to read object CN=Recipient Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0661] [2] Used domain controller Solo-DC1.Solo.local to read object CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0661] [2] Used domain controller Solo-DC1.Solo.local to read object CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0661] [2] Used domain controller Solo-DC1.Solo.local to read object CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0661] [2] Group CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local already exists. +[03/07/2021 18:01:33.0662] [2] Used domain controller Solo-DC1.Solo.local to read object CN=View-Only Organization Management,OU=Microsoft Exchange Security Groups,DC=Solo,DC=local. +[03/07/2021 18:01:33.0690] [2] [ERROR] The well-known object entry B:32:45FA417B3574DC4E929BC4B059699792:CN=Public Folder Management\0ADEL:6181d6d9-6861-4dc9-9fe8-d7b34a2ce633,CN=Deleted Objects,DC=Solo,DC=local on the otherWellKnownObjects attribute in the container object CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local points to an invalid DN or a deleted object. Remove the entry, and then rerun the task. +[03/07/2021 18:01:33.0712] [2] [ERROR] The well-known object entry B:32:45FA417B3574DC4E929BC4B059699792:CN=Public Folder Management\0ADEL:6181d6d9-6861-4dc9-9fe8-d7b34a2ce633,CN=Deleted Objects,DC=Solo,DC=local on the otherWellKnownObjects attribute in the container object CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local points to an invalid DN or a deleted object. Remove the entry, and then rerun the task. +[03/07/2021 18:01:33.0723] [2] Ending processing initialize-ExchangeUniversalGroups +[03/07/2021 18:01:33.0729] [1] The following 1 error(s) occurred during task execution: +[03/07/2021 18:01:33.0732] [1] 0. ErrorRecord: The well-known object entry B:32:45FA417B3574DC4E929BC4B059699792:CN=Public Folder Management\0ADEL:6181d6d9-6861-4dc9-9fe8-d7b34a2ce633,CN=Deleted Objects,DC=Solo,DC=local on the otherWellKnownObjects attribute in the container object CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local points to an invalid DN or a deleted object. Remove the entry, and then rerun the task. +[03/07/2021 18:01:33.0732] [1] 0. ErrorRecord: Microsoft.Exchange.Management.Tasks.InvalidWKObjectException: The well-known object entry B:32:45FA417B3574DC4E929BC4B059699792:CN=Public Folder Management\0ADEL:6181d6d9-6861-4dc9-9fe8-d7b34a2ce633,CN=Deleted Objects,DC=Solo,DC=local on the otherWellKnownObjects attribute in the container object CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local points to an invalid DN or a deleted object. Remove the entry, and then rerun the task. + at Microsoft.Exchange.Configuration.Tasks.Task.ThrowError(Exception exception, ErrorCategory errorCategory, Object target, String helpUrl) + at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.CreateGroup(ADOrganizationalUnit usgContainer, String groupName, Int32 groupId, Guid wkGuid, String groupDescription, GroupTypeFlags groupType, Boolean createAsRoleGroup) + at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.CreateRoleGroup(ADOrganizationalUnit usgContainer, RoleGroupDefinition roleGroup) + at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.CreateAndValidateRoleGroups(ADOrganizationalUnit usgContainer, RoleGroupCollection roleGroups) + at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.InternalProcessRecord() + at Microsoft.Exchange.Configuration.Tasks.Task.b__91_1() + at Microsoft.Exchange.Configuration.Tasks.Task.InvokeRetryableFunc(String funcName, Action func, Boolean terminatePipelineIfFailed) +[03/07/2021 18:01:33.0740] [1] [ERROR] The following error was generated when "$error.Clear(); + initialize-ExchangeUniversalGroups -DomainController $RoleDomainController -ActiveDirectorySplitPermissions $RoleActiveDirectorySplitPermissions + +" was run: "Microsoft.Exchange.Management.Tasks.InvalidWKObjectException: The well-known object entry B:32:45FA417B3574DC4E929BC4B059699792:CN=Public Folder Management\0ADEL:6181d6d9-6861-4dc9-9fe8-d7b34a2ce633,CN=Deleted Objects,DC=Solo,DC=local on the otherWellKnownObjects attribute in the container object CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local points to an invalid DN or a deleted object. Remove the entry, and then rerun the task. + at Microsoft.Exchange.Configuration.Tasks.Task.ThrowError(Exception exception, ErrorCategory errorCategory, Object target, String helpUrl) + at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.CreateGroup(ADOrganizationalUnit usgContainer, String groupName, Int32 groupId, Guid wkGuid, String groupDescription, GroupTypeFlags groupType, Boolean createAsRoleGroup) + at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.CreateRoleGroup(ADOrganizationalUnit usgContainer, RoleGroupDefinition roleGroup) + at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.CreateAndValidateRoleGroups(ADOrganizationalUnit usgContainer, RoleGroupCollection roleGroups) + at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.InternalProcessRecord() + at Microsoft.Exchange.Configuration.Tasks.Task.b__91_1() + at Microsoft.Exchange.Configuration.Tasks.Task.InvokeRetryableFunc(String funcName, Action func, Boolean terminatePipelineIfFailed)". +[03/07/2021 18:01:33.0740] [1] [ERROR] The well-known object entry B:32:45FA417B3574DC4E929BC4B059699792:CN=Public Folder Management\0ADEL:6181d6d9-6861-4dc9-9fe8-d7b34a2ce633,CN=Deleted Objects,DC=Solo,DC=local on the otherWellKnownObjects attribute in the container object CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local points to an invalid DN or a deleted object. Remove the entry, and then rerun the task. +[03/07/2021 18:01:33.0740] [1] [ERROR-REFERENCE] Id=443949901 Component= +[03/07/2021 18:01:33.0742] [1] Setup is stopping now because of one or more critical errors. +[03/07/2021 18:01:33.0742] [1] Finished executing component tasks. +[03/07/2021 18:01:33.0762] [1] Ending processing Install-ExchangeOrganization +[03/07/2021 18:01:33.0766] [0] CurrentResult console.ProcessRunInternal:198: 1 +[03/07/2021 18:01:33.0784] [0] CurrentResult launcherbase.maincore:90: 1 +[03/07/2021 18:01:33.0784] [0] CurrentResult console.startmain:52: 1 +[03/07/2021 18:01:33.0785] [0] CurrentResult SetupLauncherHelper.loadassembly:452: 1 +[03/07/2021 18:01:33.0786] [0] The Exchange Server setup operation didn't complete. More details can be found in ExchangeSetup.log located in the :\ExchangeSetupLogs folder. +[03/07/2021 18:01:33.0790] [0] CurrentResult main.run:235: 1 +[03/07/2021 18:01:33.0790] [0] CurrentResult setupbase.maincore:396: 1 +[03/07/2021 18:01:33.0796] [0] End of Setup +[03/07/2021 18:01:33.0796] [0] ********************************************** diff --git a/Setup/Tests/SetupLogReviewer.Tests.ps1 b/Setup/Tests/SetupLogReviewer.Tests.ps1 index 0f4f557f9f..7f770d70ff 100644 --- a/Setup/Tests/SetupLogReviewer.Tests.ps1 +++ b/Setup/Tests/SetupLogReviewer.Tests.ps1 @@ -84,5 +84,13 @@ Describe "Testing SetupLogReviewer" { Assert-MockCalled -Exactly 1 -CommandName Write-Host ` -ParameterFilter { $object -like "*The well-known object entry with the GUID `"6c01d2a7-f083-4503-8132-789eeb127b84`"*" -and $ForegroundColor -eq "Yellow" } } + + It "Invalid Well Known Objects Exception" { + & $sr -SetupLog "$here\KnownIssues\OrganizationPreparation\ExchangeSetup_InvalidWKObjectException.log" + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -ParameterFilter { $Object -like "*CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local points to an invalid DN or a deleted object*" } + Assert-MockCalled -Exactly 1 -CommandName Write-Host ` + -ParameterFilter { $Object -like "*Run the SetupAssist.ps1 script with '-OtherWellKnownObjectsContainer `"CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=Solo,DC=local`"' to be able address deleted objects type" } + } } } \ No newline at end of file From 81a3c88cf38f969c6115bc5d2401139adb5e1455 Mon Sep 17 00:00:00 2001 From: Bill Long Date: Sun, 7 Mar 2021 19:31:45 -0600 Subject: [PATCH 7/7] Remove unnecessary checksum files --- .../Baselines/baseline_15.0.1395.4_checksum.txt | Bin 134 -> 0 bytes .../Baselines/baseline_15.0.1473.3_checksum.txt | Bin 134 -> 0 bytes .../Baselines/baseline_15.0.1497.2_checksum.txt | Bin 134 -> 0 bytes .../Baselines/baseline_15.1.1466.3_checksum.txt | Bin 134 -> 0 bytes .../Baselines/baseline_15.1.1979.3_checksum.txt | Bin 134 -> 0 bytes .../Baselines/baseline_15.1.2044.4_checksum.txt | Bin 134 -> 0 bytes .../Baselines/baseline_15.2.659.4_checksum.txt | Bin 134 -> 0 bytes .../Baselines/baseline_15.2.721.2_checksum.txt | Bin 134 -> 0 bytes .../Baselines/baseline_15.2.792.3_checksum.txt | Bin 134 -> 0 bytes 9 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 Security/Baselines/baseline_15.0.1395.4_checksum.txt delete mode 100644 Security/Baselines/baseline_15.0.1473.3_checksum.txt delete mode 100644 Security/Baselines/baseline_15.0.1497.2_checksum.txt delete mode 100644 Security/Baselines/baseline_15.1.1466.3_checksum.txt delete mode 100644 Security/Baselines/baseline_15.1.1979.3_checksum.txt delete mode 100644 Security/Baselines/baseline_15.1.2044.4_checksum.txt delete mode 100644 Security/Baselines/baseline_15.2.659.4_checksum.txt delete mode 100644 Security/Baselines/baseline_15.2.721.2_checksum.txt delete mode 100644 Security/Baselines/baseline_15.2.792.3_checksum.txt diff --git a/Security/Baselines/baseline_15.0.1395.4_checksum.txt b/Security/Baselines/baseline_15.0.1395.4_checksum.txt deleted file mode 100644 index 92cfdea80a92bb2fb264091f133212ac93a5dd7c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmXYqK@NZ*3Pl6AEhY%tWgO j`M^(qb+*5oYcg9&jJGm*(?-^C0$t=U!|$9yw`$P?|2h!W diff --git a/Security/Baselines/baseline_15.0.1473.3_checksum.txt b/Security/Baselines/baseline_15.0.1473.3_checksum.txt deleted file mode 100644 index 3f543be84daf0b7e5bb013df78a5f5c94ba1a31b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmW-aK@P((2n6R`DSx51Qzu8eZvOwGv_pk}WwgNe9t4XI2XA&xUQD_f&Y?PtuA|bN mlUH5A_}6MLTs+OG?p{i^B*P2cDC*=*l3&8jOO>Rt@!$vZ#1NeT diff --git a/Security/Baselines/baseline_15.0.1497.2_checksum.txt b/Security/Baselines/baseline_15.0.1497.2_checksum.txt deleted file mode 100644 index 6b6128aa912cc796e78e4cbcae4df68fc83b90c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmXAhQ4WA03`6^E;$4^u;-?P0|B2K$4Cyjn+r5v;lvI^f*beQw&_8cjhlWmVIE7i{ i_zQA+E9$UlW>g1@oI@KOV@o(`{5z?}wa8`OtVti-01#aO diff --git a/Security/Baselines/baseline_15.1.1466.3_checksum.txt b/Security/Baselines/baseline_15.1.1466.3_checksum.txt deleted file mode 100644 index 6f883f7f4aa361a86d9f759c35e1f326d695f78c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmW-ZOAdfA2t;RX;$5`1p)RGL`=6-#Boip}I`A%6lA)rk&OBA=2foQe74|#RO`^aq iGOj1Q#jmq*LXCH7pd7A46WIZ;RA%mMPI`-LyEc6S2N3Q6 diff --git a/Security/Baselines/baseline_15.1.1979.3_checksum.txt b/Security/Baselines/baseline_15.1.1979.3_checksum.txt deleted file mode 100644 index 855c65a6bf5e04645008fe9f45501c4504b0d019..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmXAhK@NZ*3xheTjx-~$1{5WWBa diff --git a/Security/Baselines/baseline_15.1.2044.4_checksum.txt b/Security/Baselines/baseline_15.1.2044.4_checksum.txt deleted file mode 100644 index 68c138d3381a992de62f29c068ed3b174a1953a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmXYqOAde_3`A#b;$8SC$P%#J|3vC*V!CMO%?!LxRnV!ds;H*IBpFxN&<&rs3FV$~ mA6mN5M#Fa};f+al!7?h~G+4wPFoPPemH(#!^(0(Z;4!RMZVQt{tM_rny(N;XAqE8OiAJD?l67=hsz>KKbepmjD0& diff --git a/Security/Baselines/baseline_15.2.792.3_checksum.txt b/Security/Baselines/baseline_15.2.792.3_checksum.txt deleted file mode 100644 index 480fcc0f081bc95e028e65e0e8c3d579c2ab7758..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmXAiK@NZ*3u5;41fJ{1^s~kZyioJx>hZE0pr>bc>n+a