从C#调用Powershell函数

时间:2010-11-14 19:53:27

标签: c# powershell cmdlets

我有一个包含多个Powershell功能的PS1文件。我需要创建一个静态DLL,读取内存中的所有函数及其定义。然后,当用户调用DLL并传入函数名称以及函数的参数时,它会调用其中一个函数。

我的问题是,是否可以这样做。即调用已读取并存储在内存中的函数?

由于

2 个答案:

答案 0 :(得分:12)

这里是上述代码的等效C#代码

string script = "function Test-Me($param1, $param2) { \"Hello from Test-Me with $param1, $param2\" }";

using (var powershell = PowerShell.Create())
{
    powershell.AddScript(script, false);

    powershell.Invoke();

    powershell.Commands.Clear();

    powershell.AddCommand("Test-Me").AddParameter("param1", 42).AddParameter("param2", "foo");

    var results = powershell.Invoke();
}

答案 1 :(得分:5)

这可能并且不止一种方式。这可能是最简单的一个。

鉴于我们的函数在MyFunctions.ps1脚本中(本演示只有一个):

# MyFunctions.ps1 contains one or more functions

function Test-Me($param1, $param2)
{
    "Hello from Test-Me with $param1, $param2"
}

然后使用下面的代码。它在PowerShell中,但它完全可以转换为C#(你应该这样做):

# create the engine
$ps = [System.Management.Automation.PowerShell]::Create()

# "dot-source my functions"
$null = $ps.AddScript(". .\MyFunctions.ps1", $false)
$ps.Invoke()

# clear the commands
$ps.Commands.Clear()

# call one of that functions
$null = $ps.AddCommand('Test-Me').AddParameter('param1', 42).AddParameter('param2', 'foo')
$results = $ps.Invoke()

# just in case, check for errors
$ps.Streams.Error

# process $results (just output in this demo)
$results

输出:

Hello from Test-Me with 42, foo

有关PowerShell课程的详细信息,请参阅:

http://msdn.microsoft.com/en-us/library/system.management.automation.powershell