PowerShell/Scripts/install-one-calendar.ps1
2022-09-04 11:32:21 +02:00

26 lines
578 B
PowerShell
Executable File

<#
.SYNOPSIS
Installs One Calendar
.DESCRIPTION
This PowerShell script installs One Calendar from the Microsoft Store.
.EXAMPLE
PS> ./install-one-calendar
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
"Installing One Calendar, please wait..."
& winget install "One Calendar" --source msstore --accept-package-agreements --accept-source-agreements
if ($lastExitCode -ne "0") { throw "'winget install' failed" }
"One Calendar installed successfully."
exit 0 # success
} catch {
"Sorry: $($Error[0])"
exit 1
}