Skip to content

Instantly share code, notes, and snippets.

@anakaiti
Forked from ChuckMichael/vc_redistr.md
Last active September 5, 2024 15:29
Show Gist options
  • Save anakaiti/0507de972bc562f7002b8ea5410d9609 to your computer and use it in GitHub Desktop.
Save anakaiti/0507de972bc562f7002b8ea5410d9609 to your computer and use it in GitHub Desktop.
Install all Visual C++ Redistributables using only one command!

Warning

App Installer must be installed on Win10/11.

cmd/powershell

Tip

You can save it and run as batch file (.bat).

winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2005.x86"
winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2005.x64"
winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2008.x86"
winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2008.x64"
winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2010.x86"
winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2010.x64"
winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2012.x86"
winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2012.x64"
winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2013.x86"
winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2013.x64"
winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2015+.x86"
winget install --exact --locale "en-US" --id="Microsoft.VCRedist.2015+.x64"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment