mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2025-10-30 06:07:56 +00:00
151 lines
4.7 KiB
PowerShell
151 lines
4.7 KiB
PowerShell
# Usage: scoop uninstall <app> [options]
|
|
# Summary: Uninstall an app
|
|
# Help: e.g. scoop uninstall git
|
|
#
|
|
# Options:
|
|
# -g, --global Uninstall a globally installed app
|
|
# -p, --purge Remove all persistent data
|
|
|
|
. "$PSScriptRoot\..\lib\getopt.ps1"
|
|
. "$PSScriptRoot\..\lib\manifest.ps1" # 'Get-Manifest' 'Select-CurrentVersion' (indirectly)
|
|
. "$PSScriptRoot\..\lib\system.ps1"
|
|
. "$PSScriptRoot\..\lib\install.ps1"
|
|
. "$PSScriptRoot\..\lib\shortcuts.ps1"
|
|
. "$PSScriptRoot\..\lib\psmodules.ps1"
|
|
. "$PSScriptRoot\..\lib\versions.ps1" # 'Select-CurrentVersion'
|
|
|
|
# options
|
|
$opt, $apps, $err = getopt $args 'gp' 'global', 'purge'
|
|
|
|
if ($err) {
|
|
error "scoop uninstall: $err"
|
|
exit 1
|
|
}
|
|
|
|
$global = $opt.g -or $opt.global
|
|
$purge = $opt.p -or $opt.purge
|
|
|
|
if (!$apps) {
|
|
error '<app> missing'
|
|
my_usage
|
|
exit 1
|
|
}
|
|
|
|
if ($global -and !(is_admin)) {
|
|
error 'You need admin rights to uninstall global apps.'
|
|
exit 1
|
|
}
|
|
|
|
if ($apps -eq 'scoop') {
|
|
& "$PSScriptRoot\..\bin\uninstall.ps1" $global $purge
|
|
exit
|
|
}
|
|
|
|
$apps = Confirm-InstallationStatus $apps -Global:$global
|
|
if (!$apps) { exit 0 }
|
|
|
|
:app_loop foreach ($_ in $apps) {
|
|
($app, $global) = $_
|
|
|
|
$version = Select-CurrentVersion -AppName $app -Global:$global
|
|
$appDir = appdir $app $global
|
|
if ($version) {
|
|
Write-Host "Uninstalling '$app' ($version)."
|
|
|
|
$dir = versiondir $app $version $global
|
|
$persist_dir = persistdir $app $global
|
|
|
|
$manifest = installed_manifest $app $version $global
|
|
$install = install_info $app $version $global
|
|
$architecture = $install.architecture
|
|
|
|
Invoke-HookScript -HookType 'pre_uninstall' -Manifest $manifest -Arch $architecture
|
|
|
|
#region Workaround for #2952
|
|
if (test_running_process $app $global) {
|
|
continue
|
|
}
|
|
#endregion Workaround for #2952
|
|
|
|
try {
|
|
Test-Path $dir -ErrorAction Stop | Out-Null
|
|
} catch [UnauthorizedAccessException] {
|
|
error "Access denied: $dir. You might need to restart."
|
|
continue
|
|
}
|
|
|
|
Invoke-Installer -Path $dir -Manifest $manifest -ProcessorArchitecture $architecture -Global $global -Uninstall
|
|
rm_shims $app $manifest $global $architecture
|
|
rm_startmenu_shortcuts $manifest $global $architecture
|
|
|
|
# If a junction was used during install, that will have been used
|
|
# as the reference directory. Otherwise it will just be the version
|
|
# directory.
|
|
$refdir = unlink_current $dir
|
|
|
|
uninstall_psmodule $manifest $refdir $global
|
|
|
|
env_rm_path $manifest $refdir $global $architecture
|
|
env_rm $manifest $global $architecture
|
|
|
|
try {
|
|
# unlink all potential old link before doing recursive Remove-Item
|
|
unlink_persist_data $manifest $dir
|
|
Remove-Item $dir -Recurse -Force -ErrorAction Stop
|
|
} catch {
|
|
if (Test-Path $dir) {
|
|
error "Couldn't remove '$(friendly_path $dir)'; it may be in use."
|
|
continue
|
|
}
|
|
}
|
|
|
|
Invoke-HookScript -HookType 'post_uninstall' -Manifest $manifest -Arch $architecture
|
|
}
|
|
# remove older versions
|
|
$oldVersions = @(Get-ChildItem $appDir -Name -Exclude 'current')
|
|
foreach ($version in $oldVersions) {
|
|
Write-Host "Removing older version ($version)."
|
|
$dir = versiondir $app $version $global
|
|
try {
|
|
# unlink all potential old link before doing recursive Remove-Item
|
|
unlink_persist_data $manifest $dir
|
|
Remove-Item $dir -Recurse -Force -ErrorAction Stop
|
|
} catch {
|
|
error "Couldn't remove '$(friendly_path $dir)'; it may be in use."
|
|
continue app_loop
|
|
}
|
|
}
|
|
if (Test-Path ($currentDir = Join-Path $appDir 'current')) {
|
|
attrib $currentDir -R /L
|
|
Remove-Item $currentDir -ErrorAction Stop -Force
|
|
}
|
|
if (!(Get-ChildItem $appDir)) {
|
|
try {
|
|
# if last install failed, the directory seems to be locked and this
|
|
# will throw an error about the directory not existing
|
|
Remove-Item $appdir -Recurse -Force -ErrorAction Stop
|
|
} catch {
|
|
if ((Test-Path $appdir)) { throw } # only throw if the dir still exists
|
|
}
|
|
}
|
|
|
|
# purge persistant data
|
|
if ($purge) {
|
|
Write-Host 'Removing persisted data.'
|
|
$persist_dir = persistdir $app $global
|
|
|
|
if (Test-Path $persist_dir) {
|
|
try {
|
|
Remove-Item $persist_dir -Recurse -Force -ErrorAction Stop
|
|
} catch {
|
|
error "Couldn't remove '$(friendly_path $persist_dir)'; it may be in use."
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
success "'$app' was uninstalled."
|
|
}
|
|
|
|
exit 0
|