随笔分类 -  SPS 2007-Misc1

关于SharePoint 2007的文章-第一部分
SharePoint Foundation Server(WSS4)的新特性
摘要:新名字 ====== WSS不再叫WSS了, 它的新名字是Microsoft SharePoint Foundation. 不熟悉SharePoint的人常常会问WSS和MOSS的区别, 这种情形以后估计不会有了. 这个WSS的这个新名字很有说明性. 呵呵. 仅支持64bit ====== 告别32位吧, sharepoint不行, sql后台也不行. Shared Service下移到WSS... 阅读全文

posted @ 2010-04-21 20:08 中道学友 阅读(531) 评论(0) 推荐(0) 编辑

关于跨语言站点搜索结果非预期的问题
摘要:重点摘抄如下: Language Considerations for SharePoint Portal Server Search Service Indexing ========== For documents that have a locale ID (LCID) and a language ID that are supported by the SharePointPSSe... 阅读全文

posted @ 2010-04-20 22:36 中道学友 阅读(242) 评论(0) 推荐(0) 编辑

巧用find, 帮你快速查找想要的stsadm命令
摘要:stsadm命令的种类非常多, 光(-o后面带的字符串)operation就几十个, 非常难以记忆. 今天学到一招, 跟大家分享. 在比较新的dos中, 添加了类似Unix系统中的pipe机制. 所谓pipe机制是一种跨进程的处理机制, 它能够允许一个进程的标准输出作为另一个进程的标准输入(标准输入输出指的是屏幕上的输入输出). 通过这种方式, 我们就可以把一系列的命令给'pipe'到一起, ... 阅读全文

posted @ 2010-04-19 10:47 中道学友 阅读(280) 评论(0) 推荐(0) 编辑

SSP删不掉, 怎么办?
摘要:如果在管理中心的页面里删不掉你的SSP, 你可以尝试运行下面的命令: stsadm -o deletessp -title "<SSP Name>" –force 如果您想连与之有关系的数据库也一并删除, 你可以使用下面的命令: stsadm -o deletessp -title "<SSP Name>" –force –deletedatabases 如果由于你的某... 阅读全文

posted @ 2010-04-14 15:37 中道学友 阅读(243) 评论(0) 推荐(0) 编辑

与SharePoint中的PeoplePicker有关的STSADM命令
摘要:跨Forest, 跨domain的People Picker查询===================peoplepicker-searchadforests在执行跨foreast的people picker用户查询的时候, 可能会要使用下面的命令:举例: stsadm.exe -o setproperty -url http://server:port -pn "peoplepicker-searchadforests" –pv "forest:foo.corp.com;domain:bar.foo.corp.com", domainname\Logi 阅读全文

posted @ 2010-04-08 19:37 中道学友 阅读(1009) 评论(0) 推荐(0) 编辑

记录一个关于在event receiver中执行页面跳转的问题
摘要:问题描述 =========== 想要在某个列表添加完一个列表项之后跳转到某个特定的页面上. 这个功能可以使用Event Receiver来做到. 进一步的问题 ===========如果你使用ItemAdded, 你会发现你的HttpContext.Current对象是null. ItemAdded和ItemUpdated属于异步(asynchronous )事件, 而HttpContext对... 阅读全文

posted @ 2010-04-07 22:04 中道学友 阅读(347) 评论(0) 推荐(0) 编辑

SharePoint 2007支持的Version to Version Upgrade
摘要:在SharePoint Team Blog上贴出了version to version升级的路径表, 非常简练. 那些是可以做的, 那些是不能做的, 一目了然. 更多信息请查看原文. 信息来源: http://blogs.msdn.com/sharepoint/archive/2006/11/14/version-to-version-supported-upgrade-paths.aspx 阅读全文

posted @ 2010-04-07 21:51 中道学友 阅读(149) 评论(0) 推荐(0) 编辑

把32位的SharePoint服务器场迁移到64位, 应该怎么做?
摘要:总体步骤如下: 1. 迁移已经存在了的数据库服务器到新的数据库服务器. 先迁移这一层的目的是避免可能发生的一些由64位系统对32位系统执行查询或写入操作所引起的性能问题. 2. 迁移WFE服务器到64位环境下. 准备工作: 1. 重新编译已经存在的32位的应用程序和自定义的程序集(web part, event receiver). 2. 记录下你的场中的配置 与SSP关联的web appl... 阅读全文

posted @ 2010-04-06 22:06 中道学友 阅读(416) 评论(0) 推荐(0) 编辑

排查SharePoint中的orphaned sites
摘要:你可以使用下面的命令来找到orphaned sites.stsadm -o enumallwebs -databasename M4_Content_1 -databaseserver M4 > webs.txt如果你在输出结果中发现哪个Site的InSiteMap属性为False, 那么这个站点就是orphaned的了.另一个检测方法是运行stsadm命令:stsadm -o databaserepair -url http://<URL_of_WindowsSharePointServices_Site> -databasename <name of databas 阅读全文

posted @ 2010-04-06 14:15 中道学友 阅读(418) 评论(0) 推荐(0) 编辑

安装Reporting Service和MOSS站点在相同端口的IIS站点上
摘要:错误信息: Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file a... 阅读全文

posted @ 2010-04-02 16:53 中道学友 阅读(368) 评论(0) 推荐(0) 编辑

64位的机器上VS2008不能使用SharePoint的workflow template
摘要:下面的文字摘自VS2008的readme, 官方文档 =========================== Using Office SharePoint workflow templates on a 64-bit operating system is unsupported and causes an exception. Visual Studio 2008 throws two ex... 阅读全文

posted @ 2010-04-02 16:19 中道学友 阅读(603) 评论(3) 推荐(0) 编辑

SharePoint与RMS集成了的文档库中的IRM配置详解
摘要:英文版的配置的截图如下: 可对照下面的文章中的配置查看详细信息: Apply Information Rights Management to a list or library http://office.microsoft.com/en-us/sharepointserver/HA101541481033.aspx 在下面的文章中对RMS与SharePoint集成的一些概念也进行了介绍. I... 阅读全文

posted @ 2010-04-02 14:34 中道学友 阅读(1050) 评论(0) 推荐(0) 编辑

记一次向MOSS服务器场中添加一台机器的经过
摘要:我有一个MOSS的服务器场, service pack的版本已经打到了SP2. 现在我多了一台机器, 于是我想把这台机器加入到MOSS的场中, 以便增强一下性能. 首先面临的问题就是安装. 原则上来说, 应该使用split stream的安装方式. 即: 把现有服务器场上安装了的所有的service pack, hot fix都解压, 然后按照它们发布的顺序依次拷贝到Updates文件夹下面. ... 阅读全文

posted @ 2010-03-31 23:00 中道学友 阅读(301) 评论(0) 推荐(0) 编辑

查看SharePoint 2007中站点的存储空间和配额
摘要:今天一个朋友问起我, 如何查看它的站点的空间使用情况. 首先, 你需要在管理中心中给站点指定一个配额(Quota). 1. 在管理中心中先建立一个quota template. 2. 点击Site collection quotas and locks. 选中一个site collection. 3. 给这个站点集指定一个quota template. 4. 然后在站点集的网站设置页面中, 就... 阅读全文

posted @ 2010-03-31 22:00 中道学友 阅读(2192) 评论(0) 推荐(0) 编辑

WFE与Index服务器之前的通讯
摘要:在WFE上打开SSP的搜索配置页面, 可以查看爬网等与搜索相关的状态. 我们知道, WFE只是一个WEB前端, 其上并没有运行着MOSS的搜索组件, 显然, 要显示它所不知道的组件的状态, 它需要到运行着这个组件的地方去捞取数据, 然后显示给用户. 运行着搜索的重要组件就是Index角色的服务器. WFE是如何获取Index服务器上的爬网等信息的呢? 答案是WebService. 在Index... 阅读全文

posted @ 2010-03-31 17:32 中道学友 阅读(419) 评论(0) 推荐(0) 编辑

Error: A web configuration modification operation is already running
摘要:错误信息 =========== Exception: System.InvalidOperationException: A web configuration modification operation is already running. at Microsoft.SharePoint.Administration.SPWebService.ApplyWebConfigModifica... 阅读全文

posted @ 2010-03-25 00:10 中道学友 阅读(572) 评论(0) 推荐(0) 编辑

WSS 3.0和MOSS 中的Web Parts
摘要:Web Parts in common with WSSv3 ============================= Web Part 名字 功能简介 Content Editor Web Part Use for formatted text, tables, and images. Form Web Part Use to connect simple form controls to... 阅读全文

posted @ 2010-03-24 22:53 中道学友 阅读(483) 评论(0) 推荐(0) 编辑

WSS 3.0 在默认的情况下不存在IRM的protector.
摘要:如果你在WSS3.0中配置SharePoint与RMS的集成, 会发现即使完成了所有配置, 从WSS3.0站点上下载的文档也不会受到保护. 这是因为OOB的WSS是没有IRM protector的. http://technet.microsoft.com/en-us/magazine/2009.05.sharepoint.aspx 阅读全文

posted @ 2010-03-24 21:16 中道学友 阅读(277) 评论(0) 推荐(0) 编辑

如何访问隐藏的列表- workflow history list
摘要:默认情况下, 这个隐藏的列表名字为workflow history. 如果你为你的workflow指定了新的history列表的话, 你需要先进入你的列表, 点击workflow settings, 然后, 点击你的workflow, 其中会包括你的workflow history列表的名字, 例如test History. 然后你需要在用如下的方式来访问. http://servername... 阅读全文

posted @ 2010-03-24 16:12 中道学友 阅读(373) 评论(0) 推荐(0) 编辑

SharePoint与SQL Server Reporting Service的集成
摘要:下面的文章中包含可以下载add-in的地址, 以及一个htm格式的说明文件. Microsoft SQL Server 2008 Reporting Services Add-in for Microsoft SharePoint Technologies http://www.microsoft.com/downloads/details.aspx?familyid=200FD7B5-DB7C... 阅读全文

posted @ 2010-03-24 12:57 中道学友 阅读(361) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

技术追求准确,态度积极向上

点击右上角即可分享
微信分享提示