Laptop application install script
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
#Install Chocolatey via PowerShell elevated | |
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
#Install software via PowerShell elevated | |
choco install azcopy -y | |
choco install azurestorageexplorer -y | |
choco install terraform -y | |
choco install git -y | |
choco install visualstudiocode -y | |
choco install docker-for-windows -y | |
choco install putty.install -y | |
choco install github -y | |
choco install spotify -y | |
choco install microsoft-windows-terminal -y | |
choco install slack -y | |
choco install camtasia -y | |
choco install obs-studio -y | |
choco install zoom -y | |
choco install vlc -y | |
choco install jabra-direct -y | |
choco install powertoys -y | |
choco install whatsapp -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment