Process with an id of “xxxx” is not running in Vis

2019-06-24 02:25发布

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.

9条回答
▲ chillily
2楼-- · 2019-06-24 02:26

I got the same problem and I found a great way to cope this problem as following

1.Open your project file:
*.csproj
2.Try to find the lines shown below (by finding "DevelopmentServerPort" in your project file).

 <DevelopmentServerPort>62140</DevelopmentServerPort>    
 <DevelopmentServerVPath></DevelopmentServerVPath>    
 <IISUrl>http://localhost:62116/</IISUrl>     

3.When found, delete the below tags from your project file:

4.Save and close the file. If you had your project opened, you may be prompted to reload the project.

full reference URL

查看更多
欢心
3楼-- · 2019-06-24 02:29

I got same issue and explore project directory and remove this .vs hidden folder. If you cannot see this folder, go to your folder option, show all files and then remove this folder.
Close project and then clean and build then enter F5. enter image description here

查看更多
别忘想泡老子
4楼-- · 2019-06-24 02:29

For me, using Visual Studio 2017, the tags mentioned in ali abid's answer were located in the csproj.user file.

However removing these tags did no solve my problem. For me, I had set up a virtual directory in the project properties with a low (9500) port number. I think some other process decided to use that port and was blocking my IIS Express from starting.

The solution was to edit the project properties, update Web --> Project Url to use a new port, and create a virtual directory.

查看更多
成全新的幸福
5楼-- · 2019-06-24 02:30

I had the same problem and the solution was pretty simple.

  1. close your solution.
  2. reopen the solution as an admin.
  3. rebuild it.
  4. try now.

You may need to restart your machine. Don't delete any of the csproj file settings.

查看更多
Root(大扎)
6楼-- · 2019-06-24 02:37
  1. Open Visual Studio as an administrator
  2. Right-click your project and click on Unload Project
  3. Again, right-click your project and click on Edit PROJECT_NAME.csproj
  4. Find the code below and delete it

    <DevelopmentServerPort>63366</DevelopmentServerPort>
    <DevelopmentServerVPath>/</DevelopmentServerVPath>
    <IISUrl>http://localhost:63366/</IISUrl>
    
  5. Save and close the file

  6. Right-click your project and reload it
  7. See if it's working
查看更多
Explosion°爆炸
7楼-- · 2019-06-24 02:39

The only think that worked for me was restartying Visual Studio completely.

I tried in vain to kill all suspended vstest.executionengine.exe processes and the vstest.discoiveryengine.exe using Process Explorer.

查看更多
登录 后发表回答