Comment pinguer un serveur en Powershell ?
C'est très simple ;-)
function CheckServerPingStatus{
param($serverIp)
$ping = new-object System.Net.NetworkInformation.Ping
$response = $ping.Send("Server_IP")
if ($Reply.status –eq “Success”)
{
write-host "OK"
}
}
CheckServerPingStatus -serviceIp "Server_IP"
Aucun commentaire:
Enregistrer un commentaire