Just curious, why does this happen? If I run:
netstat -an | find "443"
into a command prompt, "443" connections are displayed ok. If I run the same command in a PowerShell console or ISE, I get the error "FIND: Parameter format not correct". Is netstat output not being piped properly to find in PS?
Note: If I run netstat -an | findstr "443"
or netstat -an | select-string "443"
in PS those work as expected.