Skip to content

Instantly share code, notes, and snippets.

@denalena
Last active December 22, 2021 22:45
Show Gist options
  • Save denalena/79a85b718f3a1cd45e0d53e541232c1b to your computer and use it in GitHub Desktop.
Save denalena/79a85b718f3a1cd45e0d53e541232c1b to your computer and use it in GitHub Desktop.
[coco] A small powershell script for backing up a list of installed chocolatey packages #windows
param (
[string]$command = "",
[string]$file = "coco.txt"
)
function listInstalledPrograms() {
choco list --local --id-only --limit-output
}
function dumpInstalledPrograms() {
listInstalledPrograms | Out-File -FilePath $file
Write-Host "dumped program list to $file"
}
switch ($command) {
install {
if (Test-Path $file) {
choco upgrade -y (Get-Content $file)
}
}
uninstall {
if (Test-Path $file) {
choco uninstall -y (Get-Content $file)
}
}
list {
listInstalledPrograms
}
dump {
dumpInstalledPrograms
}
update {
choco upgrade -y all
dumpInstalledPrograms
}
default {
Write-Host "usage: install|uninstall|dump [file]"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment