classic_command_line powershell

classic_command_line

netstat tasklist

netstat

netstat -aon | findstr ":80" | findstr "LISTENING" per trovare il processo che ascolta sulla porta 80

tasklist

tasklist /svc /FI "PID eq 4" per avere più informazione su il processo

powershell

Get-Process

Get-Process

Get-Process -Id (Get-NetTCPConnection -LocalPort 80 - State Listen).OwningProcess per trovare il processo che ascolta sulla porta 80