[A] PS SCRIPT to collect product list from single VM: ==================================================== PS C:\Users\Administrator> Get-WmiObject -Namespace ROOT\CIMV2 -Class Win32_Product -Computer localhost | Select-Object Name,Version,InstallDate,PSComputerName | Sort-Object Name Name Version InstallDate PSComputerName ---- ------- ----------- -------------- .. RSLinx Classic 4.11.00 CPR 9 SR 11.0 4.11.00 CPR 9 SR 11.0 20190818 WIN-U8FVIPH5BCM RSLogix 5000 Module Profile Core 20.02.53.0 20190830 WIN-U8FVIPH5BCM RSLogix 5000 Module Profile Core EDS Support 20.02.53.0 20190830 WIN-U8FVIPH5BCM RSLogix 5000 Module Profile Core System Updates 18.03.10.0 20190818 WIN-U8FVIPH5BCM RSLogix 5000 Module Profile Core System Updates 1 11.00.3704.0 20190818 WIN-U8FVIPH5BCM RSLogix 5000 Module Profile Setup Utility 20.02.53.0 20190830 WIN-U8FVIPH5BCM SMC 1756 Comm Module Profiles 1.17.1.0 20190830 WIN-U8FVIPH5BCM Spectrum Controls 1734 Analog Module Profiles 1.21.1.0 20190830 WIN-U8FVIPH5BCM Spectrum Controls 1756 Analog Module Profiles 1.17.01.0 20190830 WIN-U8FVIPH5BCM Spectrum Controls 1756 Discrete Module Profiles 1.04.1.0 20190830 WIN-U8FVIPH5BCM Spectrum Controls 1756 Specialty Module Profiles 1.04.1.0 20190830 WIN-U8FVIPH5BCM Spectrum Controls 1769 Analog HART Module Profiles 1.09.01.0 20190830 WIN-U8FVIPH5BCM Spectrum Controls 1769 Analog Module Profiles 1.11.1.0 20190830 WIN-U8FVIPH5BCM Spectrum Controls 1769 Analog2 Module Profiles 2.09.01.0 20190830 WIN-U8FVIPH5BCM Studio 5000 Launcher 3.7.293.0 20190818 WIN-U8FVIPH5BCM Studio 5000 Logix Designer v32.00.00 (CPR 9 SR 11) 32.00.00 20190830 WIN-U8FVIPH5BCM Studio 5000 Samples 1.0.0.0 20190818 WIN-U8FVIPH5BCM Studio 5000 View Designer 5.2.00000.00038 20190818 WIN-U8FVIPH5BCM .. [B] PS SCRIPT to collect product list from ALL VMs in ESXi: =========================================================== step 1: Populate vms.txt with all VM computer names: PS C:\Users\Administrator> Get-Content c:\vms.txt WIN-U8FVIPH5BCM WIN-OA25KLQM5B2 step 2: Execute PS script to query all VMS. PS C:\Users\Administrator> Get-Content -Path c:\vms.txt | ForEach-Object {Get-WmiObject -Namespace ROOT\CIMV2 -Class Win32_Product -Computer $_} | Select-Object Name,Version,InstallDate,PSComputerName | Sort-Object Name > SW_Install.log PS C:\Users\Administrator> Get-Content SW_I* Name Version InstallDate PSComputerName ---- ------- ----------- -------------- .. Studio 5000 Launcher 3.7.293.0 20190816 WIN-OA25KLQM5B2 Studio 5000 Launcher 3.7.293.0 20190818 WIN-U8FVIPH5BCM Studio 5000 Logix Designer v32.00.00 (CPR 9 SR 11) 32.00.00 20190830 WIN-U8FVIPH5BCM Studio 5000 Samples 1.0.0.0 20190816 WIN-OA25KLQM5B2 Studio 5000 Samples 1.0.0.0 20190818 WIN-U8FVIPH5BCM Studio 5000 View Designer 5.2.00000.00038 20190816 WIN-OA25KLQM5B2 Studio 5000 View Designer 5.2.00000.00038 20190818 WIN-U8FVIPH5BCM .. [C] PS script collect FTAStub.dll details from a single VM: =========================================================== PS C:\Users\Administrator> gci -path c:\ -recurse -filter ftastub.dll -Force -ErrorAction SilentlyContinue | select-object fullname, lastwritetime, length, @{Name="Version" ; Expression={$_.VersionInfo.FileVersion }} | Format-List FullName : C:\Program Files (x86)\Rockwell Automation\CCW\PackagesToLoad\FTAStub.dll LastWriteTime : 9/12/2018 3:29:08 AM Length : 1590088 Version : 7.08.00.0002 FullName : C:\Program Files (x86)\Rockwell Software\RSLinx\FTAStub.dll LastWriteTime : 4/3/2018 1:28:10 PM Length : 1629512 Version : 7.07.00.0015 FullName : C:\Program Files (x86)\Rockwell Software\Studio 5000\Logix Designer\ENU\v24\Bin\FTAStub.dll LastWriteTime : 1/22/2014 11:16:12 AM Length : 77648 Version : 7.02.00.0003 FullName : C:\Program Files (x86)\Rockwell Software\Studio 5000\Logix Designer\ENU\v32\Bin\FTAStub.dll LastWriteTime : 1/25/2018 4:11:52 PM Length : 1588040 Version : 7.07.00.0009 FullName : C:\Program Files (x86)\Rockwell Software\Studio 5000\View Designer\ENU\V5\ftastub.dll LastWriteTime : 4/16/2019 4:52:38 PM Length : 1590088 Version : 7.08.00.0002 FullName : C:\Program Files (x86)\Rockwell Software\Studio 5000\View Designer\ENU\V6\ftastub.dll LastWriteTime : 8/26/2019 10:55:04 AM Length : 1590088 Version : 7.08.00.0002 FullName : C:\ProgramData\Rockwell\Installer\Connected Components Workbench 12.00.00\FTAStub.dll LastWriteTime : 9/11/2018 11:29:06 AM Length : 1590088 Version : 7.08.00.0002 FullName : C:\ProgramData\Rockwell\Installer\Stand-alone ME Transfer Utility 11.00.00 (CPR 9 SR 11)\FTAStub.dll LastWriteTime : 9/11/2018 1:29:06 PM Length : 1590088 Version : 7.08.00.0002 FullName : C:\Users\All Users\Rockwell\Installer\Connected Components Workbench 12.00.00\FTAStub.dll LastWriteTime : 9/11/2018 11:29:06 AM Length : 1590088 Version : 7.08.00.0002 FullName : C:\Users\All Users\Rockwell\Installer\Stand-alone ME Transfer Utility 11.00.00 (CPR 9 SR 11)\FTAStub.dll LastWriteTime : 9/11/2018 1:29:06 PM Length : 1590088 Version : 7.08.00.0002