what table has software productname ?
Created: 04 Sep 2012 | 4 comments
ok in NS6 there was the infamous
Inv_Aex_SW_Audit_Software
SQL example
Select a._ResourceGUID
From [inv_aex_sw_audit_software] a
where a.[ProductName] like '%ezchrom%' and a.[file name] = 'helpmail.exe'
now in the 7.1sp2 world.. i have 99.99% of my items created.. but the .01% i just cant seem to figure out..
I was able to use Inv_Installed_File_Details for some like Name and path..
but ProductName doesnt exist...
I need to know where this can be found as we also have other items that we will be creating in the future off of that field...
If there is a way to do it via app metering or software in the catalog I can set it up but for now im lost as I have checked most of the tables with the simple
select * from dbo.tablename and not finding it...
now I have a feeling that someone will recommend a custom data class.. ok I could do that and I have created a few custom inventories... but kicker is that there is no specific file to say inventory on or i would use 'name' or even 'path'
thanks guys/gals..
Discussion Filed Under:
Comments 4 Comments • Jump to latest comment
i will spend a LOT of time trying to figure this stuff out..
I then will post the question and keep on chugging...
now I think i found it..
TheSmiz replied to a thread now locked here
https://www-secure.symantec.com/connect/forums/alt...
now unfortunately I do not have a machine that is in our DEV with that software installed.. but running
vSoftwareProduct table may have what you're looking for.
that looks like a rolling list of software.. no repeats.. hmmm looks nice.. until i can find the software install i wont be able to see if it helps.. but i dont see why not..
do you know if that is the software catalog listing?
To get the name of installed software, start with this query:
SELECT DISTINCT sci.Name
FROM vRM_Software_Component_Item sci
JOIN Inv_InstalledSoftware iss
ON iss._SoftwareComponentGuid = sci.Guid
------------------------------------
Sr. Principal SQA Engineer
Symantec
Would you like to reply?
Login or Register to post your comment.