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
This commit is contained in:
MyDrift
2025-03-04 20:46:06 +01:00
parent eea96f596e
commit e830ff03b1
8 changed files with 245 additions and 52 deletions

View File

@ -0,0 +1,13 @@
function Invoke-WPFUpdateMGMT {
param (
[switch]$Selected,
[switch]$All
)
if ($Selected) {
write-host "Installing selected updates"
} elseif ($All) {
Write-Host "Installing all available updates"
}
}