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

前端 未结 27 1544
清酒与你
清酒与你 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:00

    After updating Windows 10 and/or Visual Studio 16+ it might happen due to an internal bug that IISExpress fails to register any development website because it no longer accepts localhost connections.

    To fix the issue, you just have to register again the binding. To do so, run from an administrative shell the following command:

    netsh http add iplisten ipaddress=:: 
    

提交回复
热议问题