IIS Application pool PID

前端 未结 9 2121
臣服心动
臣服心动 2020-12-02 11:06

is anyone familiar with a way to get the Application pool that is associated with a process ID ? I am using Win32_Process to query the W3WP services and return the PID now

相关标签:
9条回答
  • 2020-12-02 11:33
    ServerManager serverManager = new ServerManager();
    ApplicationPoolCollection applicationPoolCollection = serverManager.ApplicationPools;
    

    Try working with this and it should get you what you need.

    0 讨论(0)
  • 2020-12-02 11:33

    Open IIS Manager ( Run > Inetmgr ), Select root level from left site navigation tree and from “Features View Panel” select “Worker Processes”

    Click on the “Worker Processes” to get details of all worker process which are currently running

    From this list you will get application pool name, process id

    0 讨论(0)
  • 2020-12-02 11:34

    On Windows Server 2008 this has changed.

    in systemroot\system32\inetsrv you find the appcmd.exe

    using

    appcmd list wp

    you get a list of all the worker processes and which apppool they are serving.

    You might need to run this in a shell with Administrator privileges.

    0 讨论(0)
  • 2020-12-02 11:37

    You can use task manager to view the user name under which the process runs (which in general is the same as the application pool name) and the process ID, but you have to turn on these columns in task manager, and it also assumes the user name that the process runs under is the same as the application pool name (which is the default as far as I know, unless one is using Sharepoint and the like).
    Also note that all methods listed in this page might only display the processes that are currently running, which means that if your particular process has shut down due to idle time you have first to use the site in order to bring the process up in the list, and in your case it means you should first access all sites to make sure that the process associated with them is runing.

    0 讨论(0)
  • 2020-12-02 11:37

    This should do it.

    public string getAppPoolName(int pid)
    {            
        ServerManager serverManager = new ServerManager();
    
        ApplicationPoolCollection apc = serverManager.ApplicationPools;
    
        foreach (var app in apc)
        {
            var workers = app.WorkerProcesses;
    
            foreach (var w in workers)
            {                   
                if (w.ProcessId == pid)
                {
                    return app.Name;
                }
            }
        }
    
        return string.Empty;
    }
    
    0 讨论(0)
  • 2020-12-02 11:39

    If you are just using command line to figure it out ad-hoc you can do this too:

    The script is already placed in systemroot\system32 on Windows Server 2003 so simply go to your Command Prompt and type in iisapp.vbs (the .vbs is optional) and you'll have an instant list of all the App Pool information you've always wanted to know. You may need to type cscript iisapp.vbs if CScript isn't your default WSH script host.

    Let's see an example of the output:

    W3WP.exe PID: 1468 AppPoolId: AppPoolForSite1.com
    W3WP.exe PID: 3056 AppPoolId: AppPoolForSite2.com
    W3WP.exe PID: 1316 AppPoolId: AppPoolForSite3.com
    

    Direct from the horse's mouth, Microsoft documents this.

    0 讨论(0)
提交回复
热议问题