Get the Application Pool Identity programmatically

前端 未结 3 2043
自闭症患者
自闭症患者 2020-11-29 06:40

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.

3条回答
  •  我在风中等你
    2020-11-29 07:09

    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.

提交回复
热议问题