Skip to content

Instantly share code, notes, and snippets.

@BipulRaman
Last active August 17, 2021 06:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BipulRaman/454e8388559be5122a55791c50d60517 to your computer and use it in GitHub Desktop.
Save BipulRaman/454e8388559be5122a55791c50d60517 to your computer and use it in GitHub Desktop.
<#
.SYNOPSIS
To install software in bulk
.DESCRIPTION
To install software in bulk through Chocolaty
.NOTES
Created by: Bipul Raman @BipulRaman
Modified by: Bipul Raman @BipulRaman
Modified: 30/06/2020 10:00 AM IST
.EXAMPLE
Run the script in Admin mode.
#>
#-------------------[INITIALISATIONS]-------------------
# Set TLS1.2 Protocol
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
#-------------------[EXECUTION]-------------------
Write-Host "Setting up started: Software Installations by Chocolatey"
Write-Host "[$(Get-Date -Format g)] - Installing chocolatey ..."
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Write-Host "[$(Get-Date -Format g)] - Installing chocolatey completed"
Write-Host "[$(Get-Date -Format g)] - Installing chocolatey packages ..."
choco install firefox
choco install notepadplusplus
choco install visualstudiocode
choco install azure-data-studio
choco install googlechrome
choco install vlc
choco install microsoftazurestorageexplorer
choco install github-desktop
choco install obs-studio
Write-Host "[$(Get-Date -Format g)] - Installing chocolatey packages completed"
Write-Host "Setting up completed: Software Installations by Chocolatey"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment