2023-10-31 13:03:45 +01:00
|
|
|
|
<#
|
2022-07-15 17:12:01 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Uninstalls One Calendar
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This PowerShell script uninstalls One Calendar from the local computer.
|
|
|
|
|
.EXAMPLE
|
2023-08-24 13:45:27 +02:00
|
|
|
|
PS> ./uninstall-one-calendar.ps1
|
2022-07-15 17:12:01 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
2023-08-24 13:45:27 +02:00
|
|
|
|
"⏳ Uninstalling One Calendar ..."
|
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
2022-07-15 17:12:01 +02:00
|
|
|
|
|
|
|
|
|
& winget uninstall "One Calendar"
|
|
|
|
|
if ($lastExitCode -ne "0") { throw "Can't uninstall One Calendar, is it installed?" }
|
|
|
|
|
|
2023-08-24 13:45:27 +02:00
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
|
|
|
|
"✔️ Removal of One Calendar tool $Elapsed sec"
|
2022-07-15 17:12:01 +02:00
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
2022-09-11 11:57:15 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2022-07-15 17:12:01 +02:00
|
|
|
|
exit 1
|
2022-09-11 11:57:15 +02:00
|
|
|
|
}
|