Sql query to get localized application name of all the application

Question

Hi Anoop,

 

Do we have any sql query so that I can get localized application name of all the applications in sccm.

I have tried getting the information from table v_applications however localized application name is not available.

Any help will be appreciated.

Answers ( 5 )

    1
    2021-03-30T16:00:36+05:30

    Hi Ankit,

    Was unable to get the desired result.
    I have additional requirement, to get object path of the localized display name of the application along with localized display name.

    With powershell I was able to get the localized display name of the application but i am unable to get the object path.

    Anoop C Nair please suggest

    • I think you need to develop the SQL query that is shared by Ankit. I mean you can check whether this information is collected and available in SQL DB or not.

      If so, you can easily change the query or add additional columns to include the details that you need.

      Best answer
        2
        2022-06-21T20:39:56+05:30

        Sample query to get application name and Software Center localized application name
        select apps.ci_id,apps.displayname,swc.title
        from fn_listlatestapplicationcis(1033) as apps
        left join fn_LocalizedAppProperties(1033) as swc on apps.CI_ID =swc.CI_ID
        order by apps.displayname

    0
    2021-03-22T18:30:07+05:30

    Thanks anoop.

    Will check and update.

    1
    2021-03-20T04:23:35+05:30

    Can you check below query it may help you you might need to modify a little.
    https://www.anoopcnair.com/sccm-sql-query-to-find-collections-used-for-app-deployment/

Leave an answer

Sorry, you do not have permission to answer to this question .