Skip to content

Instantly share code, notes, and snippets.

@liamfoneill
Created October 25, 2021 11:05
Show Gist options
  • Save liamfoneill/f058aed903382b96e6dff53bfb514560 to your computer and use it in GitHub Desktop.
Save liamfoneill/f058aed903382b96e6dff53bfb514560 to your computer and use it in GitHub Desktop.
This is a file I use to bootstrap a new Windows installation with all of the applications and tools that I use. Ideally I would get everything from Winget but there are times when I need to get the apps from chocolately or Windows Store.
winget install code52.Carnac -s winget
winget install Github.GithubDesktop -s winget
winget install Postman.Postman -s winget
winget install Github.cli -s winget
winget install Microsoft.Powertoys -s winget
winget install Microsoft.AzureCLI -s winget
winget install Microsoft.VisualStudioCode -s winget
winget install Microsoft.VisualStudio.2022.Enterprise -s winget
winget install Microsoft.Bicep -s winget
winget install Microsoft.Teams -s winget
winget install OpenJS.NodeJS -s winget
winget install Microsoft.dotnet -s winget
winget install Microsoft.Powershell.Preview -s winget
winget install Adobe.AdobeAcrobatReaderDC -s winget
winget install Microsoft.AzureStorageExplorer -s winget
winget install Microsoft.AzureDataStudio -s winget
winget install Microsoft.AzureCosmosEmulator -s winget
winget install Microsoft.AzureFunctionsCoreTools -s winget
winget install Discord.Discord -s winget
winget install Docker.DockerDesktop -s winget
winget install Amazon.Kindle -s winget
winget install Microsoft.WindowsAdminCenter -s winget
winget install Techsmith.Snagit -s winget
winget install Techsmith.Camtasia -s winget
winget install JanDeDobbeleer.OhMyPosh -s winget
winget install Git.Git -s winget
winget install Bitwarden.Bitwarden -s winget
winget install Python.Python.3 -s winget
winget install Golang.Go -s winget
//Store Apps //
//affinity designer
//affinity photo
//davinci resolve
//Sysinternals Suite
//Xbox
//Telegram
//WhatsApp
//Instagram
//Microsoft To-Do
//Microsoft Whiteboard
//Netflix
//Amazon Prime Video
//8Zip Pro
//Samsung Smartthings
//Clipchamp
//Modern Flyouts
//PowerBi Desktop
//Audible Audiobooks
//Dolby Access
//AV1 Video Extension
//Your Phone
//HEVC Video Extensions
//Sketchable
//Ring - Always Home
//VP9 Video Extensions
//Files - A File Manager for Windows
//Desktop Specific - winget
winget install Corsair.iCUE.4 --s winget
winget install Elgato.StreamDeck -s winget
winget install Elgato.ControlCenter -s winget
winget install GOG.Galaxy -s winget
winget install Valve.Steam -s winget
winget install EpicGames.EpicGamesLauncher -s winget
winget install ElectronicArts.EADesktop -s winget
winget install Ubisoft.Connect -s winget
winget install AMD.RyzenMaster -s winget
winget install REALiX.HWiNFO -s winget
winget install Nvidia.GeforceExperience -s winget
winget install Nvidia.Broadcast -s winget
// Tobii Experience
winget install 9NK75KF67S2N -s msstore
//Desktop Specific - Windows Store
//iCue GameBar Widgets
//Surface Specific - Windows Store
//Other Apps
choco install terraform
choco install azcopy
//Visio 2019 (I can't find this on either winget or choco)
//Project 2019 (I can't find this on either winget or choco)
// Powershell Modules
Set-PSRepository -Name 'PSGallery' -InstallationPolicy Trusted
Install-Module -Name PowerShellGet -AllowPrerelease -Force
Install-Module -Name PSReadLine -AllowPrerelease -Force
Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force
Install-Module -Name Pester -Force
Install-Module -Name posh-git -Scope CurrentUser -Force -AllowPrerelease
Install-Module -Name Terminal-Icons -Scope CurrentUser -Force
Install-Module -Name Microsoft.PowerShell.SecretManagement -Scope CurrentUser -Force
Install-Module -Name Microsoft.PowerShell.SecretStore -Scope CurrentUser -Force
//Rust - https://www.rust-lang.org/tools/install
//React - https://reactjs-bot.github.io/react/docs/installation.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment