diff --git a/Data/basic-apps.csv b/Data/basic-apps.csv index a887b795..20b052c3 100644 --- a/Data/basic-apps.csv +++ b/Data/basic-apps.csv @@ -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 diff --git a/Scripts/install-basic-apps.ps1 b/Scripts/install-basic-apps.ps1 index 7a8f1c79..275c7b09 100644 --- a/Scripts/install-basic-apps.ps1 +++ b/Scripts/install-basic-apps.ps1 @@ -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