https://github.com/bitbeans/redistributablechecker
Check for installed Visual C++ Redistributable Packages
https://github.com/bitbeans/redistributablechecker
redistributable-package
Last synced: 11 months ago
JSON representation
Check for installed Visual C++ Redistributable Packages
- Host: GitHub
- URL: https://github.com/bitbeans/redistributablechecker
- Owner: bitbeans
- License: mit
- Created: 2017-10-24T19:10:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-08-03T13:14:56.000Z (over 4 years ago)
- Last Synced: 2025-04-23T16:22:02.278Z (11 months ago)
- Topics: redistributable-package
- Language: C#
- Homepage:
- Size: 13.7 KB
- Stars: 23
- Watchers: 3
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# RedistributableChecker
[](https://github.com/bitbeans/RedistributableChecker/blob/master/LICENSE.md) [](https://www.nuget.org/packages/RedistributableChecker/)
### Can check for the following packages ###
- Microsoft Visual C++ Redistributable Package 2015 - 2019 (x86) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2015 - 2019 (x64) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2017 (x86) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2017 (x64) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2015 (x86) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2015 (x64) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2013 (x86) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2013 (x64) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2012 (x86) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2012 (x64) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2010 (x86) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2010 (x64) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2008 (x86) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2008 (x64) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2005 (x86) :heavy_check_mark:
- Microsoft Visual C++ Redistributable Package 2005 (x64) :heavy_check_mark:
```csharp
using RedistributableChecker;
if (RedistributablePackage.IsInstalled(RedistributablePackageVersion.VC2017x64)) {
//go on
}
```
Tested on: **Windows 10 (x64)**
Windows Registry Keys taken from: https://stackoverflow.com/a/34209692/4013391 :green_heart: