17-10-22 11:33 AM
17-10-22 11:36 AM
17-10-22 11:52 AM
18-10-22 01:50 PM
Check if you have below setting unchecked
18-04-24 08:20 AM
If all the above settings have been tried and incase the issue still persists, kill the PIDs(Process IDs) connected to that particular port number by using the below command from command prompt or you can create batch file and call the batch file from your processes.
From command prompt:
for /f "tokens=5" %a in ('netstat -aon ^| find ":31924" ^| find "LISTENING"') do taskkill /f /pid %a
From Batch file:
for /f "tokens=5" %%a in ('netstat -aon ^| find ":31924" ^| find "LISTENING"') do taskkill /f /pid %%a