diff --git a/Powershell/Scripts/List Recent Installed Hotfixes In Windows.ps1 b/Powershell/Scripts/List Recent Installed Hotfixes In Windows.ps1 new file mode 100644 index 0000000..15746e0 --- /dev/null +++ b/Powershell/Scripts/List Recent Installed Hotfixes In Windows.ps1 @@ -0,0 +1 @@ +Get-HotFix | Where-Object { $_.InstalledOn -gt (Get-Date).AddDays(-30) }