PowerShell/Docs/install-basic-apps.md

84 lines
2.3 KiB
Markdown
Raw Normal View History

2022-12-04 10:40:18 +01:00
## The *install-basic-apps.ps1* Script
2022-11-17 19:46:02 +01:00
2023-05-26 12:20:18 +02:00
This PowerShell script installs basic Windows apps such as browser, e-mail client, etc.
Apps from Microsoft Store are preferred (due to security and automatic updates).
2022-11-17 19:46:02 +01:00
## Parameters
```powershell
2023-05-26 12:20:18 +02:00
/home/mf/Repos/PowerShell/Scripts/install-basic-apps.ps1 [<CommonParameters>]
2022-11-17 19:46:02 +01:00
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS> ./install-basic-apps
```
## Notes
Author: Markus Fleschutz | License: CC0
## Related Links
https://github.com/fleschutz/PowerShell
2022-11-17 20:02:26 +01:00
## Source Code
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
Installs basic apps
.DESCRIPTION
2023-05-26 12:20:18 +02:00
This PowerShell script installs basic Windows apps such as browser, e-mail client, etc.
Apps from Microsoft Store are preferred (due to security and automatic updates).
2022-11-17 20:02:26 +01:00
.EXAMPLE
PS> ./install-basic-apps
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2023-05-26 12:20:18 +02:00
Write-Host "⏳ (1/34) Loading Data/basic-apps.csv... " -noNewline
2022-11-17 20:02:26 +01:00
$Table = Import-CSV "$PSScriptRoot/../Data/basic-apps.csv"
$NumEntries = $Table.count
2023-05-26 12:20:18 +02:00
"$NumEntries apps"
"⏳ (2/34) About to install or upgrade:"
""
2022-11-17 20:02:26 +01:00
foreach($Row in $Table) {
2023-05-26 12:20:18 +02:00
[string]$AppName = $Row.APPLICATION
Write-Host " · $AppName" -NoNewline
2022-11-17 20:02:26 +01:00
}
""
2023-05-26 12:20:18 +02:00
""
"Press <Control> <C> to abort, otherwise the installation will start in 15 seconds..."
Start-Sleep -seconds 15
2022-11-17 20:02:26 +01:00
2023-05-26 12:20:18 +02:00
[int]$Step = 3
[int]$Failed = 0
2022-11-17 20:02:26 +01:00
foreach($Row in $Table) {
2023-05-26 12:20:18 +02:00
[string]$AppName = $Row.APPLICATION
[string]$Category = $Row.CATEGORY
[string]$AppID = $Row.APPID
Write-Host " "
Write-Host "⏳ ($Step/$($NumEntries + 2)) Installing $Category '$AppName'..."
2022-11-17 20:02:26 +01:00
& winget install --id $AppID --accept-package-agreements --accept-source-agreements
2023-05-26 12:20:18 +02:00
if ($lastExitCode -ne "0") { $Failed++ }
2022-11-17 20:02:26 +01:00
$Step++
}
2023-05-26 12:20:18 +02:00
[int]$Installed = ($NumEntries - $Failed)
2022-11-17 20:02:26 +01:00
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
2023-05-26 12:20:18 +02:00
"✔️ installed $Installed of $NumEntries applications in $Elapsed sec"
2022-11-17 20:02:26 +01:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2022-11-17 19:46:02 +01:00
*Generated by convert-ps2md.ps1 using the comment-based help of install-basic-apps.ps1*