Skip to content

Instantly share code, notes, and snippets.

@warrenbuckley
Last active July 20, 2021 10:58
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save warrenbuckley/1fa58cb49bd729e44d533d1c1e4020ce to your computer and use it in GitHub Desktop.
Save warrenbuckley/1fa58cb49bd729e44d533d1c1e4020ce to your computer and use it in GitHub Desktop.
WinGet install Powershell script
winget install --id=Spotify.Spotify -e ;
winget install --id=Microsoft.WindowsTerminal -e ;
winget install --id=Microsoft.VisualStudioCode -e ;
winget install --id=7zip.7zip -e ;
winget install --id=Microsoft.AzureStorageExplorer -e ;
winget install --id=ScooterSoftware.BeyondCompare4 -e ;
winget install --id=Google.Chrome -e ;
winget install --id=Dropbox.Dropbox -e ;
winget install --id=Git.Git -e ;
winget install --id=Insomnia.Insomnia -e ;
winget install --id=LogMeIn.LastPass -e ;
winget install --id=LINQPad.LINQPad -e ;
winget install --id=Microsoft.GitCredentialManagerforWindows -e ;
winget install --id=OpenJS.Nodejs -e ;
winget install --id=Microsoft.PowerShell -e ;
winget install --id=Postman.Postman -e ;
winget install --id=Microsoft.PowerToys -e ;
winget install --id=NickeManarin.ScreenToGif -e ;
winget install --id=SlackTechnologies.Slack -e ;
winget install --id=Microsoft.VisualStudio.Enterprise -e ;
winget install --id=VideoLAN.VLC -e ;
winget install --id=Zoom.Zoom -e
@psydvl
Copy link

psydvl commented May 27, 2021

(
    "Spotify.Spotify",
    "Microsoft.WindowsTerminal",
    "Microsoft.VisualStudioCode",
    "7zip.7zip",
    "Microsoft.AzureStorageExplorer",
    "ScooterSoftware.BeyondCompare4",
    "Google.Chrome",
    "Dropbox.Dropbox",
    "Git.Git",
    "Insomnia.Insomnia",
    "LogMeIn.LastPass",
    "LINQPad.LINQPad",
    "Microsoft.GitCredentialManagerforWindows",
    "OpenJS.Nodejs",
    "Microsoft.PowerShell",
    "Postman.Postman",
    "Microsoft.PowerToys",
    "NickeManarin.ScreenToGif",
    "SlackTechnologies.Slack",
    "Microsoft.VisualStudio.Enterprise",
    "VideoLAN.VLC",
    "Zoom.Zoom"
) | foreach {winget install -e --id $_}

@warrenbuckley
Copy link
Author

Thanks @psydvl

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment