2

已解决:以下解决方案是使用以下加入路径: [System.Reflection.Assembly]::LoadFrom((Join-Path (pwd) "MyAssembly.dll")) | out-null

原始问题

我有 powershell 脚本和一个程序集文件,如下所示:

D:\path1\script1.ps1
D:\path2\script2.ps1
D:\path2\MyAssembly.dll

在 D:\path1\script1.ps1 中,我需要调用 D:\path2\script2.ps1。然后,script2.ps1 将依次加载一些已放置在 D:\path2 文件夹中的 C# 程序集。我的印象是,如果我执行 Set-Location 或 Push-Location,那么工作目录将针对 script2.ps1 中发生的任何事情进行正确设置。

script1.ps1 看起来像这样:

$otherpath = "D:\path2"

Set-Location -Path $otherpath

Push-Location -Path $otherpath

.\script2.ps1

script2.ps1 看起来像这样:

[System.Reflection.Assembly]::LoadFrom("MyAssembly.dll") | out-null

但是,当我在 D:\path1 中时,我执行 script1.ps1 如下,然后我得到一个 FileNotFound 异常:

D:\path1>powershell .\script1.ps1

Exception calling "LoadFrom" with "1" argument(s): "Could not load file or assembly
'file:///D:\path1\MyAssembly.dll' or one of its dependencies. The system cannot find the file
specified."
At D:\path2\script2.ps1:1 char:1
+ [System.Reflection.Assembly]::LoadFrom("MyAssembly.dll") | out-null
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : FileNotFoundException

如何正确设置路径,以便当我从 D:\path1 调用 script1.ps1 时,环境将 D:\path2 正确设置为 D:\path2 中对程序集的所有调用的工作目录?

4

2 回答 2

0

[System.Reflection.Assembly]::LoadFrom((Join-Path (pwd) "MyAssembly.dll")) | out-null只要 script2 中的工作目录没有变化,使用就可以工作。

另一种方法是使用$MyInvocation.MyCommand.Pathwhich 将始终给出当前脚本的完整路径。你可以像这样使用它:

[System.Reflection.Assembly]::LoadFrom((Join-Path (Split-Path $MyInvocation.MyCommand.Path) "MyAssembly.dll")) | out-null

于 2013-09-04T13:15:07.673 回答
0

使用以下加入路径:

[System.Reflection.Assembly]::LoadFrom((Join-Path (pwd) "MyAssembly.dll")) | out-null
于 2014-07-26T22:57:09.277 回答