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
|
2023-08-07 19:27:05 +02:00
|
|
|
|
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 {
|
2023-08-07 19:27:05 +02:00
|
|
|
|
"⏳ Uninstalling VLC media player..."
|
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
2022-07-15 17:12:01 +02:00
|
|
|
|
|
2023-08-07 19:27:05 +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?" }
|
|
|
|
|
|
2023-08-07 19:27:05 +02:00
|
|
|
|
[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
|
|
|
|
|
}
|