I am trying to run any program on visual studio 2013 update 3 and I get the following alert box :
Process with an ID #### is not running .
// every time there is different ID number showing
and in the error windows I get this error msg:
The program '[3148] iisexpress.exe' has exited with code -1073741816 (0xc0000008) 'An invalid handle was specified'.
Sometimes it runs and in the browser i get the following message : The webpage is not available.
I have looked around and try almost everything and I stil cannot fix the problem.
Please help anyone
I found the solution here:
https://www.codeproject.com/Tips/1029540/Solved-Process-With-An-Id-Of-Is-Not-Running
Edited the project file and deleted the lines:
First Error
For the first error:
The following steps worked for me:
Second Error
The second error:
What caused this error:
I deleted IIS Express Development Certificate while playing with the SSL.
The following steps worked for me:
Hope this helps!
If you are using a 64-bit machine
Then the problem maybe due to Visual Studio use of 32-bit IIS-Express.
Solution: In Visual Studio, go to Tools menu > Options > Projects and Solutions > Web Projects > Enable the option "Use the 64 bit version of IIS Express" and click ok
This can happen for various reasons, helpfully - if you run
IISExpress.exe
(\Program Files (x86)\IISExpress\iisexpress.exe
for 32-bit,\Program Files\IISExpress\iisexpress.exe
for 64-bit) in the command line, you'll get some more details. In my case:Nice and easy to fix, that one my was my fault though!
What I did to make this go away:
Open
C:\Users\gr_mext1\Documents\IISExpress\config\applicationhost.config
and remove all<site>
entries in<sites>
do not remove<siteDefaults>
!In your project, go to Properties, Web and click "Create Virtual Directory".
Close and re-open visual studio, load your project and run
Fixed!
If you're using git as source control, you should also make sure that any user specific files are ignored.
If they're already tracked, then use git -r rm --cached
This resolved the error for me.