Files
winutil/functions/public/Invoke-WPFUpdateMGMGT.ps1
MyDrift e830ff03b1 add Update History
- 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
2025-03-04 20:46:06 +01:00

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"
}
}