1. Find the running process with <PORT>
netstat -ano | findstr :<PORT>
2. Delete the running process with <PID>
taskkill /PID <PID> /F
# Or
tasklist /FI "PID eq <PID>"
3. Find the running Named Pipe
Open the powershell with the administrator permission and execute
get-childitem \\.\pipe\ | grep "me.clic.ipc.v1"
Enjoyed this article? Support my work with a coffee ☕ on Ko-fi.