We're trying to remove Insights from CRM since the free version is being discontinued and it's not something we use much. Found these uninstall instructions but we have a dependency error when we try to delete the solution. https://kb.insideview.com/hc/en-us/articles/115007393928-Uninstalling-Insights-Enterprise-from-Microsoft-Dynamics-CRM-or-Dynamics-365
I'm not sure of the proper way to remove the notify_loader.js dependency. I can go to the Forms listed and to Form Properties and see the script there but I see the same script on my Contact Form yet the Contact Form is not listed as a dependency.


Here's the script contents:
function iv_notifyOnLoadActivity(executionContext, packageVersion, crmVersion){
var client = Xrm.Page.context.client.getClient();
if(client !== "Mobile") {
var head = document.getElementsByTagName('head')[0];
var t = (new Date()).getTime();
window.ivBaseUrl = 'https://my.insideview.com';
window.ivPackageVersion = packageVersion;
window.ivcrmVersion = crmVersion;
var notifyInit = document.createElement('script');
notifyInit.id = 'iv_notify_init';
notifyInit.type = 'text/javascript';
notifyInit.async = false;
notifyInit.src = ivBaseUrl + '/iv/common/javascript/mashup/dynamics/crm2015_notify_script_loader.js?v=' + t ;
head.appendChild(notifyInit);
}
}
*This post is locked for comments
I have the same question (0)