Get the Plugin assembly stored in database in CRM
Views (1088)
One of my colleagues faced a situation where he had installed a plugin assembly into database but was not able to locate its dll, and now he wanted to deploy it in some other server.
These are the steps he followed
Get the encoded base 64 string representation of the plugin from PluginAssemblyBase table.
select name,content,*
from PluginAssemblyBase
Use that content and get the dll from the following site.
http://www.motobit.com/util/base64-decoder-encoder.asp
Set decode and export to binary file option there with filename having extension as .dll
Open the dll in the reflector tool and use the source code to build that assembly.
http://reflector.red-gate.com/download.aspx
Bye..
Filed under: CRM, CRM 2011, Microsoft Dynamics CRM Tagged: CRM 2011, CRM 4.0
This was originally posted here.

Like
Report
*This post is locked for comments