I have developed a windows application which extracts the required data from a web site and stores data in crm. Now i have added a button on ribbon , from which i want to call the windows application. I'm able to do this using below code
function resume()
{
var _Object=new ActiveXObject( "WScript.Shell" ) ;
_Object.Run("C:\\ResumeGrab\\ResumeGrab.exe" );
}
The problem now i'm facing is, the button is working only in local system. I want to run this application from any system using the crm. I tried copying the .exe file in server and tried to run it , but when i tried its only running in server but not in any system. How to make this application run in multiple system without needing the .exe file copied in local system on click of button on ribbon in crm 2011.