使用PowerShell运行我的第三方DLL文件

时间:2011-11-01 19:58:36

标签: powershell powershell-v2.0 powershell-remoting

我不确定PowerShell是否可行。

但基本上我有一个Windows Forms程序来配置一个名为EO Server的程序。 EO服务器有一个API,我引用了EOServerAPI.dll来运行以下代码。

using EOserverAPI;
...
private void myButton_Click(object sender, EventArgs e)
{
    String MDSConnString="Data Source=MSI;Initial Catalog=EOMDS;Integrated Security=True;";

    //Create the connection
    IEOMDSAPI myEOMDSAPI = EOMDSAPI.Create(MDSConnString);

    //Get JobID
    Guid myMasterJobID = myEOMDSAPI.GetJobID("myJobRocks");
}

是否可以与API DLL文件进行交互并进行与Windows窗体应用程序中相同类型的调用?

4 个答案:

答案 0 :(得分:34)

是的,你可以:

Add-Type -Path $customDll
$a = new-object custom.type

你可以像这样调用静态方法:

[custom.type]::method()

您也可以使用反射代替Add-Type:

[Reflection.Assembly]::LoadFile($customDll)

(注意,即使上面调用Reflection库和LoadFile静态方法。)

答案 1 :(得分:10)

查看博客文章 Load a Custom DLL from PowerShell 。如果您可以在.NET中与对象进行交互,那么您也可以在PowerShell中进行交互。

答案 2 :(得分:0)

实际上,其他提供的解决方案对我不起作用,这是一个对我来说非常合适的选择:

$AssemblyPath = "C:\SomePath\SomeLIB.dll"
$bytes = [System.IO.File]::ReadAllBytes($AssemblyPath)
[System.Reflection.Assembly]::Load($bytes)

答案 3 :(得分:0)

c# dll

Add-Type -Path $dllPath
(new-object namespace.class)::Main() #Where namespace=dllnamespace, class=dllclass, Main()=dllstartvoid

信息。获取命名空间和类

$types = Add-Type -Path $dllPath -PassThru
$types | ft fullname
$types

如果它不是“可执行的”dll(获取/设置 dll 的东西),那么这是我所知道的最好的(不需要与示例 dll 创建相比):

https://kazunposh.wordpress.com/2012/03/19/проверка-корректного-ввода-distinguished-name-в-скри/