windows 10 powershell list all installed features, updates, programs, and hotfixes applied to a system; in order of date applied -
in windows 10, using power-shell how list installed features, updates, programs, , hotfixes applied system; in order of date applied.
i see get-hotfix updates , security updates, not .net framework features or programs.
thanks in advance.
using query below have installed date first , name version , vendor.
$installedproducts = get-wmiobject win32_product | select installdate, name,version, vendor | sort-object installdate -descending
the install date described here: https://msdn.microsoft.com/en-us/library/aa394378(v=vs.85).aspx
and format of data described here: https://msdn.microsoft.com/en-us/library/aa387237(v=vs.85).aspx
Comments
Post a Comment