Hello,
Yes, it is possible to get the last update install date using PowerShell. You can use the Get-HotFix
cmdlet to retrieve information about installed hotfixes, including the installation date . Here's an example of how you can use it:
Get-HotFix | Sort-Object InstalledOn -Descending | Select-Object -First 1
This command will return the most recent hotfix installed on the system, including the installation date.
More details you can refer to this link:
Best Regards,
Hania Lian
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.