14 How to check to install hotfixes or windows update in between a specific date?

Run below command into andy specify your date in mm/dd/yyyy format.

Get-HotFix |
Where {
$_.InstalledOn -gt "04/1/2018" -AND $_.InstalledOn -lt "05/30/2018" } |
sort InstalledOn|out-Gridview