6

我在 PowerShell 和 C# 中执行模拟时遇到了一个有点奇怪的错误。执行以下代码不会显示任何错误。

PSObject result = null;
using (PowerShell powershell = PowerShell.Create())
{
    RunspaceConfiguration config = RunspaceConfiguration.Create();
    powershell.Runspace = RunspaceFactory.CreateRunspace(config);
    powershell.Runspace.Open();
    powershell.AddScript(String.Format(CmdletMap[PSVocab.OsBootTime],
                         this.ComputerName));
    result = powershell.Invoke().First();
    powershell.Runspace.Close();
}

return DateTime.Parse(result.ToString());

其中的 PS 脚本CmdletMap[PSVocab.OsBootTime]很简单:

$info = Get-WmiObject -Class Win32_OperatingSystem -ComputerName $computer
        ; $info.ConvertToDateTime($info.LastBootUpTime)

上面的 C# 代码在本地运行良好。但是,一旦我有了与 Windows 模拟相同的块,如下所示:

WindowsIdentity ImpersonatedIdentity = new WindowsIdentity(ImpersonateUserName);
WindowsImpersonationContext impersonatedContext
    = ImpersonatedIdentity.Impersonate();
try
{
PSObject result = null;
using (PowerShell powershell = PowerShell.Create())
{
    RunspaceConfiguration config = RunspaceConfiguration.Create();
    powershell.Runspace = RunspaceFactory.CreateRunspace(config);
    powershell.Runspace.Open();
    powershell.AddScript(String.Format(CmdletMap[PSVocab.OsBootTime],
                             this.ComputerName));
    result = powershell.Invoke().First();
    powershell.Runspace.Close();
}

return DateTime.Parse(result.ToString());
} catch (Exception ex) { // do logging here } 

我得到以下异常:

FileNotFoundException: C:\Windows\assembly\GAC_MSIL\System.Management.Automation\1.0.0.0__31bf3856ad364e35\System.Management.Automation.dll

并且调试表明它在RunspaceConfiguration.Create(). 不知道为什么。

虽然 DLL 已经在 GAC 中注册,并且在项目本身中被引用。还确认路径和版本是正确的。

参考资料来自:

有人可以对此有所了解吗?

4

1 回答 1

0

您模拟的用户可能没有足够的权限来访问 GAC 中必要的 powershell 文件。

作为快速尝试,尝试授予用户(您正在模拟)本地管理员权限,以查看它是否有效。它可以工作,撤销本地管理员权限并根据需要添加文件权限。

于 2011-07-22T07:08:10.980 回答