Cause
A pop-up message stating the Station Search has failed occurs when a program on the PC is already using UDP Port 8700. This is mostly caused by a service called Conmon_cmm_service.exe which belongs to a program called “Dante Control and Monitoring”. If there is another program using this port the following steps will need to be taken to identify and stop the process.
Solution
- Open Windows Powershell.
- Type netstat -ano > netstat.txt
- Type get-process > process.txt
- Navigate to C:\Users\%username% to retrieve the two files.
- Open the netstat.txt in a text editor and search for which process is using port UPD 8700 and record the PID (process ID).
- Open the process.txt file and search for the PID found in the previous step.
- In Windows Powershell type stop-process {PID}.
Where {PID} is the process ID. Ex. Stop-process 6745