Page 1 of 1

Microsoft Visual C++ 2013 Redistributable Package Request

Published: July 3, 2017 - 12:20 PM
by neckatskin
Hello,

Currently, you do not offer the Microsoft Visual C++ 2013 Redistributable package (x86 and x64).
Is there a specific reason for this? You do offer versions 2008, 2010, 2012, and 2015, though.
Will this package be available soon?

Thank you in advance for your answers.

Regards,


NeckAtSkin

Re: Microsoft Visual C++ 2013 Redistributable Package Request

Published: July 3, 2017 - 1:30 PM
by agauvrit
Hello NeckAtSkin,

If the package is not available in our repository, it is for the simple reason that we have never had the need to package this version of Visual C++ Redistributable for our customers.

If you wish to create this package, simply take the 2015 version and adapt it for 2013 by replacing the installation binaries:

Code: Select all

wapt-get duplicate tis-vc2015redist tis-vc2013redist
Source code of the setup.py file

Code: Select all

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    print('installing Visual C++ 2013 redistributable')
    print('For x86..')
    run('vc_redist.x86.exe /S',accept_returncodes=[0,1603,3010,1638])
    if iswin64():
        print('For x64..')
        run('vc_redist.x64.exe /S',accept_returncodes=[0,1603,3010,1638])

Re: Microsoft Visual C++ 2013 Redistributable Package Request

Published: July 3, 2017 - 2:17 PM
by neckatskin
Awesome, thank you! ;)