1

我使用 Powershell Remoting 2.0 版。
我已经下载了Carbon Powershell 模块。我将它复制到共享文件夹中:

\SharedServer\PowershellModules\Carbon-1.0.0

在我的脚本 ps1 中,我有以下源代码:

$PSPathCarbon = "\\SharedServer\PowershellModules\Carbon-1.0.0\Carbon"
. (Join-Path $PSPathCarbon Import-Carbon.ps1)

我收到以下错误:

术语“\SharedServer\PowershellModules\Carbon-1.0.0\Carbon\Import-Carbon.ps1”未被识别为 cmdlet、函数、脚本文件或可运行程序的名称。检查名称的拼写,或者如果包含路径,请验证路径是否正确并重试。

有什么建议吗?

4

1 回答 1

0

尝试:

. (Join-Path $PSPathCarbon 'Import-Carbon.ps1')

或者:

. "$PSPathCarbon\Import-Carbon.ps1"
于 2013-03-08T09:13:12.410 回答