Powershell Tip #85: Run an infinite / endless / continuous ping By powershellgu | December 3, 2015 0 Comment Tip: You can run an infinite / endless / continuous ping (the equivalent of ping -t ): PowerShell while ($true) { "$(Get-Date);$(Test-Connection -ComputerName 64.233.166.138 -Quiet)" } 1234 while ($true){ "$(Get-Date);$(Test-Connection -ComputerName 64.233.166.138 -Quiet)"}