How to enable Software asset workspace in PDI

sj00981504
Tera Contributor

How to enable Software asset workspace in PDI

1 ACCEPTED SOLUTION

dreinhardt
Tera Sage

Hi @sj00981504 

 

This includes the SAMP workspace, which is not yet available as single application in our PDIs

Should my response prove helpful, please consider marking it as the Accepted Solution/Helpful to assist closing this thread.

View solution in original post

9 REPLIES 9

dreinhardt
Tera Sage

Hi @sj00981504 

 

This includes the SAMP workspace, which is not yet available as single application in our PDIs

Should my response prove helpful, please consider marking it as the Accepted Solution/Helpful to assist closing this thread.

Thanks for the solution. 

I don't have that plug-in available in my PDI when I got to Plugins and search, it does not come up.

 

LucT
Tera Contributor

Tried this and it did not work but I found a post that had a solution that worked.

 

 

I was able to get the Software Asset Workspace installed on my Yokohoma Developer Instance. 

 

https://www.servicenow.com/community/sam-forum/missing-sam-workspace-plugin-in-pdi-xanadu-release-of...

 

How to run background scripts.

https://www.servicenow.com/community/servicenow-ai-platform-forum/activate-plugin-via-script-automat...

 

 

Under All, Search for - Background to open the scripting tool to run scripts. Copy and paste the script below and click Run. You will need to "Refresh Instance" for the instance to reboot to see the changes.

var plugins = [];
plugins.push('com.sn_sam_workspace');
var main = new GlideMultiPluginManagerWorker();
main.setPluginIds(plugins);
main.setProgressName("Plugin Installer");
main.setBackground(true);
main.start();