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

后端 未结 20 2205
悲哀的现实
悲哀的现实 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:30

    I had the same problem, and I have fixed it. You should check the name of the folder in which you installed visual studio. If its name has been changed, windows can not find the components to execute. For this reason, windows will show an error message box to you

    0 讨论(0)
  • 2021-02-12 11:30

    To fix this issue

    1. Start regedit.exe
    2. Go to HKEY_CURRENT_USER\Software\Microsoft\SQL Server Management Studio
    3. Delete 11.0_Config
    4. Restart ssms.exe

    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/b6d2b85d-c6e1-464a-85e0-e0625e7fb305/microsoft-visual-studio-shell-isolated-cannot-find-one-or-more-components?forum=sqlexpress

    0 讨论(0)
  • 2021-02-12 11:30

    restart you laptop it will be fixed.it work for me

    0 讨论(0)
  • 2021-02-12 11:35

    This is probably specific to people working with Isolated Shell applications based on VS 2015, but I found that two registry values were sometimes getting set with incorrect values, leading to this error on startup. Simply delete them from the registry and start again:

    HKCU\Software\Company\TheApp\1.0_Config\Initialization\PkgDefSearchPath
    HKCU\Software\Company\TheApp\1.0_Config\Initialization\RelativeRootFolderPath
    

    For Visual Studio 2015, replace Company\TheApp\1.0_Config with Microsoft\VisualStudio\14.0_Config.

    0 讨论(0)
  • 2021-02-12 11:36

    For Visual Studio 2015 I had to delete these keys in regedit.exe:

    HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0
    HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0_Config
    
    0 讨论(0)
  • 2021-02-12 11:38

    I had solved the same issue on VS2012 as following steps:

    • Use regedit.exe

    • Go to HKEY_CURRENT_USER\Software\Microsoft\VisualStudio

    • Delete "11.0_Config" & "11.0 node" notice: 11.0 as your VS version

    • Restart VS2012 VS env will be constructed initially.

    Hope this help. BR

    0 讨论(0)
提交回复
热议问题