diff --git a/.build/Build.ps1 b/.build/Build.ps1
index 88d97f8f22..896d510717 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/Security/Baselines/baseline_15.0.1395.4_checksum.txt b/Security/Baselines/baseline_15.0.1395.4_checksum.txt
deleted file mode 100644
index 92cfdea80a..0000000000
Binary files a/Security/Baselines/baseline_15.0.1395.4_checksum.txt and /dev/null differ
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 3f543be84d..0000000000
Binary files a/Security/Baselines/baseline_15.0.1473.3_checksum.txt and /dev/null differ
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 6b6128aa91..0000000000
Binary files a/Security/Baselines/baseline_15.0.1497.2_checksum.txt and /dev/null differ
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 6f883f7f4a..0000000000
Binary files a/Security/Baselines/baseline_15.1.1466.3_checksum.txt and /dev/null differ
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 855c65a6bf..0000000000
Binary files a/Security/Baselines/baseline_15.1.1979.3_checksum.txt and /dev/null differ
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 68c138d338..0000000000
Binary files a/Security/Baselines/baseline_15.1.2044.4_checksum.txt and /dev/null differ
diff --git a/Security/Baselines/baseline_15.2.659.4_checksum.txt b/Security/Baselines/baseline_15.2.659.4_checksum.txt
deleted file mode 100644
index 74cd7b58a1..0000000000
Binary files a/Security/Baselines/baseline_15.2.659.4_checksum.txt and /dev/null differ
diff --git a/Security/Baselines/baseline_15.2.721.2_checksum.txt b/Security/Baselines/baseline_15.2.721.2_checksum.txt
deleted file mode 100644
index 211decdbb0..0000000000
Binary files a/Security/Baselines/baseline_15.2.721.2_checksum.txt and /dev/null differ
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 480fcc0f08..0000000000
Binary files a/Security/Baselines/baseline_15.2.792.3_checksum.txt and /dev/null differ
diff --git a/Setup/SetupAssist.ps1 b/Setup/SetupAssist.ps1
index 7ba6b340d2..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)
@@ -18,14 +20,34 @@ 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
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()
@@ -174,77 +196,160 @@ function Get-ExchangeAdSetupObjects {
return $hash
}
-if (IsAdministrator) {
- Write-Host "User is an administrator."
-} else {
- Write-Warning "User is not an administrator."
-}
+Function MainUse {
+ $whoamiOutput = whoami /all
-$whoamiOutput = whoami /all
+ $whoamiOutput | Select-String "User Name" -Context (0, 3)
-$g = GetGroupMatches $whoamiOutput "Domain Admins"
+ if (IsAdministrator) {
+ Write-Host "User is an administrator."
+ } else {
+ Write-Warning "User is not an administrator."
+ }
-if ($g.Count -gt 0) {
- $g | ForEach-Object { Write-Host "User is a member of" $_ }
-} else {
- Write-Warning "User is not a member of Domain Admins."
-}
+ [array]$g = GetGroupMatches $whoamiOutput "Domain Admins"
-$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 Domain Admins."
+ }
-if ($g.Count -gt 0) {
- $g | ForEach-Object { Write-Host "User is a member of" $_ }
-} else {
- Write-Warning "User is not a member of Schema Admins. - Only required if doing a Schema Update"
-}
+ [array]$g = GetGroupMatches $whoamiOutput "Schema Admins"
-$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 Schema Admins. - Only required if doing a Schema Update"
+ }
-if ($g.Count -gt 0) {
- $g | ForEach-Object { Write-Host "User is a member of" $_ }
-} 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 "Enterprise Admins"
-$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 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" $_ }
-} else {
- Write-Warning "User is not a member of Organization Management."
-}
+ [array]$g = GetGroupMatches $whoamiOutput "Organization Management"
-$p = Get-ExecutionPolicy
-if ($p -ne "Unrestricted" -and $p -ne "Bypass") {
- Write-Warning "ExecutionPolicy is $p"
-} else {
- Write-Host "ExecutionPolicy is $p"
-}
+ 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."
+ }
-$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 })
+ $p = Get-ExecutionPolicy
+ if ($p -ne "Unrestricted" -and $p -ne "Bypass") {
+ Write-Warning "ExecutionPolicy is $p"
+ } else {
+ Write-Host "ExecutionPolicy is $p"
+ }
-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"
-}
+ $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"
+ }
-$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 ea728efb0b..5c2a8d64ae 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-Error "ServerAlreadyExists check came back False, and the user that ran setup does not have ExOrgAdmin or EnterpriseAdmin."
+ 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-Error "User that ran setup has extra rights to the server object and is not in Server Management. This causes setup to fail."
+ 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-Error ("Computer is pending reboot based off the Windows Component is the registry")
+ 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,30 +148,37 @@ 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-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-Error ("/PrepareSchema is required and user {0} isn't apart of the Enterprise Admins group." -f $currentLogOnUser)
+ 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-Error ("/PrepareAD is required and user {0} isn't apart of the Enterprise Admins group." -f $currentLogOnUser)
+ 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-Error ("/PrepareDomain needs to be run in this domain, but we actually require Enterprise Admin group to properly run this command.")
+ 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-Error ("User {0} isn't apart of Organization Management group." -f $currentLogOnUser)
+ Write-Output ("User {0} isn't apart of Organization Management group." -f $currentLogOnUser) |
+ Receive-Output -ForegroundColor Red
+ $sid = Get-EvaluatedSettingOrRule -SettingName "SidExOrgAdmins" -ValueType "."
+ Write-Output ("Looking to be in this group SID: $($sid.Matches.Groups[1].Value)")
return $true
}
@@ -171,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
}
}
@@ -179,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 {
@@ -188,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
@@ -303,6 +347,11 @@ Function Test-KnownLdifErrors {
Function Main {
try {
+
+ if ($PesterLoad) {
+ return
+ }
+
if (-not ([IO.File]::Exists($SetupLog))) {
Write-Error "Could not find file: $SetupLog"
return
@@ -331,16 +380,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
}
}
@@ -351,34 +402,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"
}
}
@@ -389,6 +441,10 @@ Function Main {
return
}
+ if (Test-KnownOrganizationPreparationErrors) {
+ return
+ }
+
if (Test-KnownErrorReferenceSetupIssues) {
return
}
@@ -397,11 +453,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/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:"