Temukan dan bunuh proses pada jendela port tertentu

# find the process
netstat -ano | findstr :<PORT>

# kill the process
taskkill /PID <PID> /F
Modern Moose