Last active
March 30, 2025 00:06
-
-
Save hyunbinseo/e4d43b09a933fd785a436b32f5d2ce9d to your computer and use it in GitHub Desktop.
Install apps using WinGet on Windows
This file contains 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
$packages = @( | |
'9P1XD8ZQJ7JD', # fre:ac | |
'AdGuard.AdGuard', | |
'AdrienAllard.FileConverter', | |
'astral-sh.uv', | |
'Bitwarden.Bitwarden', | |
'ClockworkMod.UniversalADBDriver', | |
'Dropbox.Dropbox', | |
'Git.Git', | |
'GitHub.cli', | |
'GitHub.GitHubDesktop', | |
'Google.Chrome', | |
'Google.GoogleDrive', | |
'Greenshot.Greenshot', | |
'Gyan.FFmpeg', | |
'ImageMagick.ImageMagick', | |
'Kakao.KakaoTalk', | |
'LocalSend.LocalSend', | |
'M2Team.NanaZip', | |
'Microsoft.PowerShell', | |
'Microsoft.PowerToys', | |
'Mozilla.Firefox', | |
'Mozilla.Thunderbird', | |
'OBSProject.OBSStudio', | |
'Schniz.fnm', | |
'SublimeHQ.SublimeMerge', | |
'tailscale.tailscale', | |
'Telegram.TelegramDesktop', | |
'VideoLAN.VLC', | |
'Yubico.Authenticator', | |
'Zoom.Zoom' | |
) | |
foreach ($package in $packages) { | |
Write-Host "Installing $package..." | |
winget install -e --id $package | |
} | |
winget install -e --id Microsoft.VisualStudioCode --override '/SILENT /mergetasks="!runcode,addcontextmenufiles,addcontextmenufolders"'; | |
winget install -e --id=Microsoft.VisualStudioCode.Insiders --override '/SILENT /mergetasks="!runcode,addcontextmenufiles,addcontextmenufolders"'; | |
git config --global core.autocrlf true | |
git config --global init.defaultBranch main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment