A new Flexera Community experience is coming on November 18th, click here for more information.
I was looking for a list of Product Codes similar to this: Product code: {F735BDF3-ECB5-465F-998C-E2A4C00B6B9F} for version 22.0.0 2024R1.
Is there a comprehensive list of Product Codes for different agent versions?
‎Aug 29, 2024 10:11 AM
I don't know of anywhere that a list of Product Codes for FlexNet inventory agent installers is published.
But in case it is helpful, a PowerShell command like the following could be executed on a computer with the agent installed to identify the Product Code of that particular agent installation:
Get-ChildItem -Path HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall |
Get-ItemProperty |
Where-Object { $_.DisplayName -like "FlexNet*" } |
Select DisplayName, DisplayVersion, PSChildName
This will produce output like:
DisplayName DisplayVersion PSChildName
----------- -------------- -----------
FlexNet Inventory Agent 22.0.0 {F735BDF3-ECB5-465F-998C-E2A4C00B6B9F}
‎Aug 29, 2024 07:02 PM