Skip to content

Instantly share code, notes, and snippets.

@sdepablos
Last active February 3, 2021 18:51
Show Gist options
  • Select an option

  • Save sdepablos/b856fbf97f79ab5f19e9d23fcc65c709 to your computer and use it in GitHub Desktop.

Select an option

Save sdepablos/b856fbf97f79ab5f19e9d23fcc65c709 to your computer and use it in GitHub Desktop.
chocolatey + basic apps
# Requires -RunAsAdministrator
# To download and execute
# iex ((new-object net.webclient).DownloadString('https://gist.githubusercontent.com/sdepablos/b856fbf97f79ab5f19e9d23fcc65c709/raw/80201c97b69b85ba36068a8a1f726210a7bfadd2/install.ps1'))
if (!(Get-Package -Name *choco*))
{
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
}
# Install Scoop
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
# Apps
choco install -y GoogleChrome --limit-output; <# pin; evergreen #> choco pin add --name GoogleChrome --limit-output
choco install -y Firefox --limit-output
<# already installed as Window app #> # choco install -y spotify --limit-output
choco install -y greenshot --limit-output
choco install -y google-drive-file-stream --limit-output
choco install -y dropbox --pre --limit-output
choco install -y slack --limit-output
choco install -y sublimetext3 --limit-output
choco install -y vscode --limit-output
choco install -y office365business --forcex86 --params="/exclude:'Access Groove Lync OneDrive OneNote Outlook Publisher'" --limit-output
Refresh-Environment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment