Skip to content

Instantly share code, notes, and snippets.

@Freakston
Last active January 30, 2020 06:21
Show Gist options
  • Save Freakston/d1a380f5c2dc29488ad99ca740511890 to your computer and use it in GitHub Desktop.
Save Freakston/d1a380f5c2dc29488ad99ca740511890 to your computer and use it in GitHub Desktop.
A power shell script which installs the software using the chocolatey manager on windows
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
#Check to make sure chocolatey is installed
$ChocoInstalled = $false
if (Get-Command choco.exe -ErrorAction SilentlyContinue) {
$ChocoInstalled = $true
Write-Host "Choco is installed"
}else
{
Write-Host "Choco wasn't installed try again!!"
Exit-PSSession
}
#The tools I want
choco install -y winrar
choco install -y vlc
choco install -y qbittorrent
choco install -y javaruntime
choco install -y nordvpn
choco install -y microsoft-edge-insider
choco install -y heroku-cli
choco install -y git
choco install -y telegram
choco install -y -y nodejs
choco install -y conemu
choco install -y virtualbox
choco install -y vscode
Write-Host "The Script has finished"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment