
With Powershell cmdlet Test-Connection you also can ping your Computers and Servers and have way more possiblities than in CMD with Ping.
To test your Server you simply execute this command:
1 |
Test-Connection -ComputerName "Server01" |
If you like to ping more than one Server, do this:
1 |
Test-Connection -ComputerName "Server01", "Server02", "Server12" |
You also can execute a timeless ping (ping -t) with this command:
1 |
while($true) {Test-Connection "Server01"} |
To take it a bit further you can for example use the Ping Counts, Delays between the Pings or the BufferSize Ping
1 |
Test-Connection -ComputerName "Server01" -Count 3 -Delay 2 -BufferSize 256 |
Test it yourself 😉
Error: Contact form not found.