Microsoft Visual C++ 2015 Redistributable Setup Fails [0x80070652] - c++

Installed Microsoft visual c++ 2015 redistributable exe before completion of the complete download in windows 7 pc. hence installation did not happen properly due to corrupt source. now i tried to uninstall and install again with the new exe the following error comes:
Microsoft Visual C++ 2015 Redistributable Setup Fails [0x80070652] - another installation is already in progress. complete that installation before proceeding to install.

Related

Mysql fail to install for visual studio

As my title says it all. I had a problem with installing Mysql for Visual studio.
As this messages pops up all the time i open the installer.
At first I was installing the full developer package from the Mysql installer and it had fails to install
for Visual studio, so i downloaded the solo installer for that part and it still fails.
Notes: I have Visual studio 2019 community edition, and I am downloading MySQL for Visual Studio 1.2.9
Error message

Failed Install of SSDT for Visual Studio 2017

I am trying to install SSDT for VS 2017 (15.5.1), and I get this error:
"The requested metafile operation is not support (0x800707D3)".
The Microsoft page states that this was fixed in the current release but apparently that isn't true. From Microsoft's change log: Fix an issue where setup fails with the following error message:
"The requested metafile operation is not support (0x800707D3)".
I have Visual 2017 installed and working and all updates to it have been installed
I am running Windows 7 Enterprise (company machine out of my control)
Has anyone figured out a work around?
https://learn.microsoft.com/en-us/sql/ssdt/changelog-for-sql-server-data-tools-ssdt
The method I successfully used after encountering the failure message cited above was to uninstall the Visual Studio 2015 shell using add / remove programs (Win 10 Pro); rebooting, and then reinstalling SSDT for Visual Studio 2017 (Community Ed).
I am not sure how the Visual Studio 2015 Shell got installed: I previously removed all prior versions of SQL Server, and Visual Studio from the machine. I did build out the machine again by first installing SQL Server 2017 Dev, Visual Studio 2017 Comm Ed.
Same issue, Windows 10 Ent. Ended up installing SSDT for VS2015.

MAMP unable to start servers (mysql,apache)

I've been trying to start mysql and apache servers locally on my machine for a school homework with the help of MAMP3.2.1 but everytime I open MAMP, i get these errors:
From what i gathered from the net, this error appears when I'm installing 32bit software on a 64bit machine. Another report pointed on the error being caused by not having miscrosoft's visual c++ redistributable 2015 installed. I did that, but the error didn't go away. MAMP's only version for windows (I'm having 8.1) is 3.2.1 so I can't swap versions. Really any help would be much appreciated
Edit: I can't even intall the redistr packages right:
The problem is that the Universal CRT which is part of the Visual C++ Redistributable for Visual Studio 2015 failed to install or is missing.
Download the Visual C++ Redistributable:
For Windows 64-bit
Visual C++ Redistributable for Visual Studio 2015 (64-bit)
For Windows 32-bit
Visual C++ Redistributable for Visual Studio 2015 (32-bit)
Run the vc_redist.x64.exe (64-bit) or vc_redist.x86.exe (32-bit) to install it and it should work fine

Cannot Install Visual Studio 2015 Community on Windows 7

Every time I try to install visual studio community version I run into an issue with missing setup packages. The installer particularly tells me that I am missing vcredist_x86.exe.
However, I have installed the visual c++ redistributable Packages for Visual Studio 2013 as well as the ones for visual studio 2015. I don't get why this message keeps coming up.
I can continue installation if I select "skip", but the message comes back not much later.
Try running the installer with administrator rights (right click on installer exe and select 'Run as administrator').

Application not running on a PC with VS 2008 not installed

I have been working on a project using OpenCV and have made a face detection project.
I would like to know why does an executable created using Visual Studio 2008 not run on another pc and give the following error:
"This application has failed to start because the application configuration is incorrect"
Perhaps you need the Visual C++ Runtime package installed.
Available for download .... here
You need to install Microsoft Visual C++ 2008 Redistributable Package on the machines you are deploying your application first - http://www.microsoft.com/download/en/details.aspx?id=29
The Microsoft Visual C++ 2008 Redistributable Package (x86) installs
runtime components of Visual C++ Libraries required to run
applications developed with Visual C++ on a computer that does not
have Visual C++ 2008 installed.
Another thing to note is you will have to take the binary from Release build (not Debug.) The Debug build wouldn't run on the deployment machine even if the VC++ Runtime is installed.