mirror of
https://github.com/Zaarrg/stremio-community-v5.git
synced 2026-04-21 00:52:01 +00:00
potential scoop uninstall fix
This commit is contained in:
parent
b974432cbf
commit
79eac0c5ae
1 changed files with 14 additions and 6 deletions
|
|
@ -13,9 +13,13 @@
|
|||
]
|
||||
},
|
||||
"uninstaller": {
|
||||
"file": "$env:LOCALAPPDATA\\Programs\\LNV\\Stremio-5\\Uninstall.exe",
|
||||
"args": [
|
||||
"/S"
|
||||
"script": [
|
||||
"$uninstaller = Join-Path $env:LOCALAPPDATA 'Programs\\LNV\\Stremio-5\\Uninstall.exe'",
|
||||
"if (Test-Path $uninstaller) {",
|
||||
" Start-Process $uninstaller -ArgumentList '/S','/keepdata' -Wait",
|
||||
"} else {",
|
||||
" Write-Host \"Uninstaller not found: $uninstaller\"",
|
||||
"}"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
|
@ -28,9 +32,13 @@
|
|||
]
|
||||
},
|
||||
"uninstaller": {
|
||||
"file": "$env:LOCALAPPDATA\\Programs\\LNV\\Stremio-5\\Uninstall.exe",
|
||||
"args": [
|
||||
"/S"
|
||||
"script": [
|
||||
"$uninstaller = Join-Path $env:LOCALAPPDATA 'Programs\\LNV\\Stremio-5\\Uninstall.exe'",
|
||||
"if (Test-Path $uninstaller) {",
|
||||
" Start-Process $uninstaller -ArgumentList '/S','/keepdata' -Wait",
|
||||
"} else {",
|
||||
" Write-Host \"Uninstaller not found: $uninstaller\"",
|
||||
"}"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue