mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-07-01 10:32:35 -05:00

- add Computername into DataGrid (if needed) - add toggle for Update History - add Update History interface - add Update Interface Toggle Logic - add Update scan logic - initialize Update selected / all logic - center specific datagrid columns
14 lines
254 B
PowerShell
14 lines
254 B
PowerShell
function Invoke-WPFUpdateMGMT {
|
|
param (
|
|
[switch]$Selected,
|
|
[switch]$All
|
|
)
|
|
|
|
if ($Selected) {
|
|
write-host "Installing selected updates"
|
|
} elseif ($All) {
|
|
Write-Host "Installing all available updates"
|
|
}
|
|
|
|
}
|