welcome to Qijie's Blog 薛其杰

随笔分类 -  SharePoint

安装SharePoint Server的主机重命名
摘要:今天我头脑一热, 把安装在WS 2008 R2上的有Stand-alone SharePoint Server 2010的机器重命名了一下, 结果SharePoint Central Admin都进不去了, 提示"" cannot connect to configuration database".然后想使用Rename-SPServer -Identity oldservername -name newservername 来更正ServerName, 发现提示 The farm is unavailable.最后是使用stsadm解决的stsadm -o r 阅读全文
posted @ 2013-08-01 13:42 零点零一 阅读(267) 评论(0) 推荐(0)
SharePoint 2010: Change welcome page on PowerShell
摘要:摘要: SharePoint 2010之后呢, 建立一个 Team Site会有两个 default page, 分别是 Sitepages/home.aspx and default.aspx. 这两个是不一样的, 我遇到过一个问题是, 每当我输入webapplication的 url 之后, 地址会自动定位到SitePages/home.aspx, 由于某些原因, 我的这个页面是不能显示了。 但是default.aspx还是可以正常显示的,所以我通过使用powershell把默认page 修改成了default.aspx.正文:Via Power Shell$site = Get-SPSi 阅读全文
posted @ 2013-07-31 15:15 零点零一 阅读(429) 评论(0) 推荐(0)
FW: Solving SharePoint Server -503. The service is unavailable, After installation
摘要:Installed: SharePoint Server 2010 for Internet Enterprise Beta (x64) On: Windows Server 2008 Standard (x64) on 64 bit hardwareAttempts to access the Central Administration console led to IIS returning 503. The service is unavailableAnd this error was found in the Application logThe Module DLL 'C 阅读全文
posted @ 2013-07-31 11:50 零点零一 阅读(413) 评论(0) 推荐(0)
PowerShell添加和部署WSP
摘要:SharePoint PowerShell在SharePoint Product列表里边,然后以管理员权限启动。1. 添加Solution 到 SharePoint Farm.Add-SPSolution -LiteralPath "c:\ilt.wsp"2.获取已添加到SharePoint Farm的Solutions.Get-SPSolution3. 部署Solution 到SharePoint。部署Solution到SharePoint Farm中:Install-SPSolution -Identity ilt.wsp -GACDeploymentpossible 阅读全文
posted @ 2013-07-12 18:24 零点零一 阅读(3291) 评论(1) 推荐(1)
使用SharePoint Designer 设计简单工作流
摘要:使用SharePoint Designer设计简单工作流我们来设计一个基于List的简单工作流, 我们使用的List信息如下:Name: Test_WFColumns: Title, Task, Description, Status, Assigned To我们要实现的功能是, 每当当前项目更新时, 检查Status是否是已启动状态, 如果是 要向下一个任务的执行者发送邮件.Status的已启动状态包括Step1, Step2, Step3.开始: 使用Designer 2010 打开Test_WF. 在Workflows组件中点击New...2. In Create List Workfl 阅读全文
posted @ 2011-05-30 17:39 零点零一 阅读(396) 评论(0) 推荐(0)
转:MOSS 中的计算公式
摘要:可以在列表或库的计算栏中使用下面的示例。不包含栏引用的示例可用于指定栏的默认值。条件公式可以使用下面的公式测试语句的条件并返回值“Yes”或“No”,或者测试“OK”或“Not OK”等替代值,或者返回代表空值的空白或短划线。检查一个数字是大小还是小于另一个数字使用 IF 函数进行此比较。Column1Column2公式说明(可能的结果)150009000=[Column1]>[Column2]Column1 大于 Column2 吗?(Yes)150009000=IF([Column1]<=[Column2], "OK", "Not OK" 阅读全文
posted @ 2011-05-13 16:59 零点零一 阅读(469) 评论(0) 推荐(0)
List Action里边的menu item会随着IE位版本的不同而有区别
摘要:今天给同事解决疑问, 她同事使用了IE-32位和IE-64位, 奇怪的是SP2007 的List的 Action menu下边的item在64bit的IE中会比32bit的IE中少两个项目-Edit in DataSheet 和 Sync To Computer 阅读全文
posted @ 2011-04-26 21:29 零点零一 阅读(196) 评论(0) 推荐(0)
SP2010: Configure SSL Security for Central Administration
摘要:Configure SSL Security in SP2010. make sure the SSL Security is not configured1. Open Central Administration, on left Quick Launch click Security, in General Security section, click Configure managed ... 阅读全文
posted @ 2010-07-07 10:15 零点零一 阅读(398) 评论(0) 推荐(0)
SharePoint介绍性文章
摘要:MSDN 上的一篇介绍SP的中文article, 很好!!!探寻 SharePoint Services 中为开发人员提供的重大改进功能 阅读全文
posted @ 2010-01-08 10:47 零点零一 阅读(299) 评论(0) 推荐(0)
Disable Sharepoint 2007 show as System Account when system admin login
摘要:Hi,Whenyou login with your username & password into sharepoint (2007) site, it displays as a "System Account" instead ofyour username orfull name on the top right corner of the website. What ever ... 阅读全文
posted @ 2010-01-07 12:54 零点零一 阅读(442) 评论(0) 推荐(0)
SharePoint: Feature 定制 实例
摘要:Feature Name: NDPTemplate1Class Library Name: NDPTemlate1.dll1.建立dll, 项目命名为NDPTemplate12.引入Microsoft.SharePoint3.加入Template,Features,NDPTemplate1文件夹, 层次为:Template\Features\NDPTemplate14.在NDPTemplate1文... 阅读全文
posted @ 2009-10-26 14:08 零点零一 阅读(495) 评论(0) 推荐(0)