1. Find the running process with <PORT>
netstat -ano | findstr :<PORT>
2. Delete the running process with <PID>
taskkill /PID <PID> /F
3. Find the running Named Pipe
Open the powershell with the administrator permission and execute
get-childitem \\.\pipe\ | grep "me.clic.ipc.v1"
If this post helped you to solve a problem or provided you with new insights, please upvote it and share your experience in the comments below. Your comments can help others who may be facing similar challenges. Thank you!