Maximum Size for File Attachment in Microsoft Dynamics CRM 2011
-
Friday, July 06, 2012 2:14 PM
Hi,
Maximum Size for File Attachment in Microsoft Dynamics CRM 2011 ?
Thanks,
Srikanth Reddy
All Replies
-
Friday, July 06, 2012 2:30 PM
-
Tuesday, July 10, 2012 12:02 PM
Hi Srikanth,
By default, the maximum size of an attachment in CRM 2011 is 5.2 MB. However, it is extendable to 32 MB which can be maanged in the Settings.
Thanks & Regards,
Srinivas Kamutam
- Proposed As Answer by JLattimerMicrosoft Community Contributor, Moderator Tuesday, July 10, 2012 12:58 PM
-
Wednesday, July 11, 2012 3:37 AMHi Srikanth,
In CRM 2011 you can increase this by changing the ServerSettingsPropertiestable in CRM database.
When you run the below statement it would give you the allotted size. you can increase this by using an update statement.
select IntColumn from ServerSettingsProperties where columnname=’ImportMaxAllowedFileSizeInMB’
Update ServerSettingsProperties set IntColumn = 10 where columnname=’ImportMaxAllowedFileSizeInMB’- Edited by Charith Wednesday, July 11, 2012 3:37 AM