can we make a windows application to run in crm on click of button
-
Tuesday, August 07, 2012 10:23 AM
I have created a windows application and want to run it on click of a button in ribbon in crm 2011.
I have the exe of it. How can i do that.
I have tried this in web resource
var _Object=new ActiveXObject( "WScript.Shell" ) ;
_Object.Run("C:\\folder1\\folder2\\abc.exe" );
..
- Edited by mrpathan Monday, August 13, 2012 11:42 AM
All Replies
-
Tuesday, August 14, 2012 9:16 AM
Hi
With the help of pragma tool . A custom Button can be created you can run your application .
Please refer this link
www.<cite>pragmatoolkit.codeplex.com/</cite>
Thanks & Regards
Dhamodharan R
Thanks & Regards Dhamodharan R
- Edited by R Dhamodharan Tuesday, August 14, 2012 9:17 AM
-
Tuesday, August 14, 2012 11:25 AM
Thanks for reply R Dhamodharan,
Adding a button is not problem. I have added button. I need to trigger the windows application on click of that button.
I am able to do that in local machine. I want the button to run the application from server.
How can i do that.