EFTScriptSamples/powershell/Installedupdates.ps1

7 lines
170 B
PowerShell
Raw Normal View History

2022-09-13 12:38:57 -05:00
Get-HotFix |
Where {
$_.InstalledOn -gt "07/01/2019" -AND $_.InstalledOn -lt "09/01/2019" } |
sort InstalledOn | Out-File $HOME\desktop\installedupdates.txt