Usually, when pinging a server IP address we have this in return:
Pinging with 32 bytes of data:
Reply from : bytes=32 time=151 TTL
For some reason, I couldn't get the FIND pipe to work in a powershell 5.1 shell. Feeling like this was all overly complicated, I thought if only I could grep the Reply line? I then found the powershell equivalent! I just used select-string on the first line matching 'Reply' which gave me the one line output I was looking for. So this worked very simply and easy for me.
ping -n 1 | select-string -pattern 'Reply'