netstat
Windows
Show active network connections
# in PowerShell
netstat -aobn | findstr ":443" | more
netstat -n -p tcp | findstr LISTENING
# see also FreeBSD's and Linux' netstat commands
# in PowerShell
netstat -aobn | findstr ":443" | more
netstat -n -p tcp | findstr LISTENING
# see also FreeBSD's and Linux' netstat commands