Skip to content

Instantly share code, notes, and snippets.

View thisismyrobot's full-sized avatar
🤖

Robert Wallhead thisismyrobot

🤖
View GitHub Profile
param([String]$url="http://localhost", [String]$successOuput="SUCCESS", [Int32]$totalWaitMinutes=10)
$elapsed = [System.Diagnostics.Stopwatch]::StartNew()
$statusUrl = ($url + "/appstatus")
Write-Warning ("Attempt to start Sitefinity up: " + $statusUrl)
$retryCount = 0;
try
{