08 2013 档案

摘要:原文链接:http://www.sharepointdiary.com/2012/07/activate-deactivate-features-programmatically.htmlSPSite oSPSite =newSPSite(SiteURL);//Get the Feature to ActivateSPFarm farm = oSPSite.WebApplication.Farm;SPFeatureDefinitionCollection features = farm.FeatureDefinitions;SPFeatureDefinition feature = featu 阅读全文
posted @ 2013-08-30 13:14 【上海】Peter 阅读(362) 评论(0) 推荐(0)
摘要:查询包含User或者等于User的数据http://msdn.microsoft.com/en-us/library/aa544234.aspx 阅读全文
posted @ 2013-08-28 15:13 【上海】Peter 阅读(169) 评论(0) 推荐(0)
摘要:原文地址:http://www.cnblogs.com/wallis0922/archive/2010/09/29/1838292.html1.打开管理中心sharepoint是通过“用户配置文件同步服务”来实现同步,所以第一步要开启这个服务。方法:进入 系统设置---管理服务器上的服务(如下图:)2. 请注意下图最后一个服务,现在处于停止状态。好了,那我们就启动它吧3. 突然跳出来个页面(如下图)要你输入密码认证你的权限才能开启服务。那就打吧.....打完后按确定...阿门....希望一切顺利!4. 注意最下面。我晕了.......等了10分钟.....还是在启动中的状态,难道就死在这了?5 阅读全文
posted @ 2013-08-14 10:02 【上海】Peter 阅读(306) 评论(0) 推荐(0)
摘要:原文:http://blogs.msdn.com/b/uksharepoint/archive/2011/04/04/provisioning-web-parts-to-a-page.aspxWhen deploying a page to SharePoint through a Modules feature, there are several options adding web parts to this. These are as follows:Add the web parts to the page programmatically via a feature receive 阅读全文
posted @ 2013-08-12 14:52 【上海】Peter 阅读(207) 评论(0) 推荐(0)
摘要:第一步:需要从开始菜单进入 SharePoint 2010 Management Shell 在命令窗口执行如下命令:$e = Get-SPServiceApplication | where {$_.TypeName.Equals("Word Viewing Service 应用程序")} $e.WordServerIsSandboxed = $false $e.WordServerIsSandboxed$p = Get-SPServiceApplication | where {$_.TypeName.Equals("PowerPoint Service Ap 阅读全文
posted @ 2013-08-08 17:38 【上海】Peter 阅读(269) 评论(0) 推荐(0)
摘要:原文链接:http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2009/06/02/how-to-deploy-a-page-using-a-feature.aspxI am about to do start giving some training again, so I thought I would work on some more content for the blog that I could refer to people to when they are trying things out. Today, I 阅读全文
posted @ 2013-08-06 11:00 【上海】Peter 阅读(274) 评论(0) 推荐(0)