Error installing Visual Studio Tools for Apache Cordova CTP3.0 in Visual Studio 2013

I installed cross-device mashups for Visual Studio 2013 CTP 2.0. Then I updated VS2013 to update 4. Now I can not upgrade MDHA to 3.0, because at first it tells me to remove the 2.0 program, however the uninstaller does not work. When you try to remove 2.0 from programs and functions, it simply goes through the setup, and then does not remove the software from the Add / Remove list.

I tried following this, but it does not work:

http://support.microsoft.com/kb/3014133

+6
source share
4 answers

As a result, I found that the package GUID in the KB article is incorrect. I used this to remove 2.0, and then I can install 3.0. The package ID may vary, so you may need to search the vs2013mda_0.1.exe directory and replace the command with the location of your package.

"%ProgramData%\Package Cache\{38f367f1-1468-4f16-a4c4-29747084003b}\vs2013mda_0.1.exe" /uninstall /passive /force /burn.ignoredependencies={53d408db-eb91-43fb-9d8f-167681c19763};vsupdate_KB2829760 

Also be prepared to wait. It takes a lot of time.

+8
source

Thanks TechnoTim, the problem is that each user has their own package GUID.

To solve the problem, you should have lunch with the command from the root directory c: \, changing the package GUID with your package GUID.

In my system:

 C:\>"%ProgramData%\Package Cache\{dea88246-f74a-4171-ad6c-d9c978bf2973}\vs2013md a_0.1.exe" /uninstall /passive /force /burn.ignoredependencies={53d408db-eb91-43 fb-9d8f-167681c19763};vsupdate_KB2829760 

To find the correct package GUID, I go to C: \ ProgramData \ Package Cache \ and vs2013mda_0.1.exe and save the path in a block note, then change the path in the orignal command and dine it from the root directory c: \ and its work.

Sorry, my English. Goodbye!

+5
source

"You cannot install Visual Studio Tools for Apache Cordova CTP3.0 in Visual Studio 2013"

  • To resolve this issue, follow these steps to remove the tiered mashups for Visual Studio CTP 2.0.
  • Open a command prompt as an administrator.
  • Run the following command: "% ProgramData% \ Package Cache {dea88246-f74a-4171-ad6c-d9c978bf2973} \ vs2013mda_0.1.exe" /uninstall/passive/force/burn.ignoredependencies={53d408db-eb91-43fb -9d8f-167681196319143431919 }; vsupdate_KB2829760
  • Run vs2013mda_0.3.exe again for Visual Studio tools for Apache Cordova CTP 3.0.

The above work when installing update 4, see: http://support.microsoft.com/kb/3014133

0
source

I solved this problem differently. I tried to remove from the command line, but none of the paths exist on my computer. And I just created another user with administrator rights and installed new apache cordova tools from this user. In my situation, it works correctly under the control of the newly created user and the old user. Sorry for my scary english.

0
source

Source: https://habr.com/ru/post/978147/


All Articles