I had same issue. I have no process that uses port 59100.
It helped me to open eventvwr.msc, then Windows Logs\Application. Here I use Find and entered 59100. I find out that Apple’s Bonjour Service was trying to do smth with this port.
Solution: I just disabled Bonjour Service and rebooted my PC. Most likely you can just uninstall Bonjour. Possibly, you have another service interfering port 59100.
I had the same issue again. And again app that uses this port was not listed in netstat. In my case the reason was Hyper-V (Docker use it). It reserves port range that includes port 59100. There are two solutions.
First is to disable Hyper-V (most simple, but Hyper-V and Docker wont work):
Open cmd as admin
Enter dism.exe /Online /Disable-Feature:Microsoft-Hyper-V
Reboot PC
Second is to reserve this port before Hyper-V does it (more difficult, but Hyper-V, Docker and AudioRelay can work together):
Open cmd as admin
Enter dism.exe /Online /Disable-Feature:Microsoft-Hyper-V
Reboot PC
! If AudioRelay starts after reboot, then close it
Enter netsh int ipv4 add excludedportrange protocol=tcp startport=59100 numberofports=1 as admin again
Then enable Hyper-V dism.exe /Online /Enable-Feature:Microsoft-Hyper-V /All
Reboot
Hyper-V and AudioRelay works together as expected.
! Some people need to run this command also: reg add HKLM\SYSTEM\CurrentControlSet\Services\hns\State /v EnableExcludedPortRange /d 0 /f
@Sameman Thanks for the writeup, the network protocol in the new version uses a port lower than the range of dynamic ports. It should no longer be blocked by Hyper-V for example.