上一页 1 ··· 5 6 7 8 9 10 11 12 下一页
摘要: 这里总结了关于使用ECMAscript对象模型来操作Goup与User的常用情况,内容如下: 1、取得当前Sharepoint网站所有的Groups 2、获取当前登录用户的Title与所属Group 3、获取指定Group下的所有Users 4、获取所有的Groups的所有Users的特定信息 ... 阅读全文
posted @ 2015-05-29 15:04 KenmuHuang 阅读(605) 评论(0) 推荐(0)
摘要: 问题1:在SharePoint 2013页面中使用Javascript 事件window/document.onload/ready时,你会发现处理onload/ready事件的代码根本不能执行。问题2:使用ECMAScript的方式客户端模型调用SP.ClientContext(),出现脚本错误;... 阅读全文
posted @ 2015-05-29 14:49 KenmuHuang 阅读(280) 评论(0) 推荐(0)
摘要: 问题:Personal site's photo can't correct display in the videos pageThe url address of personal site's photo is exist surplus characters.The correct situ... 阅读全文
posted @ 2015-05-29 14:45 KenmuHuang 阅读(303) 评论(0) 推荐(0)
摘要: 问题:为了去掉Photo Gallery的水平滚动效果,更改为根据内容进行自适应宽度多行显示效果Promoter link --> photo galleryNot horizontal scroll the photo解决方式:1、编辑状态下(Edit Page)添加内容编辑器部件(Content... 阅读全文
posted @ 2015-05-29 14:35 KenmuHuang 阅读(498) 评论(0) 推荐(0)
摘要: 此随笔记录自2013年做过的一个SharePoint 2013的HK项目,效果图里面只是测试数据,仅供参考。开发用于SharePoint 2013网站的母版页,必须掌握的知识有:(1)熟悉SharePoint 2013母版页生成原理和操作(2)熟练前端知识(涉及的CSS+DIV和JavaScript... 阅读全文
posted @ 2015-05-29 14:16 KenmuHuang 阅读(344) 评论(0) 推荐(0)
摘要: 最近在SharePoint 2013的网站上发现,没有看到有切换不同用户登录的入口,在SharePoint 2010中是存在这样的菜单项能够很方便的进行用户切换的,不知道为什么,SharePoint 2013默认竟然没有。如下图:这个功能我觉得还是有必要存在的,所以我们需要给它添加一个“以其他用户身... 阅读全文
posted @ 2015-05-29 13:48 KenmuHuang 阅读(315) 评论(0) 推荐(0)
摘要: 在SharePoint 2013默认网站页面中,很多时候,我们需要隐藏左边快速启动菜单栏,这时我们可以通过下面的样式来实现隐藏它。和SharePoint 2010不太一样,方法改了,不过性质是一样的。 阅读全文
posted @ 2015-05-29 13:40 KenmuHuang 阅读(434) 评论(0) 推荐(0)
摘要: 大家在使用SharePoint2013的时候是否发现,地址栏中显示的URL不再变得友好,多出这么一段“_layouts/15/start.aspx#”,怎么看怎么别扭。如果要取消这段路径的显示,需要deactivateMinimal Download Strategyfeature,方法:Site ... 阅读全文
posted @ 2015-05-29 13:35 KenmuHuang 阅读(444) 评论(0) 推荐(0)
摘要: 1 $snapin = Get-PSSnapin | where-object { $_.Name -eq 'Microsoft.SharePoint.PowerShell' } 2 if ($snapin -eq $null){ 3 write-host "Loading SharePoint... 阅读全文
posted @ 2015-05-29 13:10 KenmuHuang 阅读(438) 评论(0) 推荐(0)
摘要: 内容仅供参考,需结合实际需求来处理。=========SharePoint 环境下运行ps1文件,ps1内容如下======= 1 Set-ExecutionPolicy ByPass 2 Add-PSSnapin Microsoft.SharePoint.PowerShell 3 4 Add-... 阅读全文
posted @ 2015-05-29 13:02 KenmuHuang 阅读(403) 评论(0) 推荐(0)
摘要: 备份网站集:1 Backup-SPSite -Identity http://win2012sp2013:1000/ -Path "C:\KenmuTemp\Test File\Temp\siteCollectionBackup.bak" 阅读全文
posted @ 2015-05-29 12:56 KenmuHuang 阅读(402) 评论(0) 推荐(0)
摘要: 导出网站,例如:1 Export-SPWeb -Identity http://win2012sp2013:1000/Hopewell_Portal/ -Path "C:\KenmuTemp\Test File\Temp\siteExport.cmp" -IncludeUserSecurity -I... 阅读全文
posted @ 2015-05-29 12:53 KenmuHuang 阅读(794) 评论(0) 推荐(0)
摘要: 在编辑SharePoint后台XML架构时常需要在ID属性上填写一个GUID (Globally Unique Identifiers 全局唯一标识的简称);我们可以打开SharePoint管理控制台,输入以下PowerShell指令:1 [System.Guid]::NewGuid().toSt... 阅读全文
posted @ 2015-05-29 12:46 KenmuHuang 阅读(1446) 评论(0) 推荐(0)
摘要: 由于博客园随笔内容有限制,不得不拆分为几篇随笔来发布,o(╯□╰)o了续上一篇随笔:Upgrade site collection from SP2010 to SP2013(Part 3)前两篇随笔地址也一并附上:Upgrade site collection from SP2010 to SP2... 阅读全文
posted @ 2015-05-29 11:50 KenmuHuang 阅读(220) 评论(0) 推荐(0)
摘要: 续上一篇随笔:Upgrade site collection from SP2010 to SP2013(Part 2)Configure a job to executeincrementalcrawl every day.Try to search information in our port... 阅读全文
posted @ 2015-05-29 11:36 KenmuHuang 阅读(188) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 下一页
如果您看完本篇博文,觉得对您有所收获,请点击右下角的 [推荐]
如果您想转载,请注明出处(原创内容,请尊重个人劳动成果)
如果您有任何意见或建议,欢迎留言
感谢您的阅读,敬请关注我的后续博客文章