Saturday, June 13, 2015

SharePoint 2013 Tip: how to list all installed SharePoint products

To quickly report on all installed SharePoint-Related products and export to CSV, run this script:
Get-WmiObject -Class Win32_Product | Where {$_.Name -like “*SharePoint*”} | Sort-Object Name | Select-Object name, Description, InstallDate, InstallDate2, Vendor, Version | Export-CSV D:\Products2.csv

References
  • To find out what other properties are available, just pipe into Get-Member.

No comments: