mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-15 07:05:51 -06:00
6d88e51462
* Add Selected Apps Label, Reshuffel the nesting of the checkbox and the label to be able to reference the name from the actual checkbox * Add visual selection and allow click on the whole app section * Fix Theme definition to work with theme change * Fix Highlight on if label or icon is clicked * change applications.json to powershell object list and refactor UI Creation logic * Optimization and Add Collapsable Categories * Add Button functionality for install, uninstall, info, install selected, uninstall selected, clear and implement search * Rest application.json to Main * Reset Compile to main * Pretty much revamp_apps but without changes to applications.json * Small fixes
84 lines
3.8 KiB
PowerShell
84 lines
3.8 KiB
PowerShell
function Invoke-WPFInstall {
|
|
param (
|
|
[Parameter(Mandatory=$false)]
|
|
[PSObject[]]$PackagesToInstall = $($sync.selectedApps | Foreach-Object { $SortedAppsHashtable.$_ })
|
|
)
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Installs the selected programs using winget, if one or more of the selected programs are already installed on the system, winget will try and perform an upgrade if there's a newer version to install.
|
|
|
|
#>
|
|
|
|
if($sync.ProcessRunning) {
|
|
$msg = "[Invoke-WPFInstall] An Install process is currently running."
|
|
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Warning)
|
|
return
|
|
}
|
|
|
|
if ($PackagesToInstall.Count -eq 0) {
|
|
$WarningMsg = "Please select the program(s) to install or upgrade"
|
|
[System.Windows.MessageBox]::Show($WarningMsg, $AppTitle, [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Warning)
|
|
return
|
|
}
|
|
$ChocoPreference = $($sync.WPFpreferChocolatey.IsChecked)
|
|
$installHandle = Invoke-WPFRunspace -ParameterList @(("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 install"
|
|
} else {
|
|
$null = $packagesChoco.add($package.choco)
|
|
Write-Host "Queueing $($package.choco) for Chocolatey install"
|
|
}
|
|
}
|
|
else {
|
|
if ($package.winget -eq "na") {
|
|
$packagesChoco.add($package.choco)
|
|
Write-Host "Queueing $($package.choco) for Chocolatey install"
|
|
} else {
|
|
$null = $packagesWinget.add($($package.winget))
|
|
Write-Host "Queueing $($package.winget) for Winget install"
|
|
}
|
|
}
|
|
}
|
|
return $packagesWinget, $packagesChoco
|
|
}.Invoke($PackagesToInstall)
|
|
|
|
try {
|
|
$sync.ProcessRunning = $true
|
|
$errorPackages = @()
|
|
if($packagesWinget.Count -gt 0) {
|
|
Install-WinUtilWinget
|
|
Install-WinUtilProgramWinget -Action Install -Programs $packagesWinget
|
|
|
|
}
|
|
if($packagesChoco.Count -gt 0) {
|
|
Install-WinUtilChoco
|
|
Install-WinUtilProgramChoco -Action Install -Programs $packagesChoco
|
|
}
|
|
Write-Host "==========================================="
|
|
Write-Host "-- Installs 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
|
|
}
|
|
}
|