简体   繁体   中英

Determine the SharePoint Application Pool Account Using Sharepoint API?

Is there a way of determining the user login used for the Application Pool identity using the SharePoint API?

Thanks, MagicAndi

This article gives a very useful code snippet to get the application pool identity's username:

string sAppPoolUsername = SPContext.Current.Site.WebApplication.ApplicationPool.Username;  

Update Managed to bring this down to a one-liner, given above.

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 at System.Environment.UserName at that moment.

However, I believe there is a more elegant way to achieve this.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM