tis-vcredist2015
14.0.24215.1-2
The Visual C++ Redistributable Packages install run-time components that are required to run C++ applications built using Visual Studio.
290 downloads

Description
- package : tis-vcredist2015
- version : 14.0.24215.1-2
- architecture : all
- categories : Development,System and network
- maintainer : WAPT Team,Jimmy PELÉ
- description : The Visual C++ Redistributable Packages install run-time components that are required to run C++ applications built using Visual Studio.
- locale :
- target_os : windows
- min_os_version : 6.1
- max_os_version :
- min_wapt_version : 1.5
- sources : https://store.wapt.fr/store/tis-vcredist2015
- installed_size : 36093952
- impacted_process :
- description_fr : Les packages Redistribuable Visual C++ installent les composants d'exécution nécessaires pour exécuter les applications C++ créées à l'aide de Visual Studio.
- description_pl :
- description_de :
- description_es :
- description_pt :
- description_it :
- description_nl :
- description_ru :
- editor : Microsoft
- licence : Freeware
- signature_date : 2020-02-27T21:42:27.426228
- Homepage : https://www.microsoft.com/
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey = []
# Declaring specific app values (TO CHANGE)
bin_name_x86 = 'vcredist_x86.exe'
bin_name_x64 = 'vcredist_x64.exe'
silent_args = '/Q'
uninstall_key_x86 = '{e2803110-78b3-4664-a479-3611a381656a}'
uninstall_key_x64 = '{d992c12e-cab2-426f-bde3-fb8c53950b0d}'
url_dl_x86 = 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'
url_dl_x64 = 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'
short_soft_name = 'Microsoft Visual C++ 2015 Redistributable'
def install():
print('installing %s' % control.asrequirement())
# Specific app values
package_version = control.version.split('-',1)[0]
# Uninstalling older versions
check_installed = installed_softwares(short_soft_name)
#print(check_installed)
for uninstall in check_installed:
if uninstall['version'] < package_version:
print('Removing %s' % uninstall['name'])
cmd = uninstall_cmd(uninstall['key'])
run(cmd)
# Getting the used storage on programfiles before installation (place it on the top)
get_disk_free_space_before = get_disk_free_space(programfiles)
# Installing the package
install_exe_if_needed(bin_name_x86
,silentflags=silent_args
,key=uninstall_key_x86
,min_version=package_version)
if iswin64():
install_exe_if_needed(bin_name_x64
,silentflags=silent_args
,key=uninstall_key_x64
,min_version=package_version)
# Return used storage of the program. (place it on the bottom)
get_disk_free_space_after = get_disk_free_space(programfiles)
free_space_after_diff = get_disk_free_space_before - get_disk_free_space_after
print("Storage used: " + str(free_space_after_diff))
def update_package():
print('Update/Download package content from upstream binary sources')
# Getting proxy informations from WAPT settings
proxy = {}
if isfile(makepath(application_data(),'waptconsole','waptconsole.ini')):
proxywapt = inifile_readstring(makepath(user_local_appdata(),'waptconsole','waptconsole.ini'),'global','http_proxy')
if proxywapt :
proxy = {'http':proxywapt,'https':proxywapt}
# Downloading binaries
if not isfile(bin_name_x86):
print('Downloading ' + bin_name_x86)
wget(url_dl_x86,bin_name_x86,proxies=proxy)
if not isfile(bin_name_x64):
print('Downloading ' + bin_name_x64)
wget(url_dl_x64,bin_name_x64,proxies=proxy)
# Change version of the package
version = get_file_properties(bin_name_x86)['ProductVersion']
print('Writing ' + version + '-0 in WAPT\\control')
control = PackageEntry().load_control_from_wapt ('.')
control.version = '%s-0' % version
control.save_control_to_wapt('.')
[["WAPT/icon.png","419b7a9e84a74bfbeb8ee47bf1fbcc86392ece95e86698d58d4f2ac16c3e0274"],["WAPT/certificate.crt","a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf"],["WAPT/wapt.psproj","510d3af6fcf8f2eae5db684bb830ea9845576e76872b9b10854efaea6e4a4cd8"],["vcredist_x86.exe","12a69af8623d70026690ba14139bf3793cc76c865759cad301b207c1793063ed"],["WAPT/control","0f88ef408ba9b706e7a32a8419befc3e522c5f18d8639f053e26e66c617e71da"],["vcredist_x64.exe","da66717784c192f1004e856bbcf7b3e13b7bf3ea45932c48e4c9b9a50ca80965"],["setup.py","e416fd0d2b81e521ea889220bca8cd7b440e5bf080d45b4fb945e060cf4a431e"],["README.md","571b1b044e903ea2641321f83968ac725aaa2c0746eed0f35b2719c4e818bec3"],["Jenkinsfile","d3442f953e2bc03096f7f43c54aa30f16c06f844e42861efa28181377944d00d"]]