mirror of
https://github.com/Zaarrg/stremio-community-v5.git
synced 2026-01-11 20:10:31 +00:00
6 lines
213 B
PowerShell
6 lines
213 B
PowerShell
$packageName = 'stremio-desktop-v5'
|
|
$uninstallPath = "$env:LOCALAPPDATA\Programs\LNV\Stremio-5\Uninstall.exe"
|
|
|
|
If (Test-Path $uninstallPath) {
|
|
Start-Process -FilePath $uninstallPath -ArgumentList '/S' -Wait
|
|
}
|