“Unable to launch the IIS Express Web server” error

前端 未结 25 2774
梦谈多话
梦谈多话 2020-11-30 02:48

I receive this error when trying to launch IIS Express from Visual Studio with a project that\'s configured to listen to an address other than localhost. Visual Studio free

25条回答
  •  一个人的身影
    2020-11-30 03:21

    open command prompt as administrator then execute this command :

    netsh http show urlacl
    

    you will see the url you have added before now you should execute this command :

    netsh http delete urlacl url=http://+:36899/ user=Everyone
    

    please check the url from list when using :

    (netsh http show urlacl)

提交回复
热议问题