We're reclaiming inactive PDIs to keep them available for active builders. Learn what's changing, who's affected, and how to protect your work. Read More

How to see all installed plugins and store apps

andresanche
Giga Guru

I am trying to programmatically identify which plugins and store apps are installed on an instance. I've seen xmlstats.do, however, this lacks information about installed store apps. I've also seen the sys_store_app table, but it isn't available through the table API. Is there another option?

6 REPLIES 6

vermaamit16
Kilo Patron

Hi @andresanche 

 

If you want to get the list from a REST API call, you can follow the approach suggested by Sandeep. Alternatively, you can run a GlideQuery() on the sys_plugins table to get all the plugins installed and on sys_store_app table to get the store apps installed.

 

You can also create a report on these tables but ensure that you add these tables in the glide.ui.permitted_tables system property to make them reportable.

 

Thanks and Regards

Amit Verma

Thanks and Regards
Amit Verma

JaapB
Tera Contributor

Very helpfull comment @vermaamit16 although I am wondering about the performance impac and why this is not permitted by default...