i want to check if the if have Ping to the serveri made this script:$Srvname = "server.com"$ping = new-object System.Net.NetworkInformation.Ping if ( $Ping.Send("$srvname".status -eq "Success") { echo " Success" } else { echo " Failed" }The problem is that if the server Does NOT Exist i get an expection error and the script does not continuehow can i continue if the server does not exist and it should go also to the FAILED