随笔分类 -  SharePoint_Admin

摘要:如果增加了新的Metadata,请上传文件到文档库后,并确保每个字段都填充了数据。然后执行全文爬网。这样才会产生对应新的管理属性。 阅读全文
posted @ 2015-11-18 15:04 风影极光 阅读(322) 评论(0) 推荐(0)
摘要:SharePoint安装 阅读全文
posted @ 2015-11-16 20:44 风影极光 阅读(157) 评论(0) 推荐(0)
摘要:PS C:\Users\Mingle> Get-SPServiceApplicationPool | select Id, NameId Name-- ... 阅读全文
posted @ 2015-08-07 16:08 风影极光 阅读(302) 评论(0) 推荐(0)
摘要:问题场景:在SharePoint2010服务器上使用PowerShell部署解决方案时,遇到问题:解决办法是进入控制面板----管理工具----服务,找到SharePoint 2010 Administration,启动它再次执行命令,没有提示错误。Administration服务的启动类型为自动。... 阅读全文
posted @ 2014-10-30 15:40 风影极光 阅读(277) 评论(0) 推荐(0)
摘要:可以通过查看注册表来得你当前运行的是SharePoint 2010的哪个版本,具体步骤如下: 1、 登录到安装了SharePoint Central Administration 的服务器。 2、 点击开始->运行,输入regedit。 3、 定位到下面的路径: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\14.0\WSS\InstalledProducts 4、 在InstalledProducts文件夹中,你可以发现安装了的SharePoint 产品的GUID。下面是这些GUID的说 阅读全文
posted @ 2014-04-11 14:31 风影极光 阅读(1480) 评论(0) 推荐(0)
摘要:安装顺序Microsoft .NET Framework 3.5 SP1report service installation,plsSQLServer2008R2SP1-KB2528583-x64-ENU(http://blogs.msdn.com/b/ritazh/archive/2012/01/23/install-and-configure-reporting-services-for-sharepoint-2010-integration.aspx) 阅读全文
posted @ 2013-07-25 13:31 风影极光 阅读(262) 评论(0) 推荐(0)
摘要:NT AUTHORITY\Authenticated Users添加此用户后所有windows认证的ad用户都被授权。注意添加的时候如果搜索不到,可以直接输入Authenticated Users,然后点击"Check Names"来自动识别和填充。 阅读全文
posted @ 2013-06-20 22:20 风影极光 阅读(235) 评论(0) 推荐(0)
摘要:如下图所示:由于默认的SSL端口443已经被其他web application占用了,所以我们指定4433为https的端口。这样我们在配置mapping关系的时候就要使用底油端口为4433的网址。 阅读全文
posted @ 2013-05-30 11:08 风影极光 阅读(612) 评论(0) 推荐(0)
摘要:在SharePoint 2007中,我希望能够在List中上传chm文件。需要在管理中心-Operation中,打开“Blocked file type”,1,选择管理中心的web application(即global)在blocked文件类型列表中移除chm1,选择target web application,在blocked文件类型列表中移除chm 阅读全文
posted @ 2013-05-14 10:34 风影极光 阅读(698) 评论(0) 推荐(0)
摘要:本文除特别说明外仅SharePoint 2007外,其他部分均为SharePoint 2010 。回收站机制通常情况下,回收站机制都有利于防止内容的永久删除与误删除。通过第一回收站(End user Recycle Bin items),用户可以自己找回已经删除的项目,而不需要管理员介入。例如从备份文件中进行还原等等。雕虫小技:点击”Recycle Bin”后,在浏览器地址栏中输入来清理数据: javascript:emptyItems();注明:在07中可以使用清空回收站来一次性操作。通过第二回收站(Delete from end user Recycle Bin items),还可以给用户 阅读全文
posted @ 2013-04-25 22:08 风影极光 阅读(2944) 评论(1) 推荐(1)
摘要:1、进入SharePoint管理中心,进入SharePoint Services Administrator下查看共享服务实例SSP实例。点击Search Administration。2、点击Crawling下的Reset Crawled Content3、此时我们可以i看到Status为Crawling Full4、当Crasl Log中显示了成功爬网的情况。 阅读全文
posted @ 2013-04-18 15:47 风影极光 阅读(327) 评论(0) 推荐(0)
摘要:我在访问ps1文件的时候,一定要注意访问路径中是否包含空格。包含空格要用单引号''来处理。PowerShell -command Set-ExecutionPolicy "Bypass"set filepath= '%CD%\AppDeployment.ps1'PowerShell -command "& %filepath%"Pause错误的写法:PS C:\> C:\Documents and Settings\Mingle\My Documents\PS\test.ps1The term 'C: 阅读全文
posted @ 2013-04-17 12:55 风影极光 阅读(3203) 评论(0) 推荐(0)
摘要:问题描述:通过SharePoint日志文件查看日志的时候,发现在最新的log文件中包含以下信息ProcessTIDAreaCategoryEventIDLevelMessagewsstracing.exe (0x0938)0x0A1CULS LoggingUnified Logging Serviceuls1MonitorableTracing Service lost trace events.Current value 18.解决办法:重新启动 “Windows SharePoint Service Tracing” service。看来,sharePoint 日志是通过Tracing s 阅读全文
posted @ 2012-11-07 17:23 风影极光 阅读(197) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2012-11-06 10:37 风影极光 阅读(550) 评论(0) 推荐(0)
摘要:$objOu = [ADSI]"WinNT://shni391"$objUser = $objOU.Create("User", "TestComm") #用户名TestComm$objUser.setpassword("Password_1") #密码Password_1$objUser.SetInfo()$objUser.description = "Test Comm" #用户名描述$objUser.SetInfo()$objOu = [ADSI]"WinNT://shni391 阅读全文
posted @ 2011-09-30 09:50 风影极光 阅读(490) 评论(0) 推荐(0)
摘要:关于使用Query实现不同版本的SharePoint迁移- In case of SP 2007 to SP 2010 upgrade , recommended to go with Microsoft upgrade approach instead of third party tools which suits for most requirements. Quest tool has limitation in preserving workflow history, workflow field status and Publishing site whilst most thir 阅读全文
posted @ 2011-09-14 16:32 风影极光 阅读(189) 评论(0) 推荐(0)
摘要:在CodePlex上下载此工具,可以用它来生成Taxonomy的数据结构,并应用在C#代码中。 阅读全文
posted @ 2011-05-25 14:02 风影极光 阅读(244) 评论(0) 推荐(0)