Last active
February 12, 2024 09:51
-
-
Save jieran233/d569779fae32aabec5cff0eae24e4594 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo :: Installing Visual C++ Redistributable | |
@rem winget install Microsoft.VCRedist.2022.arm64 | |
@rem winget install Microsoft.VCRedist.2019.arm64 | |
winget install Microsoft.VCRedist.2015+.x86 | |
winget install Microsoft.VCRedist.2015+.x64 | |
winget install Microsoft.VCRedist.2013.x86 | |
winget install Microsoft.VCRedist.2013.x64 | |
winget install Microsoft.VCRedist.2012.x86 | |
winget install Microsoft.VCRedist.2012.x64 | |
winget install Microsoft.VCRedist.2010.x86 | |
winget install Microsoft.VCRedist.2010.x64 | |
winget install Microsoft.VCRedist.2008.x86 | |
winget install Microsoft.VCRedist.2008.x64 | |
winget install Microsoft.VCRedist.2005.x86 | |
winget install Microsoft.VCRedist.2005.x64 | |
@echo :: Installing .NET Desktop Runtime | |
winget install Microsoft.DotNet.DesktopRuntime.8 | |
winget install Microsoft.DotNet.DesktopRuntime.7 | |
winget install Microsoft.DotNet.DesktopRuntime.6 | |
winget install Microsoft.DotNet.DesktopRuntime.5 | |
winget install Microsoft.DotNet.DesktopRuntime.3_1 | |
@echo :: All done | |
@pause>NUL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment