“Unable to launch the IIS Express Web server.” in Visual Studio

前端 未结 27 1542
清酒与你
清酒与你 2021-01-30 00:44

I attempted to run my web service through visual studio. I faced an issue like :

---------------------------
Microsoft Visual Studio
---------------------------
         


        
27条回答
  •  不思量自难忘°
    2021-01-30 01:05

    I tried the following already:

    • Restarted Visual Studio
    • Check all available ports that might be listening to my specific number but it always return zero results. No processes is listening in my port.
    • I also tried using this but zero results.

      netstat -aon | find ":80"

    • I also tried using but also return zero results.

      netstat -ao | findstr

    So what I did is delete this "Microsoft.VsHub.Server.HttpHostx64.exe" then my project successfully started and launch in browser. The error was fixed. I am not sure why but it works.

    Here is the screenshot:

提交回复
热议问题