Hello,
I'm trying to call windows application using shell script in crm 2011 on premise. When i give local system path in jscript web resource its working fine in local system but not in any other system.
function resume()
{
var _Object=new ActiveXObject( "WScript.Shell" ) ;
_Object.Run("C:\\ResumeGrab\\ResumeGrab.exe" );
}
When i try to give server path its not executing in any system. Help me solving this issue so that user will be able to run the application from any system. This is how i have given server path,
\\192.168.0.100\BackBone_Profile\ResumeGrab
Madhu Sudhan.M