Check ping status of remote computer


#Name: Richa Sharma
#Date: 19-Dec-2018
# Check ping status of remote computer (IP Address is not dynamic here)


$output=Test-Connection 8.8.8.8 -Quiet
if($output -eq $true)
{
    Write-Host "Alive"
}
 else
{
    Write-Host "Not pinging"
}

Comments

Popular posts from this blog