Update install-basic-apps.ps1

This commit is contained in:
Markus Fleschutz 2022-09-10 15:13:10 +02:00
parent 2d130e5f71
commit 18a1b55580
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,7 @@ AppName,Category,AppID
"Google Chrome", "desktop browser", Google.Chrome
"Dopamine", "audio player", Digimezzo.Dopamine.2
"Dropbox", "file sync", Dropbox.Dropbox
"Git", "code management", Git.Git
"Git for Windows", "code management", Git.Git
"IrfanView", "image viewer", 9PJZ3BTL5PV6
"inSSIDer", "Wifi tool", MetaGeek.inSSIDer
"LibreOffice", "office suite", TheDocumentFoundation.LibreOffice

1 AppName Category AppID
5 Google Chrome desktop browser Google.Chrome
6 Dopamine audio player Digimezzo.Dopamine.2
7 Dropbox file sync Dropbox.Dropbox
8 Git Git for Windows code management Git.Git
9 IrfanView image viewer 9PJZ3BTL5PV6
10 inSSIDer Wifi tool MetaGeek.inSSIDer
11 LibreOffice office suite TheDocumentFoundation.LibreOffice

View File

@ -18,12 +18,13 @@ try {
"⏳ Step 1 - Loading table from Data/basic-apps.csv..."
$Table = Import-CSV "$PSScriptRoot/../Data/basic-apps.csv"
$NumEntries = $Table.count
Write-Host " I will install: " -NoNewline
Write-Host " About to install $NumEntries apps: " -NoNewline
foreach($Row in $Table) {
[string]$AppName = $Row.AppName
Write-Host "$AppName, " -NoNewline
}
""
"Press <Control> <C> to abort, otherwise the installation will start..."
sleep -s 3
[int]$Step = 2