Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $Sites = 'yahoo.com'
- ForEach ($Site in $Sites)
- {
- [PSCustomObject][Ordered]@{
- Site = $Site
- HTTPS = (Test-NetConnection $Site -Port 443).TcpTestSucceeded
- }
- }
- test-netconnection yahoo.com -port 443
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement