ImportPSModule故障检测

时间:2012-12-18 08:49:31

标签: c# .net powershell pssnapin runspace

我正在尝试使用InitialSessionState.ImportPSModule来导入Powershell模块。

我有兴趣知道模块的导入是否由于任何原因(例如找不到文件等)而失败。将这些代码放在try块中不会在出现故障时引发异常,并且该函数似乎无声地失败并且如果无法导入模块则继续。

如果导入失败,有没有办法在代码中收到警报?

我正在尝试做类似以下的事情。在下面的代码中,模块“TestModule1234”不存在。 catch块没有捕获异常。

注意:这只是原型测试代码,因此请忽略任何与生产代码相关的违规行为。

try
{
    //Initializing the PowerShell runspace
    InitialSessionState psSessionInitialState = InitialSessionState.CreateDefault();


    LogFile.Log("Importing Module TestModule1234");
    psSessionInitialState.ImportPSModule(new[] { "TestModule1234" });

    LogFile.Log("Creating Powershell Runspace");
    m_PoshRunspace = RunspaceFactory.CreateRunspace(psSessionInitialState);
}
catch (System.Exception ex)
{
    LogFile.Log("Failed to create a Powershell Runspace");
    LogFile.Log(ex.ToString());
    throw;
}

1 个答案:

答案 0 :(得分:4)

由于某些原因,丢失的模块不会被视为致命错误。但他们是 仍然记录错误。为了解决问题,请做:

  1. Open()打开您的运行空间。为了捕获其他异常,仍然在try块中执行此操作,它们是可能的,我在实践中遇到过这样的情况。
  2. 获取标准错误列表($Error)并在打开特定的"缺失模块后对其进行分析"错误或其他错误。
  3. 以下是PowerShell中仅使用.NET方法的工作示例,因此它实际上已转换为C#。此脚本不会失败(不会抛出异常),但它会显示作为变量获取的错误 Error

    $psSessionInitialState = [System.Management.Automation.Runspaces.InitialSessionState]::CreateDefault();
    
    "Importing Module TestModule1234"
    $psSessionInitialState.ImportPSModule(@("TestModule1234"))
    
    "Creating PowerShell Runspace"
    $PoshRunspace = [System.Management.Automation.Runspaces.RunspaceFactory]::CreateRunspace($psSessionInitialState)
    
    "Opening PowerShell Runspace"
    $PoshRunspace.Open()
    
    "Getting Runspace Error"
    $PoshRunspace.SessionStateProxy.PSVariable.GetValue('Error')
    

    <强>输出

      

    导入模块TestModule1234创建Powershell Runspace Opening   Powershell Runspace获取Runspace错误导入模块:   指定的模块&#39; TestModule1234&#39;没有加载因为无效   模块文件在任何模块目录中找到。       + CategoryInfo:ResourceUnavailable:(TestModule1234:String)[Import-Module],FileNotFoundException       + FullyQualifiedErrorId:Modules_ModuleNotFound,Microsoft.PowerShell.Commands.ImportModuleCommand