cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Flexera Agent Code

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?

(1) Reply
ChrisG
By Community Manager Community Manager
Community Manager

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}

 

(Did my reply solve the question? Click "ACCEPT AS SOLUTION" to help others find answers faster. Liked something? Click "KUDO". Anything expressed here is my own view and not necessarily that of my employer, Flexera.)