Server Management Suite

 View Only
  • 1.  Altiris Report to search for specific .exe files

    Posted Apr 16, 2012 04:19 AM

    in my company we got at some exe files on each client pc we need to searcf fore.

    Fore example a file called bioinfo.exe and wich version it is, and maybe for a file called bioandet.exe

     

    is this even possible?

    i prefer a sql report if anyone knows some code



  • 2.  RE: Altiris Report to search for specific .exe files

    Posted Apr 16, 2012 06:26 PM

    Have you tried Inv_Installed_File_Details?

    SELECT * FROM Inv_Installed_File_Details WHERE Name='bginfo.exe'

    If this doesn't provide enough information, try SELECT * FROM Inv_AddRemoveProgram WHERE Name LIKE '%bginfo%'

    If neither table provides the data, you will likely need to use a custom inventory.



  • 3.  RE: Altiris Report to search for specific .exe files

    Posted Apr 17, 2012 01:46 AM

    I just got problems finding a custom there allready does this



  • 4.  RE: Altiris Report to search for specific .exe files

    Posted Apr 18, 2012 11:52 AM

    So does the SQL work for your purposes, or..?



  • 5.  RE: Altiris Report to search for specific .exe files

    Posted Apr 19, 2012 01:49 AM

    I can't seem go make it work.

    The problem is that some of the programs doesnt display in add remove program and are just some exe files on the clients pc's, and i cant find a allready made custom report there can show exe files.

    That is why i think it shall be a sql report to find the specific exe files and their versions



  • 6.  RE: Altiris Report to search for specific .exe files

    Posted Apr 19, 2012 12:32 PM

    OK.  The SQL report I provided would have shown you the data on the .exe's if Altiris were gathering it.  So you'll need to create a custom data class, write a custom inventory to gather the data, and then schedule the task to populate it for all computers.



  • 7.  RE: Altiris Report to search for specific .exe files

    Posted Apr 20, 2012 01:50 AM

    uhm i have no idea how to do that:D



  • 8.  RE: Altiris Report to search for specific .exe files