TUTOS.EU

Faire un test ping en Powershell

Comment faire un ping en Powershell

$ping = new-object System.Net.NetworkInformation.Ping
$ReponsePing = $ping.Send("monPcDistant")

if ($Reply.status –eq “Success”){Write-Host “Le PC est Démarré“}
else{Write-Host “Le PC est éteint“}
Lien vers le fichier : cliquez ici Copier le code

Article(s) en relation(s)

2