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
If using VS2015, close the solution, delete the following file, then re-open the solution.
<<path_to_solution_folder>>\.vs\config\applicationhost.config
note the .vs folder may be hidden
I fixed it with the following steps:
netsh http show urlacl
and see if your application http address/port is listed.netsh http delete urlacl url=[ADDRESS]
replacing [ADDRESS]
with the Reserved URL shown by the previous command. For example http://+:17560/
Delete IISExpress folder in my My Documents folder to ensure the default settings or restore the same to previous version when it was working fine.
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)
In VS 2013 I saw this error after setting up Google Docs synchronization on My Documents. Updated permissions to not be read-only and problem solved.
I had exactly the same issue. Tried everything but finally one trick worked.