上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 121 下一页

2012年3月13日

SharePoint中自定义代码普通用户执行报Access Denied, 管理员执行就OK, 咋办?

摘要: 正解如下: 把出错的代码调用放在SPSecurity.RunWithElevatedPrivileges中, 即可. 举例 SPSecurity.RunWithElevatedPrivileges(delegate(){ // implementation details omitted});MSDN解释该方法的功能如下:Executes the specified me... 阅读全文

posted @ 2012-03-13 18:04 中道学友 阅读(396) 评论(0) 推荐(0) 编辑

记录一个SPS2010中RSS Web Part报错的问题

摘要: SharePoint中的RSS WebPart只要访问需要认证的RSS Feed的时候就会失败.错误信息================“The RSS webpart does not support authenticated feeds”当RSS Web Part试图展示SharePoint站点自身上的列表内容的时候, 如果SharePoint站点不支持匿名访问, 那么上面的错误就会报出来了.那么有没有办法既让RSS web part可以显示站点自身的数据, 同时又需要用户通过认证才能访问站点呢?答案是可以的. 那就是让站点使用Kerberos认证. RSS Web Part只支持一.. 阅读全文

posted @ 2012-03-13 15:08 中道学友 阅读(389) 评论(0) 推荐(0) 编辑

2012年3月12日

利用PsExec提升命令行的安全级别, 绕过组策略执行命令

摘要: 有一次, 我需要在客户的环境上抓取Time Travel Tracing, 简称TTT(dump的一种). 但是就是不能成功抓取. 报错如下: 具体错误信息如下: c:\Debuggers\ttt>tttracer -dumpfull -out e:\tttoutput -attach 3384 Microsoft (R) TTTracer 2.010.40929 (Se... 阅读全文

posted @ 2012-03-12 10:16 中道学友 阅读(3617) 评论(0) 推荐(0) 编辑

2012年3月9日

无法抓DUMP, 报错"Could not attach to process XXXX, NTSTATUS 0xC0000048"

摘要: Problem Description ================= We tried to use ADPlus to capture dump file. But the size of dump files are all under 20K. We tried it many times. Trouble Shoot ================= I tried ... 阅读全文

posted @ 2012-03-09 15:23 中道学友 阅读(10239) 评论(0) 推荐(1) 编辑

2012年3月7日

记一个PowerShell的方法调用

摘要: 没时间系统的学习PowerShell, 只能现学现用. 这段函数调用花了我半个多小时才搞定. 呵呵. 您别笑我, 呵呵. 在这里个例子里, 包括了PowerShell里如下的一些要点: 静态函数的调用方法 枚举类型的指定方法 空值 布尔值 PS C:\Users\administrator.VSAT> $SPUtility = [Microsof... 阅读全文

posted @ 2012-03-07 09:10 中道学友 阅读(1109) 评论(0) 推荐(0) 编辑

2012年2月15日

记录一个问题的解决方法

摘要: 症状 ====================== 无法创建新的web application (CA > Application Management > Create or extend Web application > Create a new Web application) 报错的stack: Object reference not set to an instance of... 阅读全文

posted @ 2012-02-15 15:00 中道学友 阅读(725) 评论(0) 推荐(0) 编辑

STSADM Sync 命令里的 – Ignoreisactive 标志位

摘要: 一个同事遇到了一个问题, 一个MOSS 2007站点集里的部分用户的profile不会被sync. 最开始的时候因为这个站点集所在的content database被设为了prepare to move. 使用下面的命令修改状态. stsadm -o preparetomove -contentdb <server name: database name> -site <URL name... 阅读全文

posted @ 2012-02-15 11:15 中道学友 阅读(377) 评论(0) 推荐(0) 编辑

2012年1月26日

如何对SharePoint里OOB的JavaScript文件进行Debug 之二

摘要: 上一篇文章如何对SharePoint里OOB的JavaScript文件进行Debug 之一?里我们解决了加载debug版的javascript的问题,这里我们将对Ribbon做进一步的研究。 SharePoint 2010的路径C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\G... 阅读全文

posted @ 2012-01-26 17:44 中道学友 阅读(371) 评论(0) 推荐(0) 编辑

如何使用PowerShell修改注册表

摘要: 下面的例子里, PowerShell修改了注册表键值, 完成了Security loop disable, 和loopbackcheck disable. #Security loop disable so that you can look at it on the same machine if(($gchn = Get-ItemProperty "HKLM:\SYSTEM... 阅读全文

posted @ 2012-01-26 09:30 中道学友 阅读(2042) 评论(0) 推荐(0) 编辑

如何使用PowerShell修改Host文件

摘要: 下面的命令, 为Host文件添加了一条记录, 让/sps2010/hostheader1/这个url指向server自己. $url=”http://sps2010/hostheader1/” if( (Get-Content $env:windir\System32\drivers\etc\hosts |?{$_ -imatch "\s$url"}) -eq $null){"`n1... 阅读全文

posted @ 2012-01-26 09:12 中道学友 阅读(2053) 评论(0) 推荐(0) 编辑

上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 121 下一页

导航

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