rob343 Posted March 27, 2017 Report post Posted March 27, 2017 Hi Apologies if this is the wrong place for this question, I have seen/used the great PowerShell scripts for documenting my SCCM setup. but I was wondering is there anything out there similar for generating a Image build release note. i.e. all the apps installed, O/S etc etc, ideally in a nice presentable format. Thanks Rob Quote Share this post Link to post Share on other sites More sharing options...
keilamym Posted March 29, 2017 Report post Posted March 29, 2017 This is how we do it. Export a list of drivers - %windir%\system32\dxdiag.exe /t c:\filename.txt Export App list. PowerShell.exe -NoProfile "gp HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |Select DisplayName, DisplayVersion, Publisher, InstallDate, Helplink, UninstallString > c:\filename.txt" PowerShell.exe -NoProfile "gp HKLM:\Software\wow6432node\Microsoft\Windows\CurrentVersion\Uninstall\* |Select DisplayName, DisplayVersion, Publisher, InstallDate, Helplink, UninstallString > c:\filename.txt" Quote Share this post Link to post Share on other sites More sharing options...
rob343 Posted March 30, 2017 Report post Posted March 30, 2017 Thanks will give that a try. Quote Share this post Link to post Share on other sites More sharing options...