Skip to content

Instantly share code, notes, and snippets.

View luckyscooby's full-sized avatar
🎯
Focusing

Michael Leocádio luckyscooby

🎯
Focusing
View GitHub Profile
@ChuckMichael
ChuckMichael / vcredistr.md
Last active July 18, 2024 06:47
Visual C++ Redistributable Packages
@ChuckMichael
ChuckMichael / vc_redistr.md
Last active July 14, 2024 12:12
Install all Visual C++ Redistributables using only one command!

Warning

App Installer must be installed on Win10/11.

CMD

Tip

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

winget install --id=Microsoft.VCRedist.2005.x86 -e  && winget install --id=Microsoft.VCRedist.2005.x64 -e  && winget install --id=Microsoft.VCRedist.2008.x86 -e  && winget install --id=Microsoft.VCRedist.2008.x64 -e  && winget install --id=Microsoft.VCRedist.2010.x86 -e  && winget install --id=Microsoft.VCRedist.2010.x64 -e  && winget install --id=Microsoft.VCRedist.2012.x86 -e  && winget install --id=Microsoft.VCRedist.2012.x64 -e  && winget install --id=Microsoft.VCRedist.2013.x86 -e  && winget install --id=Microsoft.VCRedist.2013.x64 -e  && winget install --id=Microsoft.VCRedist.2015+.x86 -e  && winget install --id=Microsoft.VCRedist.2015+.x64 -e