Skip to content

A simple script using the chocolatey package manager to install/update software I use on my development workstation

Notifications You must be signed in to change notification settings

galactic-plane/chocolatey-script

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Chocolatey Image


Chocolatey Script

Windows Package Manager

A simple script using the chocolatey package manager to install/update software I use on my development workstation

Directions

1.  Run the setup script once
2.  Review "baseline.bat" as a guide for creating your own package manager "BAT" file
3.  Find your own packages

Initial Setup: https://chocolatey.org/install

Find: https://chocolatey.org/packages

Setup Script

Run powershell as an administrator and run the following once:

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'))

Usage Example

"baseline.cmd" installs or updates:

:: Developer Updates
choco upgrade python -y
choco upgrade yarn -y
choco upgrade git -y
choco upgrade gh -y
choco upgrade microsoft-edge -y
choco upgrade googlechrome -y
choco upgrade firefox -y
choco upgrade vscode -y
choco upgrade azure-cli -y
choco upgrade microsoftazurestorageexplorer -y
choco upgrade azure-functions-core-tools -y
choco upgrade azurepowershell -y
choco upgrade azure-data-studio -y
choco upgrade docker-desktop -y
choco upgrade filezilla -y
choco upgrade 7zip -y
choco upgrade notepadplusplus -y
choco upgrade audacity -y
:: Meetings
choco upgrade skype -y
choco upgrade microsoft-teams -y
choco upgrade webex-meetings -y
choco upgrade zoom -y
:: Video
choco upgrade obs-studio -y
choco upgrade vlc -y
:: Utilities
choco upgrade rufus -y
choco upgrade ccleaner -y
choco upgrade cpu-z -y
choco upgrade steam -y
choco upgrade grammarly -y
choco upgrade choco-cleaner -y
:: Chocolatey
choco upgrade chocolatey -y

Run in bash:

$ cd chocolatey-script
$ chmod +x baseline.cmd
$ ./baseline.cmd

After Baseline Run Once in PowerShell (Installs VSCode Extentions):

$ cd chocolatey-script\VSCode
$ .\vscodeExtentions.ps1

More Information

https://chocolatey.org/

About

A simple script using the chocolatey package manager to install/update software I use on my development workstation

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published