摘要: 组策略管理器组策略继承新建组策略更新组策略 服务器端 1.cmd命令:gpupdate /force 2.更新ad站点与服务,针对多台ad 客户端 1.cmd命令:gpupdate /force 2.验证结果:gpresult /r ---现实在本页 gpresult /h a.html /f -----导出到a.html 阅读全文
posted @ 2014-01-23 09:24 jindahao 阅读(244) 评论(0) 推荐(0)
摘要: 现象: sharepoint获取exchange邮箱报错:该帐户无权模拟所请求的用户处理办法:1.Open the Exchange Management Shell2.输入: New-ManagementRoleAssignment –Name:impersonationAssignmentName –Role:ApplicationImpersonation –User:administrator administrator就是你要设置的模拟账号,当然你也可以设置其他.Configuring Exchange Impersonation:http://msdn.microsoft.com. 阅读全文
posted @ 2014-01-20 15:25 jindahao 阅读(1431) 评论(1) 推荐(0)
摘要: 现象:文件“/_controltemplates/SPMRB/AllStatBookingsForm.ascx”不存在。分析:此代码在sp2010好用,但是在sp2013则报以上错误。解决办法:添加“15”~/_controltemplates/15/<name_of_usercontrol.ascx金大昊 阅读全文
posted @ 2014-01-07 11:51 jindahao 阅读(231) 评论(0) 推荐(0)
摘要: 现象:A problem occurred while connecting to the server. If the problem continues, contact your administrator.解决办法:方法一:In Server Manager go to Roles->Web Server IIS section->Remove Role Services->Uncheck WebDAV Publishing if it is checked. This will require a reboot of the Server.方法二:1. Click 阅读全文
posted @ 2014-01-03 12:41 jindahao 阅读(255) 评论(0) 推荐(0)
摘要: 现象:点击"关注" 报错。解决办法:1.确保bin文件夹下的.dll版本与web.config一致.2.设置user porfile权限。2.重启iis结果如下: 阅读全文
posted @ 2013-12-25 15:23 jindahao 阅读(331) 评论(0) 推荐(0)
摘要: In SharePoint 2010, the easiest way to transfer documents from one library to another involved using two Explorer Views and dragging and dropping. While this process works, it is incredibly inefficient and slow. The files must literally first be transferred to the user’s workstation from the server, 阅读全文
posted @ 2013-11-28 17:28 jindahao 阅读(398) 评论(0) 推荐(0)
摘要: MobileIncreasingly, a major component of sharing and collaborating involves mobile access. SharePoint 2013 has several key improvements and architectural changes that improve sharing capabilities for the mobile user. The user interface of SharePoint 2013 was rewritten using HTML5. This inherently me 阅读全文
posted @ 2013-11-12 13:42 jindahao 阅读(456) 评论(0) 推荐(0)
摘要: Error:消息5601,级别16,状态1,第1行,由于无法在数据库 'TestNonContainedDB' 上放置锁,ALTER DATABASE 失败。请稍后再试。消息5069,级别16,状态1,第一行ALTER DATABASE 语句失败。对应的英文信息是:Msg 5061, Level 16, State 1, Line 1 ALTER DATABASE failed because a lock could not be placed on database 'TestNonContainedDB'. Try again later. Msg 506 阅读全文
posted @ 2013-10-18 14:52 jindahao 阅读(3317) 评论(0) 推荐(0)
摘要: $FromGroupnames = "001总经理","010101管理本部"$ToGroupname = "test"$SPWeb = Get-SPWeb -Identity http://192.168.0.50:81/$groups = $SPWeb.SiteGroups$count = 0foreach ($group1 in $groups ){ foreach ($group2 in $FromGroupnames) { if($group1.name -eq $group2) { foreach ($user i... 阅读全文
posted @ 2013-10-18 14:27 jindahao 阅读(372) 评论(0) 推荐(0)
摘要: 对于有多级web获取getlist会报错:Exception calling “GetList” with “1” argument$SPWeb = Get-SPWeb -Identity http://192.168.0.50:81/oasite/#注意getlist的写法$list = $SPWeb.GetList("/oasite/Lists/Facilities and Shared Assets")$item = $list.Items| where{ $_.Name -eq "北京10F第五会议室"}$return = $item.RoleA 阅读全文
posted @ 2013-09-25 16:47 jindahao 阅读(385) 评论(0) 推荐(0)
摘要: 导出你的GAC Assembly中的DLLS方法1:CMD命令中,进入C:\windows\assembly,然后XCOPY GAC_MSIL c:\temp /E这样就得到了dlls了,以命名空间来分类。如果想将dlls从集合中分出来,使用XCOPY GAC c:\temp /E方法2:运行中输入:C:\WINDOWS\ASSEMBLY\GAC_MSIL即可打开GAC的正常展示目录方法3:Subst b: %windir%\assembly执行完后,会发现硬盘分区多了个B盘,打开后看到了所有assembly下的DLL,于是在这里就搜到了Microsoft.ReportViewer.Proce 阅读全文
posted @ 2013-09-18 14:38 jindahao 阅读(200) 评论(0) 推荐(0)
摘要: pdf加密方案:1. 值得注意的是SharePoint 2013中对pdf 文件的加密是支持的,实际上是用到了Foxit PDF Reader,参考:http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=10482. 对SharePoint 2010当然可以根据RMS提供的接口扩展加密的类型,如pdf格式。3. 对SharePoint 2010可以采用第三方如:Foxit 也是基于RMS对pdf文档进行加密。控制pdf的读取,打印等功能,客户端需要用Foxit PDF Reader。4. 注意在SharePoint 2010中 阅读全文
posted @ 2012-11-17 11:29 jindahao 阅读(1106) 评论(1) 推荐(0)
摘要: 对扫描格式pdf(图片)的搜索方案:1. 采用第三方sdk,abbyy2. 隐藏识别后的文件3. 搜索结果跳转到源文件jindahao 阅读全文
posted @ 2012-11-17 11:18 jindahao 阅读(268) 评论(0) 推荐(0)
摘要: 注意:修改xslt文件的时候,需要及时看到结果,去掉启用数据缓存。金大昊 阅读全文
posted @ 2012-11-06 17:20 jindahao 阅读(212) 评论(0) 推荐(0)
摘要: Changing 'Go back' link in AccessDenied.aspx under Sharepoint 2010I recently encountered an usability issue in a scenario involving several site collections under the top site collection. Namely, the 'Go back to site' link would return back to the top page of the current site collect 阅读全文
posted @ 2012-10-29 15:18 jindahao 阅读(333) 评论(0) 推荐(0)
摘要: I know converting Infopath form to HTML is pain task. Recently i have worked on one assignment where i need to send infopath form as email. So sending browser based infopath as email content is not possible so i decided to convert Infopath form to HTML and attach to email message. I have tried many 阅读全文
posted @ 2012-10-25 16:02 jindahao 阅读(680) 评论(0) 推荐(0)
摘要: 现象:workspace无法同步数据,弹出提示Groove.exe错误解决办法:创建根网站集。 阅读全文
posted @ 2012-10-17 17:37 jindahao 阅读(186) 评论(0) 推荐(0)
摘要: 权限级别“打开项目”影响搜索结果。 阅读全文
posted @ 2012-10-10 13:53 jindahao 阅读(140) 评论(0) 推荐(0)
摘要: 现象:原因:数据库磁盘已满。 阅读全文
posted @ 2012-09-28 14:08 jindahao 阅读(269) 评论(0) 推荐(0)
摘要: 爬网增加了倒计时,其实不是太准呀。不过可以参考。金大昊 阅读全文
posted @ 2012-09-22 19:17 jindahao 阅读(253) 评论(0) 推荐(0)