Posted On April 2, 2019

PowerShell: Function to Wait for Service to Be Back Online (After Server Reboots)

kimconnect 2 comments
blog.KimConnect.com >> Codes >> PowerShell: Function to Wait for Service to Be Back Online (After Server Reboots)
Function waitForService{
$testSucceeded=(Test-NetConnection $server -port $port).TcpTestSucceeded
$null=Set-PSBreakpoint -Variable rightNow -Mode Read -Action { $global:testSucceeded = (Test-NetConnection $server -port $port).TcpTestSucceeded }

if (!($testSucceeded)){
    Write-Host -NoNewline "Waiting for $server to come back online."
    $dots=50
    $timeout=300 #5 minutes
    while (!($testSucceeded)) {
        $dots-=1;
        $timeout-=2;
        if($timeout -lt 0){"$timeout seconds have passed. Skip this waiting.";continue;}
        if ($dots -eq 0){Write-Host ".";$dots=92;}
        else {Write-Host -NoNewline "."}
        Start-Sleep -s 2
    }
    write-host "$server is now reachable via port $port" -ForegroundColor Green
}else{
    write-host "$server is reachable via port $port" -ForegroundColor Green
    }
}

waitForService

2 thoughts on “PowerShell: Function to Wait for Service to Be Back Online (After Server Reboots)”

  • Hi,

    any idea how to resolve ?

    .Method invocation failed because [System.Boolean] does not contain a method named ‘Refresh’.
    At line:15 char:5
    + $testSucceeded.Refresh()
    + ~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidOperation: (:) [], RuntimeException
    + FullyQualifiedErrorId : MethodNotFound

    Tanks 🙂

    • I’ve forgotten to add a line. Retry and let me know if that works. Thanks,

      $null=Set-PSBreakpoint -Variable rightNow -Mode Read -Action { $global:testSucceeded = (Test-NetConnection $server -port $port).TcpTestSucceeded }

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Get Active Directory Domain Controller Replication Status

$domaincontroller=(Get-ADForest |Select-Object -ExpandProperty RootDomain |Get-ADDomain |Select-Object -Property PDCEmulator).PDCEmulator; ## Define Objects ## $report = New-Object…

PowerShell: Test URL for Reachability

function testUrl($url){ try{ $HTTP_Request = [System.Net.WebRequest]::Create($url) $HTTP_Response = $HTTP_Request.GetResponse() [int]$HTTP_Status = [int]$HTTP_Response.StatusCode If ($HTTP_Status -eq…

PowerShell: Raise Domain Forest Functional Level

# Raise Forest Functional Level$forest=Get-ADForest# 2012R2 LevelSet-ADForestMode -Identity $forest -Server $forest.SchemaMaster -ForestMode Windows2012R2Forest -Force# 2016…