SECURITY WARNING: Never run commands you don't understand. Always review code before execution. Use at your own risk.
Windows New Added 8 September 2026

Windows: bind failed, the port is excluded by the Hyper-V dynamic port range

Hyper-V and WSL 2 reserve blocks of TCP ports at boot, and anything inside a reserved range cannot be bound even though nothing is listening on it. Common ports such as 1433, 3000 and 50051 fall inside these blocks after a restart, so a service that worked yesterday fails today.

Quick fix

Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.

Quick fix
# Is the port excluded rather than in use?
netstat -ano | findstr :3000
netsh interface ipv4 show excludedportrange protocol=tcp

# Reserve your port so Hyper-V has to work around it
net stop winnat
netsh int ipv4 add excludedportrange protocol=tcp startport=3000 numberofports=1
net start winnat

# Or move the dynamic range away from application ports
netsh int ipv4 set dynamicport tcp start=49152 num=16384

# The reservations are rebuilt at boot, which is why it looks intermittent

How to diagnose Windows errors

Windows errors surface as numeric codes that mean little on their own, but the operating system keeps detailed logs that almost always contain the real cause. Two categories dominate developer machines: missing Visual C++ redistributables (a DLL-not-found error for a runtime the application assumed was present) and architecture or dependency mismatches (the 0xc000007b family, usually a 32-bit/64-bit mix).

If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.

  1. Read Event Viewer under Windows Logs → Application and System, filtered to the time of the failure. The numeric code in the dialog maps to a detailed entry there.
  2. For MSI failures, install with verbose logging: msiexec /i package.msi /l*v install.log, then search the log for "Return value 3". The lines just above name the failing action.
  3. For missing DLLs, install the matching Visual C++ Redistributable and confirm the architecture matches the application (x64 versus x86).
  4. Repair system corruption with sfc /scannow followed by DISM /Online /Cleanup-Image /RestoreHealth, in that order.
  5. For access-denied errors, check both NTFS permissions and whether the process needs elevation; UAC virtualisation can make writes appear to succeed while landing elsewhere.

Tools worth reaching for

  • Event Viewer
  • msiexec /l*v
  • sfc /scannow
  • DISM /RestoreHealth
  • Process Monitor (ProcMon)

Authoritative references

Primary documentation for this error, worth reading before applying any fix in production.

learn.microsoft.com

Related Windows errors

See all 10 Windows errors →

Browse other categories

Something missing or wrong?

This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.