mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-21 09:28:21 +02:00
Update install-basic-apps.ps1
This commit is contained in:
parent
2d130e5f71
commit
18a1b55580
@ -5,7 +5,7 @@ AppName,Category,AppID
|
|||||||
"Google Chrome", "desktop browser", Google.Chrome
|
"Google Chrome", "desktop browser", Google.Chrome
|
||||||
"Dopamine", "audio player", Digimezzo.Dopamine.2
|
"Dopamine", "audio player", Digimezzo.Dopamine.2
|
||||||
"Dropbox", "file sync", Dropbox.Dropbox
|
"Dropbox", "file sync", Dropbox.Dropbox
|
||||||
"Git", "code management", Git.Git
|
"Git for Windows", "code management", Git.Git
|
||||||
"IrfanView", "image viewer", 9PJZ3BTL5PV6
|
"IrfanView", "image viewer", 9PJZ3BTL5PV6
|
||||||
"inSSIDer", "Wifi tool", MetaGeek.inSSIDer
|
"inSSIDer", "Wifi tool", MetaGeek.inSSIDer
|
||||||
"LibreOffice", "office suite", TheDocumentFoundation.LibreOffice
|
"LibreOffice", "office suite", TheDocumentFoundation.LibreOffice
|
||||||
|
|
@ -18,12 +18,13 @@ try {
|
|||||||
"⏳ Step 1 - Loading table from Data/basic-apps.csv..."
|
"⏳ Step 1 - Loading table from Data/basic-apps.csv..."
|
||||||
$Table = Import-CSV "$PSScriptRoot/../Data/basic-apps.csv"
|
$Table = Import-CSV "$PSScriptRoot/../Data/basic-apps.csv"
|
||||||
$NumEntries = $Table.count
|
$NumEntries = $Table.count
|
||||||
Write-Host " I will install: " -NoNewline
|
Write-Host " About to install $NumEntries apps: " -NoNewline
|
||||||
foreach($Row in $Table) {
|
foreach($Row in $Table) {
|
||||||
[string]$AppName = $Row.AppName
|
[string]$AppName = $Row.AppName
|
||||||
Write-Host "$AppName, " -NoNewline
|
Write-Host "$AppName, " -NoNewline
|
||||||
}
|
}
|
||||||
""
|
""
|
||||||
|
"Press <Control> <C> to abort, otherwise the installation will start..."
|
||||||
sleep -s 3
|
sleep -s 3
|
||||||
|
|
||||||
[int]$Step = 2
|
[int]$Step = 2
|
||||||
|
Loading…
Reference in New Issue
Block a user