Skip to content

Instantly share code, notes, and snippets.

@PatOShea
Last active June 24, 2020 16:16
Show Gist options
  • Save PatOShea/c08f899b4adc036f688f8e31043a6878 to your computer and use it in GitHub Desktop.
Save PatOShea/c08f899b4adc036f688f8e31043a6878 to your computer and use it in GitHub Desktop.
Personal-Chocolatey
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
# Stop getting prompted
choco feature enable -n=allowGlobalConfirmation
# Show file extenstions and such
choco install win-no-annoy -y
# basics
choco install microsoft-windows-terminal -y
choco install visualstudiocode -y
choco install terminals -y
# choco install logexpert -y
# VS Code Extensions
code --install-extension code marcostazi.VS-code-vagrantfile
# Add more here.... or pipe them above
# software for config mgmt
choco install packer -y
choco install terraform -y
choco install vagrant -y
# choco install virtualbox -y
# choco install vboxheadlesstray -y
# choco install psievm -y
# software for cloud
choco install azcopy -y
choco install microsoftazurestorageexplorer -y
# Dev software
choco install dotnetcore-sdk -y
choco install github -y
choco install docker-desktop -y
choco install vscode-docker -y
# choco install docker -y
# Sideloading is enabled by default - Only need to enable linux subsystem
# Script to enable side loading
# reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /f /v "AllowAllTrustedApps" /d "1"
# Script to enable developer mode
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1"
# Script to enable Linux Subsystem
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux -NoRestart
# WebEx Teams
# https://www.webex.com/downloads.html (WebexTeams.msi)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment