Update install-basic-apps.ps1

This commit is contained in:
Markus Fleschutz 2022-08-29 11:55:06 +02:00
parent 8328c1d14f
commit 5862523aa3

View File

@ -15,10 +15,16 @@
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
"⏳ Step 1 - Loading Data/basic-apps.csv (CSV table)..."
"⏳ Step 1 - Loading table from Data/basic-apps.csv..."
$Table = Import-CSV "$PSScriptRoot/../Data/basic-apps.csv"
$NumEntries = $Table.count
"Found $NumEntries entries."
Write-Host " I will install: " -NoNewline
foreach($Row in $Table) {
[string]$AppName = $Row.AppName
Write-Host "$AppName, " -NoNewline
}
""
sleep -s 3
[int]$Step = 2
foreach($Row in $Table) {