6

Today morning when I tied to run my project I get "The start URL specified is not valid" error". I just install the newest Azure SDK.

enter image description here

In IIS Manager I see this, I can't start, restert website.

enter image description here

Why I can't run my project, any ideas? I have no logs in Event Logs. I use VS2015 Ultimate.

Jacek
  • 11,661
  • 23
  • 69
  • 123

5 Answers5

14

It could be a short answer but I too had this problem after deleting IISExpress folder inside this path

"C:\Users\{username}\Documents"

after reading this article.

but I solved this problem by doing these steps.

1)Run Visual studio as Administrator

2)Uncheck Override application root Url

enter image description here

then run just hit launch project.

Jacek
  • 11,661
  • 23
  • 69
  • 123
TAHA SULTAN TEMURI
  • 4,031
  • 2
  • 40
  • 66
3

I was playing w/ things and I guess I accidentally cleared this setting. Different from other answers here, but the message does say 'Start url...' I set it back to 'localhost:4300' and was back plodding along.

Project Properties

greg
  • 1,673
  • 1
  • 17
  • 30
1

I Know it's very late, but for future developers who come across this, i just had the same problem and i was using IIS Express, 1st i deleted then re-added the ip with netch commands:

  • netsh http delete urlacl url=http://192.168.1.76:49603/

  • netsh http add urlacl url=http://192.168.1.76:49603/ user=everyone

  • netsh advfirewall firewall add rule name="HNclinic3" dir=in protocol=tcp localport=49603 profile=private remoteip=localsubnet action=allow

But then the error message was still showing, all i did then was go to the properties in my app (right click> properties> web) and under Project Url these is a checkBox.

  • Override application root Url

I unchecked it and everything worked fine.

Mireille
  • 21
  • 5
1

Just restart your visual studio will do. Everything will be fine after that.

jefferyleo
  • 630
  • 3
  • 17
  • 34
0

All I had to do was restart Visual Studio 2017 CE.

Chaim Eliyah
  • 2,743
  • 4
  • 24
  • 37