Add One Calendar app

This commit is contained in:
Markus 2022-08-21 12:15:12 +02:00
parent 834cad35cb
commit 94025de1f9
2 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,7 @@ AppName,Category,AppID
"Mozilla Firefox", "desktop browser", 9NZVDKPMR9RD
"Mozilla Thunderbird", "email client", Mozilla.Thunderbird
"Notepad++", "text editor", Notepad++.Notepad++
"One Calendar", "desktop calendar", 9WZDNCRDR0SF
"Signal", "messenger", OpenWhisperSystems.Signal
"VLC", "media player", XPDM1ZW6815MQM
"Windows Terminal", "terminal application", 9N0DX20HK701

1 AppName Category AppID
11 Mozilla Firefox desktop browser 9NZVDKPMR9RD
12 Mozilla Thunderbird email client Mozilla.Thunderbird
13 Notepad++ text editor Notepad++.Notepad++
14 One Calendar desktop calendar 9WZDNCRDR0SF
15 Signal messenger OpenWhisperSystems.Signal
16 VLC media player XPDM1ZW6815MQM
17 Windows Terminal terminal application 9N0DX20HK701

View File

@ -3,6 +3,7 @@
Installs basic apps
.DESCRIPTION
This PowerShell script installs basic Windows apps (browser, e-mail client, etc).
Apps from the Microsoft Store are preferred for automatic updates.
.EXAMPLE
PS> ./install-basic-apps
.LINK
@ -27,7 +28,7 @@ try {
"⏳ Step $Step/$($NumEntries + 1) - Installing $AppName ($Category)..."
& winget install --id $AppID --accept-package-agreements --accept-source-agreements
if ($lastExitCode -ne "0") { throw "'winget install' failed" }
if ($lastExitCode -ne "0") { throw "'winget install' for $AppName failed" }
$Step++
}
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds