Skip to content

Instantly share code, notes, and snippets.

@Kairo-Dai
Last active September 2, 2020 09:35
Show Gist options
  • Save Kairo-Dai/7f76d7963d7f9f697f1a486644989405 to your computer and use it in GitHub Desktop.
Save Kairo-Dai/7f76d7963d7f9f697f1a486644989405 to your computer and use it in GitHub Desktop.
vcruntime slient install

Visual C++ 2015, 2017, 2019 Redistributable Silent Install

Note: Visual C++ 2015, 2017 and 2019 all share the same redistributable files. Microsoft Visual C++ 2015-2019 x86 Redistributable Silent Install

Download Visual C++ 2015-2019 x86 Redistributable
    https://aka.ms/vs/16/release/vc_redist.x86.exe
Download the file to a folder created at (C:\Downloads)
Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
Navigate to the C:\Downloads folder
Enter the following command: VC_redist.x86.exe /install /quiet /norestart
Press Enter

After a few moments you should see the Microsoft Visual C++ 2015-2019 Redistributable entry in Programs and Features in the Control Panel. Software Title: Microsoft Visual C++ 2015-2019 Redistributable (x86) Vendor: Microsoft Corporation Version: 14.23.27820.0 Architecture: 32-bit Installer Type: EXE Silent Install Switch: VC_redist.x86.exe /install /quiet /norestart Silent Uninstall Switch: "%ProgramData%\Package Cache{45231ab4-69fd-486a-859d-7a59fcd11013}\VC_redist.x86.exe" /uninstall /quiet /norestart Download Link: https://aka.ms/vs/16/release/vc_redist.x86.exe Microsoft Visual C++ 2015-2019 x64 Redistributable Silent Install

Download Visual C++ 2015-2019 x64 Redistributable
    https://aka.ms/vs/16/release/vc_redist.x64.exe
Download the file to a folder created at (C:\Downloads)
Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
Navigate to the C:\Downloads folder
Enter the following command: VC_redist.x64.exe /install /quiet /norestart
Press Enter

After a few moments you should see the Microsoft Visual C++ 2015-2019 Redistributable entry in Programs and Features in the Control Panel. Software Title: Microsoft Visual C++ 2015-2019 Redistributable (x64) Vendor: Microsoft Corporation Version: 14.23.27820.0 Architecture: 64-bit Installer Type: EXE Silent Install Switch: VC_redist.x64.exe /install /quiet /norestart Silent Uninstall Switch: "%ProgramData%\Package Cache{852adda4-4c78-4a38-b583-c0b360a329d6}\VC_redist.x64.exe" /uninstall /quiet /norestart Download Link: https://aka.ms/vs/16/release/vc_redist.x64.exe

The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download links provided take you directly to the vendors website. Continue reading if you are interested in additional details and configurations.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment