-
-
Save CurlyBytes/ae02fbd3c9b1b9be51b89a879d733bf9 to your computer and use it in GitHub Desktop.
Revisions
-
denalena revised this gist
Aug 29, 2019 . 1 changed file with 11 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,6 +7,11 @@ 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) { @@ -25,8 +30,12 @@ switch ($command) { } dump { dumpInstalledPrograms } update { choco upgrade -y all dumpInstalledPrograms } default { -
denalena revised this gist
Jul 25, 2019 . No changes.There are no files selected for viewing
-
denalena revised this gist
Jul 25, 2019 . No changes.There are no files selected for viewing
-
denalena created this gist
Jun 16, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ param ( [string]$command = "", [string]$file = "coco.txt" ) function listInstalledPrograms() { choco list --local --id-only --limit-output } 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 { listInstalledPrograms | Out-File -FilePath $file Write-Host "dumped program list to $file" } default { Write-Host "usage: install|uninstall|dump [file]" } }