Last active
August 30, 2022 14:40
-
-
Save XavierGeerinck/fa88b3d7632d360566da39688d016370 to your computer and use it in GitHub Desktop.
WinGet Programs on Clean Install
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
# 1. Install Winget | |
# https://www.microsoft.com/en-us/p/app-installer/9nblggh4nns1 | |
# More info: https://github.com/microsoft/winget-cli | |
# Search Packages: winget search | |
# 2. Install PC | |
# Microsoft tools | |
winget install Microsoft.Edge | |
winget install Microsoft.WindowsTerminal | |
winget install Microsoft.PowerToys | |
winget install Microsoft.VisualStudioCode | |
winget install Microsoft.Office | |
winget install Microsoft.PowerShell | |
winget install 7zip.7zip | |
winget install Adobe.AdobeAcrobatReaderDC | |
winget install VideoLAN.VLC | |
# Run interactively! | |
# select: C++ tools as well! needed for node-gyp | |
winget install -i Microsoft.VisualStudio.BuildTools | |
npm config set msbuild_path "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\MSBuild.exe" | |
# Coding Software (Python / NodeJS stack) | |
winget install Git.Git | |
winget install OpenJS.NodeJS | |
winget install Python.Python | |
winget install Notepad++.Notepad++ | |
winget install Postman.Postman | |
winget install Microsoft.AzureDataStudio | |
winget install Microsoft.OpenJDK.11 | |
winget install angryziber.AngryIPScanner | |
winget install Microsoft.dotnet | |
# Gaming | |
winget install Blizzard.BattleNet | |
winget install GOG.Galaxy | |
winget install Valve.Steam | |
winget install EpicGames.EpicGamesLauncher --force | |
winget install Razer.Synapse | |
# Social | |
winget install Discord.Discord | |
winget install Signal.Signal | |
winget install Telegram.TelegramDesktop | |
# Misc | |
winget install Spotify.Spotify --force | |
winget install ShareX.ShareX | |
winget install elgato.streamdeck | |
winget install Notion.Notion | |
winget install SoftDeluxe.FreeDownloadManager | |
winget install Famatech.AdvancedPortScanner | |
winget install PuTTY.PuTTY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment