- Sep 11, 2017
- 10
- 8
Thank you for your reply.
Running netstat -ano in the command prompt doesn't turn up any results either.
I should mention that I'm running windows 10 home.
I've also tried searching through Mcafee looking to see if anything is using port 3000 and haven't found anything. I recently tried shutting off Mcafee and running the game and that hasn't produced any different results.
Again, any help would be appreciated.
ps. I typically give the game 5-10 minutes to load when I've tried the various things to get it to work. Should I be giving it longer?
I've run the PowerShell process and I think it is saying nothing is occupying port 3000 although I'm out of my depth here.Check if port 3000 is already bound to another process (the game runs its game server on that port). If it's not available the game server fails quietly in the background.
PowerShell
Get-Process -Id (Get-NetTCPConnection -LocalPort 3000).OwningProcess
Command Shell (cmd)
netstat -ano | findStr "3000"
Cheers,
Running netstat -ano in the command prompt doesn't turn up any results either.
I should mention that I'm running windows 10 home.
I've also tried searching through Mcafee looking to see if anything is using port 3000 and haven't found anything. I recently tried shutting off Mcafee and running the game and that hasn't produced any different results.
Again, any help would be appreciated.
ps. I typically give the game 5-10 minutes to load when I've tried the various things to get it to work. Should I be giving it longer?