Forum Discussion
phantom2000
Mar 22, 2022Copper Contributor
Get result under a column
Hello, I have a command that checks connectivity to a port. Test-NetConnection -ComputerName google.com -Port 443 | Select-Object TcpTestSucceeded The result for this comes as follows. ...
- Mar 22, 2022$x=(Test-NetConnection -ComputerName google.com -Port 443 | Select-Object TcpTestSucceeded).TcpTestSucceeded
farismalaeb
Mar 22, 2022Steel Contributor
$x=(Test-NetConnection -ComputerName google.com -Port 443 | Select-Object TcpTestSucceeded).TcpTestSucceeded
- phantom2000Mar 22, 2022Copper ContributorThank you.