How to fix visual studio error “cannot find one or more components .Please re-install the application” in windows 8.1?

后端 未结 20 2159
悲哀的现实
悲哀的现实 2021-02-12 10:59

As Alex suggests find devenv.exe and run it . when search for devenv.exe then I found it\'s there . When I run this file getting error \"cannot

20条回答
  •  灰色年华
    2021-02-12 11:49

    I have come across this problem while installing VS 2015 community. For me the problem was that I had ThreatFire running, which prevented VS from loading some dll. Deinstalling ThreatFire was the only solution. You cannot just stop it, as the actual service will still continue to run.

    In general, thats how I figured out what the problem is:

    1. Download and extract Windows Process Monitor https://technet.microsoft.com/en-us/library/bb896645.aspx

    2. Run Process Monitor, include Process devenv.exe to the filters, exlcude Result SUCCESS, and click ok.

    3. Process Monitor will display a huge list of file and registry accesses. Go through the list and look for events with Result ACCESS DENIED or FILE/PATH NOT FOUND. (You can filter the list even more using right click context menu)

    4. That should give you usefull hints about what is really going wrong as the VS error message really is no help at all. You can also view the stack trace that generated the event. Thats how I found out about ThreatFire blocking dll loading.

提交回复
热议问题