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

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

  1. Reducer

    Reducer MDL Junior Member

    Jul 30, 2014
    51
    69
    0
    #21 Reducer, Jan 31, 2017
    Last edited by a moderator: Apr 20, 2017
    Installs fine from setupcomplete.cmd (W7U x64). I used it unpacked in my $oem$\$$\Setup\Scripts folder

    Code:
    (...)
    pushd _burf_vcredist
    call x64.cmd auto
    popd
    (...)
    Thank you so much.
     
  2. burfadel

    burfadel MDL EXE>MSP/CAB

    Aug 19, 2009
    2,627
    3,856
    90
    When I do version 50 I'll put a message on the front screen of the installer as I can see how confusion could easily occur.
     
  3. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,709
    990
    60
    thanks a lot. keep up the hard work man. This is the best thing made ever since sliced bread! :clap:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. itsmemario1

    itsmemario1 MDL Expert

    Sep 10, 2012
    1,047
    280
    60
    Man, you just safed my weekend ! Resident Evil 7 messed it all up...and you are my hero ! :worthy:
     
  5. retest

    retest MDL Junior Member

    Nov 2, 2010
    85
    38
    0
    Thanks. Superb installer.

    Wish you would prominently mention the latest version in the OP. Many might not notice/realise that there is a later version.

    A link to the post with the latest version in the OP would be helpful too.
     
  6. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    Pro tip: Get used to check signatures ... they mostly lead to latest versions :nsa:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. diy371

    diy371 MDL Member

    Jan 28, 2013
    157
    258
    10
    #27 diy371, Feb 8, 2017
    Last edited by a moderator: Apr 20, 2017
  8. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,709
    990
    60
    #28 Super Spartan, Feb 8, 2017
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. burfadel

    burfadel MDL EXE>MSP/CAB

    Aug 19, 2009
    2,627
    3,856
    90
    Usually there might be one RC, maybe two if there are issues, but there seems to be more RC releases than that. The reason why this is strange is because RC stands for 'Release Candidate', meaning there should only really be one before release. I guess they are either finding last minute notable bugs or are targetting a 'perfect' release. As long as it's not like the old joke about levelling off the bottom of a chair or tabl. Wherever you seek perfection in a final product you're likely to find a never-ending number of changes that could be made to achieve that perfection. Of course, that needs to be balanced against not releasing buggy crud either!
     
  10. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,575
    15,646
    270
    I never thought of this nor investigated before. So most likely it happens in all runtime installations around the world. Am I right?

    If so, does burfadel's one will clean up an existing messed up runtime installation and next install all visuals correctly?
     
  11. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,709
    990
    60
    yes sir

    :tea:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,681
    18,587
    340
  13. wilenty

    wilenty MDL Senior Member

    Jan 15, 2014
    270
    494
    10
    #34 wilenty, Feb 10, 2017
    Last edited by a moderator: Apr 20, 2017
    Windows version detect not always name: "Version" (depend of windows language)

    Installer.cmd:

    Code:
    title Quick installer for Visual C++ Runtimes V50 by Burf
    ver|"%windir%\system32\findstr.exe" /c:"Version 5."
    if %errorlevel% equ 0 (
    
    better to

    Code:
    title Quick installer for Visual C++ Runtimes V50 by Burf
    ver|"%windir%\system32\find.exe" "5." >nul
    if %errorlevel% equ 0 (
    
     
  14. burfadel

    burfadel MDL EXE>MSP/CAB

    Aug 19, 2009
    2,627
    3,856
    90
    #35 burfadel, Feb 10, 2017
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Good point! I'll change that in v51, except to " 5.x" otherwise when there is a version with 5. somewhere in the version string, using "5." without a preceding space will detect a 'false positive'.
     
  15. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,709
    990
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. DukiSync

    DukiSync MDL Junior Member

    May 12, 2010
    86
    31
    0
    I would like to know too! :eek:
     
  17. DukiSync

    DukiSync MDL Junior Member

    May 12, 2010
    86
    31
    0
    Ok, Thanks for explanation, i guess i don't need it right now...
     
  18. AndyMutz

    AndyMutz MDL Senior Member

    Jun 30, 2011
    335
    629
    10
    v50 seems to have a bug.

    your redists_x64.txt and redists_x86.txt files contain the following:
    vcredist_x64_2017\vc_runtimeMinimum_x64.msi
    vcredist_x64_2015-2017\vc_runtimeAdditional_x64.msi
    and
    vcredist_x86_2017\vc_runtimeMinimum_x86.msi
    vcredist_x86_2015-2017\vc_runtimeAdditional_x86.msi

    but there is no 2017 directory in the archive, only the 2015-2017 directory is present, and it contains all the msi files. :confused:

    -andy-