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
go to Properties of the start up project, increment port number of the Project Url is probably the quickest way to get around this problem which I didn't read anyone mentioned yet.
And you don't need to restart VS as it can be a pain sometimes if you needed a few other instances needed to be running.
None of the listed solutions worked for me. Problem was some sort of conflicting state in local applicationhost.config file. Fix is easy, just delete one in your solution. For VS2015 it should be located in
<path_to_your_solution>\Solution\.vs\config\
. When you launch Debug, VS will recreate that file based on settings in your project file.I tried the first error and that didn't help me. However What did work for me was to delete the hidden ".vs" folder which is at the solution root.
I had a similar problem with Chrome.
It appears that VS can't attach to the Chrome process for some reason.
Solution: 1. Close Chrome 2. With Chrome closed, start the web project and allow VS to open Chrome.
Hope that helps.
What fixed it for me was running the project from a different file in my solution. Specifically, 2 of my files are named web.config, so I just ran from the other one.
For me, none of the other solutions worked. The things I tried:
After checking if the problem was persistent over different projects, it turned out that the problem only occurred in one specific projects. I figured that I had to delete all the user specific files in the solutions folder (such as bin, obj, *.suo, ...) I just deleted the whole solution folder and reverted the files in git.