The log says: Could not bind socket to [::]:59539 (0xc0000043)
From the error messages provided, it seems like there is a conflict on port 59539, which WireSock is trying to bind to. The error message “The process cannot access the file because it is being used by another process” often means that the port is being used by another application or service on the system.
I would recommend trying to identify the application using the port. Use the netstat
command to identify which application is currently using the port 59539. Open the Command Prompt and type netstat -aon | findstr 59539
. The last column of the output will give you the process ID (PID) of the application using the port. You can then use the Task Manager to find the application associated with this PID.