Programs and features will not give you much information about an application.
But if we take my post from yesterday and modify it then we can get this.
It’s just a oneliner:
Get-WmiObject win32_product | Select-Object -Property Name, Vendor, Version, IdentifyingNumber | sort -Property Name
And if you want to know what more properties you can find about all installed applications you can do like this:
Get-WmiObject win32_product | Select-Object -Property *
The properties URLInfoAbout, URLUpdateInfo and HelpLink can be nice to have too…