Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$DC = "TekTipsDC01"
$Stoploop = $false
$testUser = $null
$alias = "UsernameToSearchFor"
do {
try {
write-host "Waiting for ID"
$testUser = Get-ADUser "$alias" -Server "$DC"
$Stoploop = $true
}
catch {
if ($testUser -ne $null){
Write-Host "ID Found - Code to Execute Goes In This Section"
$Stoploop = $true
}
else {
Write-Host "Could not find, retrying in 5 seconds..."
Start-Sleep -Seconds 5
}
}
}
While ($Stoploop -eq $false)