使用 Sharepoint API 确定 SharePoint 应用程序池帐户?
有没有办法使用 SharePoint API 确定用于应用程序池身份的用户登录名?
谢谢,魔法安迪
Is there a way of determining the user login used for the Application Pool identity using the SharePoint API?
Thanks, MagicAndi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这篇文章提供了非常有用的代码片段,用于获取应用程序池身份的用户名:
更新
设法将其简化为上面给出的一句话。
This article gives a very useful code snippet to get the application pool identity's username:
Update
Managed to bring this down to a one-liner, given above.
一种方法是 - 当您使用
SPSecurity.RunWithElevatedPrivileges
运行代码时,它实际上是在应用程序池的帐户下执行的。此时您所要做的就是查看System.Environment.UserName
。然而,我相信有一种更优雅的方式来实现这一点。
One way to do it - when you run your code with
SPSecurity.RunWithElevatedPrivileges
, it is actually executed under the application pool's account. All you have to do is look atSystem.Environment.UserName
at that moment.However, I believe there is a more elegant way to achieve this.