Change Maximum Size For SharePoint List Template when Saving

  By default, Microsoft has restricted the download size of the list template as 10MB (10485760 bytes). If you are trying to save site/list template which are having more than 10MB size, you will get error:"The list is too large to save as a template. The size of a template cannot exceed 10485760 bytes"

  

To resolve this issue, you have to run the below command in the command prompt:
  stsadm -o setproperty -propertyname max-template-document-size -propertyvalue 524288000
You can increase the maximum size of a list / site template by running the following command (note that 500mb is the largest you can go):

stsadm -o setproperty -propertyname max-template-document-size -propertyvalue 50000000

"C:Program FilesCommon FilesMicrosoft SharedWeb Server Extensions14BINstsadm.exe" -o setproperty -propertyname max-template-document-size -propertyvalue 100000000

原文地址:https://www.cnblogs.com/PeterHome/p/8302995.html