From 80a3c501bef354f7619be8bc7bd0ce0253fd9abf Mon Sep 17 00:00:00 2001 From: DistractADD <59945168+DistractADD@users.noreply.github.com> Date: Thu, 3 Oct 2024 15:27:32 +1000 Subject: [PATCH] Create List Recent Installed Hotfixes In Windows.ps1 --- Powershell/Scripts/List Recent Installed Hotfixes In Windows.ps1 | 1 + 1 file changed, 1 insertion(+) create mode 100644 Powershell/Scripts/List Recent Installed Hotfixes In Windows.ps1 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) }