[Update - V56] Visual C++ Runtime Installer by burfadel

Discussion in 'Application Software' started by burfadel, Apr 27, 2015.

  1. AeonX

    AeonX MDL Addicted

    May 24, 2013
    793
    719
    30
    #141 AeonX, Oct 16, 2017
    Last edited: Oct 26, 2017
    I use a batch to install all.

    Creating the folder structure:
    Code:
    md "2005 SP1" "2008 SP1" "2010" "2012 Update 4" "2013" "2017"
    Then copy the setups to the corresponding folders.

    InstallAll.cmd (Tested on 7/8.1/10)
    Code:
    @echo off
    %windir%\system32\reg.exe query "HKU\S-1-5-19" >nul 2>&1 || (
    echo "Run as Administrator"
    echo.
    echo Press any key to exit...
    pause >nul
    exit
    )
    cd /d "%~dp0"
    "2005 SP1\vcredist_x86.exe" /q:a /c:"VCREDI~2.EXE /q:a /c:""msiexec /i vcredist.msi /qb"" "
    "2008 SP1\vcredist_x86.exe" /qb
    "2010\vcredist_x86.exe" /passive /norestart
    "2012 Update 4\vcredist_x86.exe" /passive /norestart
    "2013\vcredist_x86.exe" /install /passive /norestart
    "2017\vc_redist.x86.exe" /install /passive /norestart
    
    if "%PROCESSOR_ARCHITECTURE%"=="AMD64" (
        "2005 SP1\vcredist_x64.exe" /q:a /c:"VCREDI~1.EXE /q:a /c:""msiexec /i vcredist.msi /qb"" "
        "2008 SP1\vcredist_x64.exe" /qb
        "2010\vcredist_x64.exe" /passive /norestart
        "2012 Update 4\vcredist_x64.exe" /passive /norestart
        "2013\vcredist_x64.exe" /install /passive /norestart
        "2017\vc_redist.x64.exe" /install /passive /norestart
    )
    exit
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. broneo

    broneo MDL Novice

    Jan 5, 2009
    11
    11
    0
    nice update, just found it
     
  3. wilenty

    wilenty MDL Senior Member

    Jan 15, 2014
    270
    494
    10
    #143 wilenty, Oct 16, 2017
    Last edited: Oct 16, 2017
    and how to uninstall old versions of vc dll's?
    that's the point - automatically uninstalling old versions, then install new

    By the way - people sometimes have installed many versions, almost all from the date of starting the computer
    good luck

    P.S.
    Once you create such standalone installers, to do not do it manually and spend half a day passing through the computers, looking for the lost in time and space of installed programs, that count so much on computer that the mouse simply does not want to move on the screen. ;):);)
     
  4. Flipp3r

    Flipp3r MDL Expert

    Feb 11, 2009
    1,964
    907
    60
    I think most of us here would only run this on a new OS install...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. AeonX

    AeonX MDL Addicted

    May 24, 2013
    793
    719
    30
    Exactly, I only use in clean installations so I did not think about that point.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. wilenty

    wilenty MDL Senior Member

    Jan 15, 2014
    270
    494
    10
    Hello gentlemen,
    Sorry for the late message, but not everyone on MDL are expert, check my post: #127 and other post quoted, or need help like:
    and
    I try to help these people because I was able to do it for myself. Nothing less, nothing more ...
    If someone does not like people like me who want to help others, just say so and I will create a new topic with my modification.
    Thank You ALL.
     
  7. AeonX

    AeonX MDL Addicted

    May 24, 2013
    793
    719
    30
    I use the batch script because in this way I only depend on myself and FOR MY NEEDS is enough and maybe it is for other people.
    And I also do not like the more entries in Programs and Features compared to the original setups.

    But as I said I had not thought of cases where it is necessary to uninstall old versions simply because I have not yet gone through it.

    But having alternatives is always good :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. wilenty

    wilenty MDL Senior Member

    Jan 15, 2014
    270
    494
    10
  9. armond

    armond MDL Addicted

    Jun 16, 2008
    734
    235
    30
  10. Loggan08

    Loggan08 MDL Novice

    Oct 22, 2017
    10
    2
    0
  11. armond

    armond MDL Addicted

    Jun 16, 2008
    734
    235
    30
  12. Loggan08

    Loggan08 MDL Novice

    Oct 22, 2017
    10
    2
    0
    @armond

    Thank you, now it's a part of my project.
     
  13. Loggan08

    Loggan08 MDL Novice

    Oct 22, 2017
    10
    2
    0
    #154 Loggan08, Oct 24, 2017
    Last edited: Oct 24, 2017
    @abbodi1406
    What's the difference between the api-ms-win-core files that come from Windows and those that come with Visual Redist, the one that comes with RS3 Windows 10 has a higher file-version.
     
  14. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,195
    84,746
    340
    Those have not changed since 2015, still the same 10586.15

    and they are ment for XP
    Vista and later gets them with Universal CRT update
     
  15. armond

    armond MDL Addicted

    Jun 16, 2008
    734
    235
    30
    Thanks, abbodi1406, may I ask do you also have the direct download links for the latest available version of all the previous runtimes? I mean the 2005, 2008, 2010, 2012, and 2013. Of course searching/finding is not a hard thing to do, but just thought you may have them handy.
    Thanks a lot.
     
  16. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,195
    84,746
    340
    @wilenty
    none of those are latest :glare:

    i would post the latest, but that will spoil the porpose of repack AIO :angel_not:
     
  17. AeonX

    AeonX MDL Addicted

    May 24, 2013
    793
    719
    30
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. wilenty

    wilenty MDL Senior Member

    Jan 15, 2014
    270
    494
    10