Sam

Sam's ServiceNow adventures

A place where to share about ServiceNow platform and technologies

Enable PlugIn

Using script to enable a PlugIn

Sam

1 minute read

This is a quick note about how to enable a PlugIn by script

var pluginArr = ['com.sn_glidequery'];
var pluginMgr= new GlideMultiPluginManagerWorker();
pluginMgr.setPluginIds(pluginArr );
pluginMgr.setProgressName("Plugin Installer");
pluginMgr.setBackground(true);
pluginMgr.start();

Reference

  1. Ashby, NOW community - Activate plugin via script / automatically, accessed 2020 06 10

Subscribe to my newsletter

Say something

Comments powered by Talkyard.

Recent posts

Categories

About

This blog is a personnal blog from Samuel Meylan about ServiceNow technologies and other business related topics.

Sam is a ServiceNow Senior Developper and technical consultant with more than 8 years of experience. He particularly like making integrations and solving complexes requirements.

He also enjoy discovering new and enhanced features shipped with each ServiceNow release.