zoukankan      html  css  js  c++  java
  • SharePoint 设置客户端上传文件大小

    in sharepoint 2013, 2016 , there is a limitatoin on the size of the uploading files , default size for uploading documents through CSOM is 2 MB, but you can overcome this limitation by using the following PS script to set a higher limit


    $ws = [Microsoft.SharePoint.Administration.SPWebService]::ContentService 
    $ws.ClientRequestServiceSettings.MaxReceivedMessageSize = 10485769 
    $ws.ClientRequestServiceSettings.MaxParseMessageSize  = 10485769 
    $ws.Update()

    Note : stop sharepoint timer service before executing above script

  • 相关阅读:
    记坑
    常用模板
    ACM-东北赛划水记
    jzoj 4178游戏
    JZOI 4163
    jzoj 4146踩气球
    jzoj 5589. 缩点
    jzoj 5588 %%%
    jzoj 5571 ffs
    BJOI 2017 Kakuro
  • 原文地址:https://www.cnblogs.com/jianyus/p/8390673.html
Copyright © 2011-2022 走看看