Doesn't detect visual c++ 2017 redistributable
See original GitHub issueI kept getting the error DllNotFoundException: Microsoft Visual C++ 2017 Redistributable (x64)
, so I decompiled the source and saw that it was just looking under the registry key Installer\\Dependencies\\VC,redist.x64,amd64,14.16,bundle
, but it seems that mine is located in Installer\\Dependencies\\VC,redist.x64,amd64,14.20,bundle
, is it possible to make it check for both?
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
C++ redistributable 2017 won't install
Hi, I'm trying to install some third-party software. During the installation process, it states that Microsoft Visual C++ redistributables ...
Read more >How to detect if Visual C++ 2017 Redistributable is installed
It's possible to check whether 2015 or 2017 are installed by checking the registry keys described below. This is for a x64 system,...
Read more >Microsoft Visual C++ 2017 Redistributable package (x86) ...
I have been trying to install the Microsoft Visual C++ 2017 Redistributable package, as a program I need only works with it installed, ......
Read more >How to detect if Visual C++ 2017 Redistributable is installed?
Please see the following page on docs.microsoft.com for details on how to detect attempted downgrades of the Visual C++ 2015/2017 Redistributable via registry ......
Read more >Installation of Microsoft Visual C++ 2017 Redistributable Fails
Installation of Visual C++2017 may fail on a computer due to disk error (check the computer's Windows application logs to determine if a...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
add an update for new c++ package
Hi, in new version of Visual C++ Redistributable (2015-2019 bundle), the register key is:
HKEY_CLASSES_ROOT\Installer\Dependencies\VC,redist.x64,amd64,14.22,bundle
and the value of ‘DisplayName’ is:Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.22.27821
Hope it can be added toYoloWrapper.cs
.Currently I added register key and value in the
YoloWrapper.cs
to Registry, and runs well.