博客地址:http://blog.csdn.net/FoxDave SharePoint文档库关于版本的设置:"Versioning Settings",可以通过CSOM用List对象的一些属性去设置它. Content Approval部分: Specify whether new items or changes to existing items should remain in a draft state until they have been approved. 对应…
由于某个文档库设置了编辑前签出功能,导致批量导入文件时这些文件默认的状态都被签出了.如果手动签入则费时费力,故利用PowerShell来实现批量签入Document Library中的文件. Resolution Add-PSSnapin Microsoft.SharePoint.PowerShell function CheckInDocument([string]$url){ $spWeb=Get-SPWeb $url $spDocument=$spWeb.Lists.TryGetList(…
博客地址:http://blog.csdn.net/FoxDave SharePoint网站集中有个关于审计的功能:"Site collection audit settings",可以用CSOM通过Site的一些属性去设置它. Audit Log Trimming部分: Automatically trim the audit log for this site? 对应的属性为:site.TrimAuditLog 布尔类型,通过true/false的设置进行更新. Optiona…
博客地址:http://blog.csdn.net/FoxDave SharePoint网站中的语言设置:"Language Settings",可以用CSOM通过Site的一些属性去设置它. Default Language部分: The default language of the site is specified when the site is first created. 对应的属性为:web.Language 整型,无法更改,网站一旦创建默认语言就无法再更新,可以通过…
博客地址:http://blog.csdn.net/FoxDave SharePoint网站中的区域设置:"Regional Settings",可以用CSOM通过Site的一些属性去设置它. Time Zone部分: Specify the standard time zone. 对应的属性为:web.RegionalSettings.TimeZone TimeZone类型属性,示例如下: web.RegionalSettings.TimeZone = web.RegionalSe…
今天客户提出了一个需求,有一个文档库,里面有500多个文档,有word,excel还有pdf文档,想要把文档搬迁到一个新的站点上面去,新的文档库和原文档库有这同样的列,客户要求文档在迁移过程中属性要带过去. 第一反应是用文件夹视图,然后拷贝复制,但是这样有一个很严重的问题就是,word,excel在拷贝的时候原文档库的属性会被带过去,而PDF文档由于不是微软的产品.所以在拷贝的时候,文档库里的属性不会随着复制而到新的文档库里面.于是这种方案就被迫放弃了. 第二反应是用列表模板,同样不行,因为文档…
How to Upload Multiple documents in SharePoint 2013,Options to add multiple files in a document library,Use Options Drag-and-Drop,SYNC,Windows Explorer and Map as Network Drive to Upload multiple documents. In Sharepoint 2013 the "Upload Multiple&quo…
SharePoint Foundation 和 SharePoint Server 概述 SharePoint Foundation 2010 是一项用于 SharePoint 网站的基础技术,它可以免费获取,在早期版本中称为 Windows SharePoint Services.SharePoint Server 2010 依靠 SharePoint Foundation 技术为列表和库.网站管理及网站自定义提供熟悉的一致框架.SharePoint Foundation 中所提供的任何功能也…
问题1:在SharePoint 2013页面中使用Javascript 事件window/document.onload/ready时,你会发现处理onload/ready事件的代码根本不能执行. 问题2:使用ECMAScript的方式客户端模型调用SP.ClientContext(),出现脚本错误:应该是加载顺序导致的. 解决方案:使用 _spBodyOnLoadFunctionNames.push('documentReady'); <script type="text/javascr…
One of my friend and colleague asked me this question. I found it tricky and a good post for my blog. Here is what you have to do: Go to your 12 hive\TEMPLATE\LAYOUTS\1033 folder. Open up the Core.js file. Find the function AddSendSubMenu. Go to the…