tis-vcredist2013
12.0.40660-5
The Visual C++ Redistributable Packages install run-time components that are required to run C++ applications built using Visual Studio.
2914 downloads
Download
See VirusTotal scan

- package : tis-vcredist2013
- name : Microsoft Visual C++ 2013 Redistributable
- version : 12.0.40660-5
- categories : Development,System and network
- maintainer : WAPT Team,Jimmy PELÉ
- editor : Microsoft
- licence : Freeware
- locale :
- target_os : windows
- impacted_process :
- architecture : all
- signature_date : 2021-08-19 09:44
- size : 13.29 Mo
- installed_size : 40.53 Mo
- homepage : https://www.microsoft.com/
package : tis-vcredist2013
version : 12.0.40660-5
architecture : all
section : base
priority : optional
name : Microsoft Visual C++ 2013 Redistributable
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.
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 1.5
sources : https://store.wapt.fr/store/tis-vcredist2013
installed_size : 40529920
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 :
audit_schedule :
editor : Microsoft
keywords : microsoft,visual,c++,c,2013,redist,vc,redistributable
licence : Freeware
homepage : https://www.microsoft.com/
package_uuid : 74392b3b-3e91-4560-9d4f-91c4fcc9e2da
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 6.1
max_os_version :
icon_sha256sum : 02cd7f6853e54444c8162fc87e5a767286ea504740dc7b45ff6b20d1e2066bb5
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : huyNyAWp8wHR9BRPJZPri6NK1jeddUbKuxl3TPu5HjoadUXwll01SrEUwBbn7Irx8RXZU3CDCjaN8jpbru1lzf5XboLtUP0jyYNecjRPAN77Vh3KSoo8MBcKVCjJYFipJRRQJysMuMsLOHprEqar0V0NypBhAOmpsOTqAbFTHp2y9+zp/uAZrSauN4OluATvdJCxRpC6jbAQtuNKSla7oEdmQC0j4Gk9ja9luzTt0Rf6+95kaM9qbjyK3pW2pWTJ5WeruzEyISagFMJa3v8mcMjkR9jykhAk+tPWTopfLPmCRQ7nMm93C8kNFuzia4YrBBK2lw/kp4xDaLYZzpQruQ==
signature_date : 2021-08-19T09:44:19.744581
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
# -*- 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 = '{61087a79-ac85-455c-934d-1fa22cc64f36}'
uninstall_key_x64 = '{ef6b00ec-13e1-4c25-9064-b2f383cb8412}'
url_dl_x86 = 'https://download.microsoft.com/download/0/5/6/056dcda9-d667-4e27-8001-8a0c6971d6b1/vcredist_x86.exe'
url_dl_x64 = 'https://download.microsoft.com/download/0/5/6/056dcda9-d667-4e27-8001-8a0c6971d6b1/vcredist_x64.exe'
short_soft_name = 'Microsoft Visual C++ 2013 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)
#get version from file
version = '.'.join(get_file_properties(bin_name_x86)['ProductVersion'].split('.')[:3])
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
result = True
control.version = '%s-%s' % (Version(version), control.version.split('-', 1)[-1])
#control.set_software_version(Version(version))
control.save_control_to_wapt()
66693f325a18a2e41d214f4ac52c3062599ffe4901aea9df413169a055a60c9a : setup.py
20e2645b7cd5873b1fa3462b99a665ac8d6e14aae83ded9d875fea35ffdd7d7e : vcredist_x64.exe
89f4e593ea5541d1c53f983923124f9fd061a1c0c967339109e375c661573c17 : vcredist_x86.exe
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
02cd7f6853e54444c8162fc87e5a767286ea504740dc7b45ff6b20d1e2066bb5 : WAPT/icon.png
4d552079a9dd1c4ec76ed28448dd549ade3d60a0a552db2c9e2c30030ec28b08 : WAPT/control