mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-07-01 10:32:35 -05:00
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:
13
functions/public/Invoke-WPFUpdateMGMGT.ps1
Normal file
13
functions/public/Invoke-WPFUpdateMGMGT.ps1
Normal 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"
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user