Skip to content

Instantly share code, notes, and snippets.

@paschott
Last active May 6, 2024 18:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paschott/84a1a296968843800dbfda986e0f38ab to your computer and use it in GitHub Desktop.
Save paschott/84a1a296968843800dbfda986e0f38ab to your computer and use it in GitHub Desktop.
Use Chocolatey to install some common apsp for MS SQL work and related
#Note - will want to install "Chocolatey" first in order to use this file to install software.
# https://chocolatey.org/docs/installation
# Open a command prompt (cmd) and run the following:
# @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
# ..
# or open a PowerShell Admin prompt and run:
# Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# After Chocolatey is installed, open a PS prompt in Administrator mode,
# adjust comments to suit preferences, and run this file.
choco install choco-cleaner -y
choco install zoom -y --ignorechecksum #The installer package had an outdated checksum
choco install zoomit -y
# probably a good idea to have a version of PS Core - either the release or the preview
choco install powershell-core -y
choco install sql-server-management-studio -y
choco install sqlsentryplanexplorer -y
choco install sqlsearch -y
#choco install anaconda3 -y
choco install vscode -y
#choco install firefox -y
#choco install microsoft-edge-insider-dev -y
#choco install chrome -y
choco install notepadplusplus.install -y
choco install 7zip.install -y
choco install git.install -y
#choco install gitkraken -y
choco install sysinternals -y
choco install sharex -y
# choco install ssdt17 -y
# choco install visualstudio2019community -y
# choco install ssis-vs2019 -y
choco install visualstudio2022community -y
# will have to manually download and install SSIS for VS 2022
#choco install azure-cli -y
#choco install pdfxchangeeditor -y
#choco install docker-desktop -y
#choco install bitwarden -y
#choco install powertoys -y
#choco install vmware-workstation-player -y
#choco install mremoteng -y
#choco install amazon-workspaces -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment