PS-Commands/Scripts/Get-WinUpdate.psm1

10 lines
292 B
PowerShell
Raw Permalink Normal View History

2024-02-06 15:15:07 +03:00
function Get-WinUpdate {
Get-CimInstance Win32_QuickFixEngineering | Sort-Object -Descending InstalledOn | Select-Object HotFixID,
@{
name="InstallDate";expression={
$_.InstalledOn.ToString("dd.MM.yyyy")
}
},
Description,
InstalledBy
2024-01-29 23:41:19 +03:00
}