PowerShell/Scripts/uninstall-vlc.ps1

30 lines
746 B
PowerShell
Raw Normal View History

2022-12-29 21:46:35 +01:00
<#
2022-07-15 17:12:01 +02:00
.SYNOPSIS
Uninstalls VLC
.DESCRIPTION
This PowerShell script uninstalls the VLC media player from the local computer.
.EXAMPLE
PS> ./uninstall-vlc.ps1
Uninstalling VLC media player...
Removal of VLC media player took 7 sec
2022-07-15 17:12:01 +02:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
"⏳ Uninstalling VLC media player..."
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2022-07-15 17:12:01 +02:00
& winget uninstall --id XPDM1ZW6815MQM
2022-07-15 17:12:01 +02:00
if ($lastExitCode -ne "0") { throw "Can't uninstall VLC media player, is it installed?" }
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ Removal of VLC media player took $Elapsed sec"
2022-07-15 17:12:01 +02:00
exit 0 # success
} catch {
"Sorry: $($Error[0])"
exit 1
}