포트 조회
Get-NetTCPConnection -LocalPort [포트번호]
포트를 사용중인 프로세스 정보 조회
Get-Process -Id (Get-NetTCPConnection -LocalPort 3000).OwningProcess
PID를 통해 프로세스 종료하기
Stop-Process -Id [PID] -Force
LogSomething
Get-NetTCPConnection -LocalPort [포트번호]
Get-Process -Id (Get-NetTCPConnection -LocalPort 3000).OwningProcess
Stop-Process -Id [PID] -Force