zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    DOM型XSS(pikachu)
    第十周笔记
    第九周数据结构
    第八周数据结构笔记
    第七周笔记
    第六周笔记
    第五周数据结构
    第四周笔记
    数据结构(第三周)
    数据结构—第二周学习笔记
  • 原文地址:https://www.cnblogs.com/PeterHome/p/8302995.html
Copyright © 2011-2022 走看看