mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-15 07:05:51 -06:00
7fe0f9a163
* Fix the way arguments are passed to the runspace * Add $handle return * Fix Choco Install logic
92 lines
3.9 KiB
PowerShell
92 lines
3.9 KiB
PowerShell
function Invoke-WPFUnInstall {
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Uninstalls the selected programs
|
|
|
|
#>
|
|
|
|
if($sync.ProcessRunning) {
|
|
$msg = "[Invoke-WPFUnInstall] Install process is currently running"
|
|
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Warning)
|
|
return
|
|
}
|
|
|
|
$PackagesToInstall = (Get-WinUtilCheckBoxes)["Install"]
|
|
|
|
if ($PackagesToInstall.Count -eq 0) {
|
|
$WarningMsg = "Please select the program(s) to uninstall"
|
|
[System.Windows.MessageBox]::Show($WarningMsg, $AppTitle, [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Warning)
|
|
return
|
|
}
|
|
|
|
$ButtonType = [System.Windows.MessageBoxButton]::YesNo
|
|
$MessageboxTitle = "Are you sure?"
|
|
$Messageboxbody = ("This will uninstall the following applications: `n $($PackagesToInstall | Format-Table | Out-String)")
|
|
$MessageIcon = [System.Windows.MessageBoxImage]::Information
|
|
|
|
$confirm = [System.Windows.MessageBox]::Show($Messageboxbody, $MessageboxTitle, $ButtonType, $MessageIcon)
|
|
|
|
if($confirm -eq "No") {return}
|
|
$ChocoPreference = $($sync.WPFpreferChocolatey.IsChecked)
|
|
|
|
Invoke-WPFRunspace -ArgumentList @(("PackagesToInstall", $PackagesToInstall),("ChocoPreference", $ChocoPreference)) -DebugPreference $DebugPreference -ScriptBlock {
|
|
param($PackagesToInstall, $ChocoPreference, $DebugPreference)
|
|
if ($PackagesToInstall.count -eq 1) {
|
|
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Indeterminate" -value 0.01 -overlay "logo" })
|
|
} else {
|
|
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Normal" -value 0.01 -overlay "logo" })
|
|
}
|
|
$packagesWinget, $packagesChoco = {
|
|
$packagesWinget = [System.Collections.ArrayList]::new()
|
|
$packagesChoco = [System.Collections.ArrayList]::new()
|
|
|
|
foreach ($package in $PackagesToInstall) {
|
|
if ($ChocoPreference) {
|
|
if ($package.choco -eq "na") {
|
|
$packagesWinget.add($package.winget)
|
|
Write-Host "Queueing $($package.winget) for Winget uninstall"
|
|
} else {
|
|
$null = $packagesChoco.add($package.choco)
|
|
Write-Host "Queueing $($package.choco) for Chocolatey uninstall"
|
|
}
|
|
}
|
|
else {
|
|
if ($package.winget -eq "na") {
|
|
$packagesChoco.add($package.choco)
|
|
Write-Host "Queueing $($package.choco) for Chocolatey uninstall"
|
|
} else {
|
|
$null = $packagesWinget.add($($package.winget))
|
|
Write-Host "Queueing $($package.winget) for Winget uninstall"
|
|
}
|
|
}
|
|
}
|
|
return $packagesWinget, $packagesChoco
|
|
}.Invoke($PackagesToInstall)
|
|
|
|
try {
|
|
$sync.ProcessRunning = $true
|
|
|
|
# Install all selected programs in new window
|
|
if($packagesWinget.Count -gt 0) {
|
|
Install-WinUtilProgramWinget -Action Uninstall -Programs $packagesWinget
|
|
}
|
|
if($packagesChoco.Count -gt 0) {
|
|
Install-WinUtilProgramChoco -Action Uninstall -Programs $packagesChoco
|
|
}
|
|
|
|
Write-Host "==========================================="
|
|
Write-Host "-- Uninstalls have finished ---"
|
|
Write-Host "==========================================="
|
|
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "None" -overlay "checkmark" })
|
|
} catch {
|
|
Write-Host "==========================================="
|
|
Write-Host "Error: $_"
|
|
Write-Host "==========================================="
|
|
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Error" -overlay "warning" })
|
|
}
|
|
$sync.ProcessRunning = $False
|
|
|
|
}
|
|
}
|