Compare commits
No commits in common. "e65e6cdd3026e1f56e2f674a27d2e72c6578644a" and "02bc4cbe654c86411bf5067d3aa66094b5f874ce" have entirely different histories.
e65e6cdd30
...
02bc4cbe65
@ -1,6 +1,3 @@
|
|||||||
# chocoWell
|
# chocoWell
|
||||||
|
|
||||||
Automate Chocolatey Installation of Packages + Updates
|
Automate Chocolatey Installation of Packages + Updates
|
||||||
|
|
||||||
## Installation
|
|
||||||
First install chocolatey
|
|
||||||
|
@ -1,58 +1,9 @@
|
|||||||
$config = Get-Content 'config.ini' | ConvertFrom-StringData
|
|
||||||
$hostname = $env:COMPUTERNAME
|
$hostname = $env:COMPUTERNAME
|
||||||
$packages = @{}
|
Get-Content -Path .\packages_all.txt | ForEach-Object {
|
||||||
# list packages for all hosts
|
choco.exe install -y $_
|
||||||
Get-Content -Path "$($config.basePath)/packages_all.txt" | ForEach-Object {
|
|
||||||
$packages[$_] = $_
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Check groups of host and list packages
|
Get-Content -Path .\packages_$hostname.txt | ForEach-Object {
|
||||||
$groups = @{}
|
choco.exe install -y $_
|
||||||
Get-Content -Path "$($config.basePath)/groups_$($hostname).txt" | ForEach-Object {
|
|
||||||
$groups[$_] = $_
|
|
||||||
}
|
}
|
||||||
foreach ($group in $groups.keys) {
|
|
||||||
Get-Content -Path "$($config.basePath)/packages_$($groups[$group]).txt" | ForEach-Object {
|
|
||||||
$packages[$_] = $_
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# Packages only for this host
|
|
||||||
if (Test-Path -Path "$($config.basePath)/packages_$($hostname).txt") {
|
|
||||||
Get-Content -Path "$($config.basePath)/packages_$($hostname).txt" | ForEach-Object {
|
|
||||||
$packages[$_] = $_
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# Pakete in der uninstall.txt sollen nicht installiert werden
|
|
||||||
$uninstall = @{}
|
|
||||||
Get-Content -Path "$($config.basePath)/uninstall.txt" | ForEach-Object {
|
|
||||||
if($packages.ContainsKey($_)) {
|
|
||||||
$uninstall[$_] = $_
|
|
||||||
$packages.Remove($_)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# List installed packages
|
|
||||||
$installed = @{}
|
|
||||||
$installedStrings = @(choco list --no-progress)
|
|
||||||
for ($i = 8; $i -lt $($installedStrings.Length -1 ); $i++) {
|
|
||||||
$packagename = $installedStrings[$i].Split(" ")[0]
|
|
||||||
$installed[$packagename] = $packagename
|
|
||||||
}
|
|
||||||
|
|
||||||
# Install packages not in installed package list
|
|
||||||
foreach ($package in $packages.keys) {
|
|
||||||
if ( $installed.ContainsKey($package) -eq 1 ) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
choco install -y $package
|
|
||||||
}
|
|
||||||
|
|
||||||
#Pakete in der uninstall deinstallieren
|
|
||||||
foreach ($package in $uninstall.keys) {
|
|
||||||
choco uninstall -y $package
|
|
||||||
}
|
|
||||||
|
|
||||||
# Upgrade all installed packages
|
|
||||||
choco upgrade all -y
|
choco upgrade all -y
|
@ -1 +0,0 @@
|
|||||||
basePath=./files
|
|
@ -1 +0,0 @@
|
|||||||
pcs
|
|
@ -1,2 +1,2 @@
|
|||||||
|
greenshot
|
||||||
lightscreen
|
lightscreen
|
||||||
rustdesk
|
|
@ -1,5 +1,6 @@
|
|||||||
thunderbird
|
thunderbird
|
||||||
firefox
|
firefox
|
||||||
|
vscode
|
||||||
notepadplusplus
|
notepadplusplus
|
||||||
7zip
|
7zip
|
||||||
vlc
|
vlc
|
||||||
|
@ -1 +0,0 @@
|
|||||||
vscode
|
|
@ -1 +0,0 @@
|
|||||||
ffmpeg
|
|
Loading…
Reference in New Issue
Block a user