Get the Application Pool Identity programmatically
Asked Answered
V

3

41

How do I get the identity of an appPool programmatically in C#? I want the application pool user and NOT the user who is currently logged in.

Varner answered 11/4, 2012 at 6:44 Comment(0)
M
61

You could use System.Security.Principal.WindowsIdentity.GetCurrent().Name to identify the Identity in which the current application is running. This link provides a nice utility which displays the identity under which the aspx is run.

Maxilliped answered 11/4, 2012 at 7:7 Comment(4)
If I change the appPool identity in the IIS Manager shouldn't System.Security.Principal.WindowsIdentity.GetCurrent().Name get the changed value?Varner
Ok for someone out there that might be struggling, this is the code I used to get the username that started the AppPool (it's identity): ApplicationPool pool = serverManager.ApplicationPools["YoutAppPoolName"]; pool.ProcessModel.IdentityType = ProcessModelIdentityType.SpecificUser; string user = pool.ProcessModel.UserName;Varner
@Varner what is serverManager ?Curtice
It is present in C:\Windows\System32\inetsrv\Microsoft.Web.Administration.dll. var serverManager = new ServerManager();Antistrophe
C
9

You need to make a reference to Microsoft.Web.Administration (in Microsoft.Web.Administration.dll). Microsoft.Web.Administration.dll is located in C:\Windows\System32\inetsrv.

//Add this to your using statements:
using Microsoft.Web.Administration;

//You can get the App Pool identity like this:    
public string GetAppPoolIdentity(string appPoolName)
{
    var serverManager = new ServerManager();

    ApplicationPool appPool = serverManager.ApplicationPools[appPoolName];
    appPool.ProcessModel.IdentityType = ProcessModelIdentityType.SpecificUser;
    return appPool.ProcessModel.UserName;            
}
Clansman answered 30/8, 2017 at 10:55 Comment(1)
I used this code and it returns blank string. What could be the reason? I have just programmatically created an application pool and I am using the same pool name that I just created.Aflame
P
3

Another possibility that seems to work OK for me and does not require installation of the Microsoft.Web.Administration package and its legion dependencies:

string appPoolUserIdentity = WindowsIdentity.GetCurrent().Name;

From forums.asp.net

Permanganate answered 8/7, 2020 at 12:58 Comment(2)
Nice answer, but really the same suggestion as the accepted answer, isn't it? The accepted answer says to use: System.Security.Principal.WindowsIdentity.GetCurrent().NameLuminesce
It may equate to the same. I mentioned it because it seemed to be more simple to deploy without all the Using's.Permanganate

© 2022 - 2024 — McMap. All rights reserved.