Created
September 19, 2024 08:15
-
-
Save jasonhorner/8a40df4fc26b61003b158a4e234695ac to your computer and use it in GitHub Desktop.
Winget Install Script
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 off | |
echo Installing applications using winget... | |
set apps=( | |
"Microsoft.AzureCLI" | |
"Microsoft.AzureDeveloperCLI" | |
"Git.Git" | |
"GitHub.cli" | |
"Microsoft.Powershell" | |
"Microsoft.WindowsTerminal" | |
"Microsoft.SQLServerManagementStudio" | |
"Microsoft.VisualStudioCode" | |
"Microsoft.AzureStorageExplorer" | |
"Microsoft.AzureDataStudio" | |
"Microsoft.PowerBIDesktop" | |
) | |
for %%a in %apps% do ( | |
echo Installing %%a... | |
winget install %%a --silent --accept-package-agreements --accept-source-agreements | |
) | |
echo All applications have been installed. | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment