| Информация о файле | Описание |
|---|---|
| Размер файла: | 6.9 MB |
| Дата и время изменения файла: | 2019:10:03 13:08:59+00:00 |
| Тип файла: | Win32 EXE |
| Тип MIME: | application/octet-stream |
| Тип компьютера: | Intel 386 or later, and compatibles |
| Метка времени: | 2014:04:29 18:27:40+00:00 |
| Тип PE: | PE32 |
| Версия компоновщика: | 10.0 |
| Размер кода: | 232448 |
| Размер инициализированных данных: | 142336 |
| Размер неинициализированных данных: | 0 |
| Точка входа: | 0x27e1e |
| Версия ОС: | 5.1 |
| Версия образа: | 0.0 |
| Версия подсистемы: | 5.1 |
| Подсистема: | Windows GUI |
| Номер версии файла: | 12.0.30501.0 |
| Номер версии продукта: | 12.0.30501.0 |
| Маска флагов файлов: | 0x003f |
| Флаги файлов: | (none) |
| Файловая ОС: | Win32 |
| Тип объектного файла: | Executable application |
| Подтип файла: | 0 |
| Код языка: | English (U.S.) |
| Набор символов: | Windows, Latin1 |
| Наименование компании: | Microsoft Corporation |
| Описание файла: | Microsoft Visual C++ 2013 Redistributable (x64) — 12.0.30501 |
| Версия файла: | 12.0.30501.0 |
| Внутреннее имя: | setup |
| Авторское право: | Copyright (c) Microsoft Corporation. All rights reserved. |
| Название продукта: | Microsoft Visual C++ 2013 Redistributable (x64) — 12.0.30501 |
| Версия продукта: | 12.0.30501.0 |
✻ Фрагменты данных файлов предоставлены участником Exiftool (Phil Harvey) и распространяются под лицензией Perl Artistic.
- Remove From My Forums
-
Question
-
Dear All,
I am resolving a case related with C++ Redistributable Packages compatibility.
One of our app. crashes on Windows 7 and throws an error of MFC80.dll.
DLL Path:
C:windowsWinSxSx86_microsoft.vc80.mfc_1fc8b3b9a1e18e3b_8.0.50727.6195_none_cbf5e994470a1a8fMFC80.DLL
What I already know is that, on the specific machine, there are too many redist packages installed :
Microsoft Visual C++ 2013 Redistributable (x86) (12.0.21005.1)
Microsoft Visual C++ 2013 Redistributable (x64) (12.0.21005.1)
Microsoft Visual C++ 2010 x86 Redistributable (10.0.40219)
Microsoft Visual C++ 2010 x64 Redistributable (10.0.40219)
Microsoft Visual C++ 2008 Redistributable — x86 (9.0.30729.6161)
Microsoft Visual C++ 2008 Redistributable — x86 (9.0.30729.4148)
Microsoft Visual C++ 2008 Redistributable — x64 (9.0.30729.6161)
Microsoft Visual C++ 2008 Redistributable — x64 (9.0.30729.4148)
Microsoft Visual C++ 2005 Redistributable (x64) (8.0.61000)
Microsoft Visual C++ 2005 Redistributable (x64) (8.0.50727.42) — Actually it’s 2005 SP1 ALT Sec Update, 8.0.50727.6195 isn’t shown in Program list.
Microsoft Visual C++ 2005 Redistributable (8.0.59193)
Microsoft Visual C++ 2005 Redistributable (8.0.61001)Our app. works fine without these installations. I suspect this is compatibility problem and I am trying to re-create this issue in virtual environment. I already installed 2005,2008,2010 redist packages and I failed to download Microsoft Visual
C++ 2013 Redistributable (x86) 12.0.21005 from Microsoft Official Site.— So I would like to know if this version 12.0.21005 is still under support?
— If the answer is Yes, then how can I download this older installation pack?
Thanks a lot,
Jiaqi
Answers
-
Pavel,
Many years ago, I was the original author of this KB article:
https://support.microsoft.com/en-us/kb/2977003
This was definitely deliberate progress, because it was becoming increasingly difficult for people to find the latest redistributable package to download. There is never any need for downloading older versions of the redistributable for any given VC++
version.Scot
Developer Support Engineer
-
Marked as answer by
Thursday, January 7, 2016 2:43 AM
-
Marked as answer by
-
RLWA32,
Yes! Having older versions installed was only possible during that horrible experiment we did with «side by side» installation of the VCRedists in VS 2005 and 2008 (VC++ 8 and 9). In fact, there was always a policy redirection
that used the newest installed build for any version, even if you had an older version on the machine. There were original intentions of allowing it to be otherwise, but it never worked out that way in practice. You can remove all of the older
VCRedists for any given VC++ version, and just keep the latest one (but keep one x86 and one x64 if you’re on 64-bit Windows). As of VS 2010, that’s what we do anyway in the System32 and SysWow64 folders, they way it used to be in VC++
7.1 and earlier.Scot
Developer Support Engineer
-
Proposed as answer by
May Wang — MSFT
Friday, January 1, 2016 2:45 AM -
Marked as answer by
Jiaqi_Zhang
Thursday, January 7, 2016 2:42 AM
-
Proposed as answer by
-
My first and foremost recommendation is to get away from VS 2005 and move up to something more recent. The headaches you are describing go away from VS 2010 and up (2012, 2013, 2015…).
As I mentioned to RLWA32, a policy redirection will cause the newest version to be used anyway, so keeping older versions is of no use. That said, I don’t know where those versions with 59193 or 61001 came from. I know only of the ones with 50608
and 50727 in their numbers, with 50727.6195 being the latest I’m aware of. But it’s always possible that somebody goofed and released something with a bad version number at some point during those days of pain and frustration.If your program is built for 32-bit, it doesn’t matter what x64 DLLs you have installed. Likewise, if your program is 64-bit, it doesn’t matter what x86 DLLs you have installed. Also, if your app was built with VC++ 8.0 (VS 2005), it
doesn’t matter what DLLs you have installed for later VC++ versions.You may be dealing with a corrupted installation on that machine, and it may require some advanced repair efforts to get things cleaned up. Side-by-side VCRedist is just a nightmare.
Scot
Developer Support Engineer
-
Proposed as answer by
May Wang — MSFT
Monday, January 4, 2016 2:45 AM -
Marked as answer by
Jiaqi_Zhang
Thursday, January 7, 2016 2:37 AM
-
Proposed as answer by
-
Jiaqi_Zhang,
If you are getting an error message related to the MFC for VC++ 8.0 (VS 2005), then the VC++ 12 (VS 2013) redistributable is not going to help. Different programs are built with different VC++ versions, and so they each
need the redist for the version with which they were built. What is the specific problem you are trying to solve?Scot
Developer Support Engineer
-
Marked as answer by
Jiaqi_Zhang
Thursday, January 7, 2016 2:43 AM
-
Marked as answer by

- Remove From My Forums
-
Question
-
I have windows 7, sp 1, 64 bit.
I tried to download aprogramme, they told me to do this https://help.ea.com/in/article/your-vc-runtime-package-has-not-installed-correctly-error-troubleshooting/ but I couldn’t find the vscredist files needed in that programmes install folder so I tried
downloading it from your site and it didn’t work at all.
All replies
-
Hi heeeelp,
Thank you for posting in MSDN forum.
>>I tried to download aprogramme
Which program you tried to download?
What is the detail error message when you installing the Visual C++ redistributable?
Do you download it from this link:
http://www.microsoft.com/en-us/download/details.aspx?id=40784 ?If you don’t, please try to install Visual C++ redistributable from this link.
If you still couldn’t install it, I need more detail information to troubleshoot, please use
http://aka.ms/vscollect to gather the installation logs. After using it, you will find vslogs.cab from %temp% folder. Please upload the file to
https://skydrive.live.com/ and share the link here.Best Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey. -
I am having a very similar issue. I am trying to download The Sims 4. It gets to the Finalizing process, but an error stops it and says that it could not install Visual C++ 2013… I tried doing all the solutions that were offered on my google searches…
The x64 when I try to uninstall to reinstall or repair doesn’t pop up a window, but if I go into my task manager it is there… somewhere in the void of my computer… And when I try the Uninstall and Reinstall Troubleshooter 2013 x64 doesn’t even show up
but all the others do.I did the above and here is what it complies. https://1drv.ms/f/s!AkDD0B8W_tj0lnHsSlVzOVY0dH0_
-
Edited by
Sunday, February 24, 2019 3:48 AM
Added More
-
Edited by

- Remove From My Forums
-
Question
-
I have windows 7, sp 1, 64 bit.
I tried to download aprogramme, they told me to do this https://help.ea.com/in/article/your-vc-runtime-package-has-not-installed-correctly-error-troubleshooting/ but I couldn’t find the vscredist files needed in that programmes install folder so I tried
downloading it from your site and it didn’t work at all.
All replies
-
Hi heeeelp,
Thank you for posting in MSDN forum.
>>I tried to download aprogramme
Which program you tried to download?
What is the detail error message when you installing the Visual C++ redistributable?
Do you download it from this link:
http://www.microsoft.com/en-us/download/details.aspx?id=40784 ?If you don’t, please try to install Visual C++ redistributable from this link.
If you still couldn’t install it, I need more detail information to troubleshoot, please use
http://aka.ms/vscollect to gather the installation logs. After using it, you will find vslogs.cab from %temp% folder. Please upload the file to
https://skydrive.live.com/ and share the link here.Best Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey. -
I am having a very similar issue. I am trying to download The Sims 4. It gets to the Finalizing process, but an error stops it and says that it could not install Visual C++ 2013… I tried doing all the solutions that were offered on my google searches…
The x64 when I try to uninstall to reinstall or repair doesn’t pop up a window, but if I go into my task manager it is there… somewhere in the void of my computer… And when I try the Uninstall and Reinstall Troubleshooter 2013 x64 doesn’t even show up
but all the others do.I did the above and here is what it complies. https://1drv.ms/f/s!AkDD0B8W_tj0lnHsSlVzOVY0dH0_
-
Edited by
Sunday, February 24, 2019 3:48 AM
Added More
-
Edited by
Trying to install the latest version of MySQL Server — 5.7.19 — on a clean Windows server machine using the MySql installer MSI package.
On first attempt it told me it needed a prerequisite of the Visual Studio 2013 Redistributable and installed it. When trying to install the server, however, it then complains:
1: Action 10:59:21: INSTALL.
1: 1: MySQL Server 5.7 2: {F08E9C75-A42E-4962-8760-4CBD9CF35D7A}
1: Action 10:59:21: FindRelatedProducts. Searching for related
applications1: Action 10:59:21: AppSearch. Searching for installed applications
1: Action 10:59:21: LaunchConditions. Evaluating launch conditions
1: This application requires Visual Studio 2013 Redistributable.
Please install the Redistributable then run this installer again.1: 1: MySQL Server 5.7 2: {F08E9C75-A42E-4962-8760-4CBD9CF35D7A} 3: 3
1: The action ‘Install’ for product ‘MySQL Server 5.7.19’ failed.
I’ve tried rebooting the machine — problem persists.
I’ve checked in the registry to ensure Windows knows the package is installed, which it does.
I’ve tried installing the previous version of MySql and that installs fine.
So I cleaned out all the installations and re-ran the package, this time also selecting Workbench, Shell and some other useful tools. All of it installed fine — except the Server. That’s still demanding the redistributable which is already installed.
Where can I go from here?
Процесс установки на самом деле довольно прост, в основном следующий шаг и следующий шаг, вы можете сослаться на мою другую статью по установке MySQL:http://www.cnblogs.com/jying/p/6820472.html
Эта статья посвящена объяснению ошибок, сообщенных во время установкиThis application requires Visual Studio 2013 Redistributable. Please install the Redistributable then run this installer again.Решение,
Сообщение об ошибке примерно следующее:
1: Action 10:59:21: INSTALL. 1: 1: MySQL Server 5.7 2: {F08E9C75-A42E-4962-8760-4CBD9CF35D7A} 1: Action 10:59:21: FindRelatedProducts. Searching for related applications 1: Action 10:59:21: AppSearch. Searching for installed applications 1: Action 10:59:21: LaunchConditions. Evaluating launch conditions 1: This application requires Visual Studio 2013 Redistributable. Please install the Redistributable then run this installer again. 1: 1: MySQL Server 5.7 2: {F08E9C75-A42E-4962-8760-4CBD9CF35D7A} 3: 3 1: The action 'Install' for product 'MySQL Server 5.7.20' failed.

Находя ответы в Интернете, ответы на вопросы, связанные с домашним хозяйством, — это действительно небольшая сумма, куча ссылок — все иностранные сайты, и, наконец, найти решение в stackoverflow, священном месте для программистов, чтобы устранять ошибки. Адрес следующий:
https://stackoverflow.com/questions/45163588/mysql-5-7-installer-fails-to-detect-vs-2013-redistributable/45165995
Причина проблемы, как правило, в том, что путь к Visual C ++ Redistributable, автоматически устанавливаемый mysql, неверен, или даже x64 mysql распознает путь установки x86, поэтому решение состоит в том, чтобы вручную загрузить из Microsoft Visual C ++ Redistributable установку, официальный путь загрузки упрощенного китайского Microsoft:https://www.microsoft.com/zh-CN/download/details.aspx?id=40784Нажмите кнопку загрузки и загрузите как vcredist_x64, так и vcredist_86. Сначала установите vcredist_x64, а затем попробуйте переустановить mysql 5.7.20. Если ошибка все еще отображается, то установите vcredist_x86, а затем снова установите mysql, чтобы решить проблему.
Перепечатано из:http://www.cnblogs.com/jying/p/7764147.html