We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please add for check status service on EDGE servers
foreach ($pool in $AllEdgePools) { $AllLyncServers += Get-CsComputer -Pool $pool | Select-Object -ExpandProperty Fqdn }
and
Write-Host "`nChecking $pool Central Management Database `n" -ForegroundColor Yellow $test = Test-CsDatabase -CentralManagementDatabase Write-Host "`nServer`t`t`t`t`t`t`t`tDatabse`t`tStatus Report" -ForegroundColor yellow foreach ($DataBAse in $test) { Write-Host $DataBAse.SqlServerFqdn `t`t -NoNewLine Write-Host $DataBAse.DatabaseName `t`t`t -ForegroundColor Green -NoNewLine if ($DataBAse.Succeed -eq "True") { Write-Host $DataBAse.Succeed -ForegroundColor Green }else { Write-Host $DataBAse.Succeed -ForegroundColor red } } foreach ($sql in $AllSQLServers) { Write-Host "`nChecking Configured Databases on server $sql `n" -ForegroundColor Yellow $test = Test-CsDatabase -SqlServerFqdn $sql -ConfiguredDatabases Write-Host "`nServer`t`t`t`t`t`t`t`tDatabse`t`tStatus Report" -ForegroundColor yellow foreach ($DataBAse in $test) { #Write-Host "`nServer`t`t`t`tDatabse`t`tStatus Report" -ForegroundColor yellow Write-Host $DataBAse.SqlServerFqdn `t`t -NoNewLine Write-Host $DataBAse.DatabaseName `t`t`t -ForegroundColor Green -NoNewLine if ($DataBAse.Succeed -eq "True") { Write-Host $DataBAse.Succeed -ForegroundColor Green }else { Write-Host $DataBAse.Succeed -ForegroundColor red } } }
For small check databse status
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please add for check status service on EDGE servers
and
For small check databse status
The text was updated successfully, but these errors were encountered: