Files
Scripting/Powershell/Scripts/List Recent Installed Hotfixes In Windows.ps1
2024-10-03 15:27:32 +10:00

2 lines
73 B
PowerShell

Get-HotFix | Where-Object { $_.InstalledOn -gt (Get-Date).AddDays(-30) }