0

我正在使用 Windows authentification 在 ASP.NET C# 中创建 MVC Intranet 应用程序,并且我需要使用用户凭据运行外部 powershell 脚本。

我添加了我的 web.config 文件。

<system.web>
    <authentication mode="Windows" />
    <identity impersonate="true"/>
</system.web>
<runtime>
    <!--http://blogs.msdn.com/b/powershell/archive/2007/09/10/impersonation-and-hosting-powershell.aspx-->
    <legacyImpersonationPolicy enabled="false"/>
    <alwaysFlowImpersonationPolicy enabled="true"/>
</runtime>

在我的控制器中

        // http://support.microsoft.com/kb/306158
        System.Security.Principal.WindowsImpersonationContext impersonationContext;
        impersonationContext = ((System.Security.Principal.WindowsIdentity)User.Identity).Impersonate();

        ViewBag.Message = "User Powershell : " + PSRunner.ExecuteScript("Whoami;") + "   > user C# : " + System.Security.Principal.WindowsIdentity.GetCurrent().Name + "    User Authentifier : " + User.Identity.Name + " type " + User.Identity.GetType();

        impersonationContext.Undo();

但我总是在PowerShell中使用IIS用户

User Powershell : iis apppool\www.site.com > user C# : DOMAIN\alopez User Authentifier : DOMAIN\alopez type System.Security.Principal.WindowsIdentity
4

1 回答 1

1

我不知道 PSRunner 如何初始化 powershell 运行时,但是作为其他用户使用启动 powershell 进程呢:Runas

于 2013-03-30T21:08:27.747 回答