Powershell Tip #85: Run an infinite / endless / continuous ping By powershellgu | December 3, 2015 2 Comments 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)"}
Pingback: Powershell Tip #86: List Security Filtering of a GPO | Powershell Guru
Pingback: Powershell Tip #84: Retrieve a random name from a file - Powershell Guru