Update install-basic-apps.ps1 and basic-apps.csv

This commit is contained in:
Markus Fleschutz 2024-01-25 13:23:21 +01:00
parent 652fd1fd01
commit d3abac4b07
2 changed files with 28 additions and 26 deletions

View File

@ -1,5 +1,5 @@
APPLICATION, CATEGORY, APPID, APPLICATION, CATEGORY, APPID,
"7-Zip for Windows", "file utility", "XPDNKVCX4QD2DC", "7-Zip", "file utility", "7zip.7zip",
"Aquile Reader", "ebook reader", "9P08T4JLTQNK", "Aquile Reader", "ebook reader", "9P08T4JLTQNK",
"CrystalDiskInfo", "HDD/SSD utility", "XP8K4RGX25G3GM", "CrystalDiskInfo", "HDD/SSD utility", "XP8K4RGX25G3GM",
"Dopamine", "audio player", "Digimezzo.Dopamine.2", "Dopamine", "audio player", "Digimezzo.Dopamine.2",

1 APPLICATION CATEGORY APPID
2 7-Zip for Windows 7-Zip file utility XPDNKVCX4QD2DC 7zip.7zip
3 Aquile Reader ebook reader 9P08T4JLTQNK
4 CrystalDiskInfo HDD/SSD utility XP8K4RGX25G3GM
5 Dopamine audio player Digimezzo.Dopamine.2

View File

@ -6,8 +6,10 @@
NOTE: Apps from Microsoft Store are preferred (due to security and automatic updates). NOTE: Apps from Microsoft Store are preferred (due to security and automatic updates).
.EXAMPLE .EXAMPLE
PS> ./install-basic-apps.ps1 PS> ./install-basic-apps.ps1
(1/37) Loading Data/basic-apps.csv... 35 apps (1) Loading data/basic-apps.csv... 37 apps listed
(2/37) These apps will be installed or upgraded: 7-Zip · Aquile Reader ... (2) Applications to install/upgrade: 7-Zip · Aquile Reader ...
...
Installed 37 basic apps (0 skipped) in 387 sec.
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
@ -15,37 +17,37 @@
#> #>
try { try {
$StopWatch = [system.diagnostics.stopwatch]::startNew() $stopWatch = [system.diagnostics.stopwatch]::startNew()
Write-Host "⏳ (1/37) Loading Data/basic-apps.csv... " -noNewline Write-Host "⏳ (1) Loading data/basic-apps.csv... " -noNewline
$Table = Import-CSV "$PSScriptRoot/../data/basic-apps.csv" $table = Import-CSV "$PSScriptRoot/../data/basic-apps.csv"
$NumEntries = $Table.count $numEntries = $table.count
"$NumEntries apps" "$numEntries apps listed"
Write-Host "⏳ (2/37) These apps will be installed or upgraded: " -noNewline Write-Host "⏳ (2) Applications to install/upgrade: " -noNewline
foreach($Row in $Table) { foreach($row in $table) {
[string]$AppName = $Row.APPLICATION [string]$appName = $row.APPLICATION
Write-Host "$AppName · " -noNewline Write-Host "$appName · " -noNewline
} }
"" ""
"" ""
"Installation will start in 15 seconds... (otherwise press <Control> <C> to abort)" "The installation will start in 15 seconds or press <Control> <C> to abort..."
Start-Sleep -seconds 15 Start-Sleep -seconds 15
[int]$Step = 3 [int]$step = 3
[int]$Skipped = 0 [int]$numSkipped = 0
foreach($Row in $Table) { foreach($row in $table) {
[string]$AppName = $Row.APPLICATION [string]$appName = $row.APPLICATION
[string]$Category = $Row.CATEGORY [string]$category = $row.CATEGORY
[string]$AppID = $Row.APPID [string]$appID = $row.APPID
Write-Host " " Write-Host " "
Write-Host "⏳ ($Step/$($NumEntries + 2)) Installing $Category '$AppName'..." Write-Host "⏳ ($step/$($numEntries + 2)) Installing $category '$appName'..."
& winget install --id $AppID --accept-package-agreements --accept-source-agreements & winget install --id $appID --accept-package-agreements --accept-source-agreements
if ($lastExitCode -ne "0") { $Skipped++ } if ($lastExitCode -ne "0") { $numSkipped++ }
$Step++ $step++
} }
[int]$Installed = ($NumEntries - $Skipped) [int]$numInstalled = ($numEntries - $numSkipped)
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds [int]$elapsed = $stopWatch.Elapsed.TotalSeconds
"✔️ Installation of $Installed basic apps ($Skipped skipped) took $Elapsed sec" "✔️ Installed $numInstalled basic apps ($numSkipped skipped) in $elapsed sec."
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"