是否可以使用PowerShell加载多个.dll?

时间:2015-11-18 02:39:51

标签: c# powershell

我有10个.dll必须加载,是否可以使用powershell?同样的小片段非常感谢

1 个答案:

答案 0 :(得分:3)

我认为你可以通过以下方式加载它们,

$dlls = (Get-ChildItem -path "Path to Folder containing .dlls").fullname

foreach ($dll in $dlls)
{
       Add-Type -Path $dll
}