I am not able to run any application from Visual Studio 2013, It throws Process with an id of "xxxx" is not running message. I have used telerik also. I tried all solutions from internet (except reinstall visual studio), nothing helped me, Please help, Thank you.
Ps: WebForm base.
I had this problem and solutions found online did not help. Here is what worked for me:
When the problem occurs...
In my case, an error popped because the chosen port was already used. This means, you have to select a new port. For some reason, the chosen port is sometimes taken and sometimes free.
To select a new port, right click on your projet then
Properties
. In theWeb
tab, change the port in theProject URL
filed.You should avoid using a port from 0 to 1024. Select a funky number like: 12321 or 23432 which is high enough an easy to remember.
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. You'll have to close down visual studio, delete the folder, reopen the solution and Visual Studio will create a new "correct" instance of the folder.
Only unloading and reloading the startup project fixed this, I needed no other steps actually.