博客地址: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…
博客地址: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网站集中有个关于审计的功能:"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文档库关于版本的设置:"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. 对应…
转载请注明出自天外归云的博客园:http://www.cnblogs.com/LanTianYou/ 对CSOM(Not SSOM) Site Policy & Expiration Email的API的调用过程进行封装,做成tool,界面如下: 代码如下: using System; using System.Windows.Forms; using Microsoft.SharePoint.Client; using Microsoft.SharePoint.Client.Informati…
博客地址:http://blog.csdn.net/FoxDave 最近因为问题发现了SharePoint的"See also"功能,该功能是由SharePoint自动的Feature管理的 Feature Name:ItemFormRecommendations, Feature Identity: 39d18bbf-6e0f-4321-8f16-4e3b51212393 这里有一个列表,列出了所有SharePoint 2013具有的feature. http://social.t…
Q: I am trying to access the Site Settings of my SharePoint site, but I get a File Not Found error, although the rest of SharePoint works great. What should I do? A: I recently deployed SharePoint Foundation to a server to run the System Center Servi…
转:http://www.wcode.net/plus/view.php?aid=1582071 SharePoint一个很重要的概念就是Site Pages和Application Pages.接触SharePoint是在SharePoint 2007,当时就有这个概念.如有误解之处,请大家多多指教. Site Pages是可以通过SharePoint Designer来编辑的页面,它的增加.删除.修改并不能在物理文件系统中跟踪到,而是在Content DB中. Site Pages 两个重要…
对IT专业人员来说,新的产品,意味着新的功能,IT生产力提高的契机,更加关心如何使用新产品投入更少,产出更多.在本文中我们通过对SharePoint 2010产品的功能介绍.管理中心新功能介绍.系统新功能把SharePoint 2010 给IT专业人员带来的好处展现给大家. SharePoint 2010 产品分成了两个版本SharePoint Foundation 2010和SharePoint Server 2010,其中SharePoint Foundation 2010是WSS 3.0的…
通过PowerShell创建SharePoint Site Collection,代码如下: Add-PSSnapin microsoft.sharepoint.powershell function CreateTeamSite() { $webApps = Get-SPWebApplication $webAppsUrl = $webApps.Url ) { Write-Host "You have only one web application:" Write-Host $we…