Solved: Activate plugin via script / automatically - ServiceNow Community

Activate plugin via script / automatically

Cem4
Kilo Contributor

All,

 

is it possible to activate a plugin via script, e.g. set the value of com.glide.service-portal.knowledge-base from false to true. If not, is there another way to activate it automatically, so the activated functionality is a available with the next ServiceNow login?

 

Many thanks

1 ACCEPTED SOLUTION

Ashby
ServiceNow Employee
ServiceNow Employee

You can use the following to automatically activate plugins: 

All you need is the plugin ID..........

//Partial Version
//you can check following URL to see if the work is finished. It is finished when the completion time is set and the percent complete is 100.
//<instance>/sys_execution_tracker_list.do?sysparm_query=name%3DPlugin%20Installer
var plugins = [];
plugins.push('com.snc.pa.change');
plugins.push('com.snc.pa.problem');
plugins.push('com.snc.pa.premium');
plugins.push('com.snc.pa.solution.library');
var main = new GlideMultiPluginManagerWorker();
main.setPluginIds(plugins);
main.setProgressName("Plugin Installer");
main.setBackground(true);
main.start();

View solution in original post

18 REPLIES 18

Veer MS
Kilo Guru

Hi Cem,

I don't think you  can activate a plugin via script.

However here are some best practices for activating the plugins.

https://community.servicenow.com/community?id=community_question&sys_id=8de68fa5db1cdbc01dcaf3231f961928

Thanks

Veer

Jeff Currier
ServiceNow Employee
ServiceNow Employee

I don't think you can script this.  However, I am curious about the use case.  Why spend the time to script so you active at login.  This is a one time event, so why not just activate manually once and be done?

Ajaykumar1
Tera Guru

Hi Cem,

Yes, it is possible to activate a plugin using a background script, but can you share the use case where you want to achieve this ?

Regards,
Ajay

Cem4
Kilo Contributor

Hi Ajay,

 

we operate several prod-instances with several sub-prod instances and we want to sychronize them automatically.

 

Regards,

Cem