Skip to content

Instantly share code, notes, and snippets.

@jasonhorner
Created September 19, 2024 08:15
Show Gist options
  • Save jasonhorner/8a40df4fc26b61003b158a4e234695ac to your computer and use it in GitHub Desktop.
Save jasonhorner/8a40df4fc26b61003b158a4e234695ac to your computer and use it in GitHub Desktop.
Winget Install Script
@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