added readme and cleaned up ps7 example

This commit is contained in:
2026-03-31 22:15:46 +02:00
parent 0a110a5512
commit bc2da45099
2 changed files with 163 additions and 10 deletions

View File

@@ -16,16 +16,6 @@ $urls | ForEach-Object -Parallel {
Write-Host "$($_) could not be reached"
}
}
<#
$urls | ForEach-Object {
$reachable = Test-Connection -ComputerName $_ -Quiet
if($reachable){
Write-Host "$($_) is reachable"
}else {
Write-Host "$($_) could not be reached"
}
}
#>
$end = Get-Date
$duration = $end - $start