我使用Powershell Remoting 2.0版 我已经下载了Carbon Powershell模块。我将它复制到共享文件夹中:
\ SharedServer \ PowershellModules \碳1.0.0
在我的脚本ps1中,我有这个源代码:
$PSPathCarbon = "\\SharedServer\PowershellModules\Carbon-1.0.0\Carbon"
. (Join-Path $PSPathCarbon Import-Carbon.ps1)
我收到以下错误:
这个词 '\ SharedServer \ PowershellModules \碳-1.0.0 \碳\进口Carbon.ps1' 不被识别为cmdlet,函数,脚本文件或的名称 可操作程序。检查名称的拼写,或路径是否正确 包含,验证路径是否正确,然后重试。
有关它的任何建议吗?
答案 0 :(得分:0)
尝试:
. (Join-Path $PSPathCarbon 'Import-Carbon.ps1')
或者:
. "$PSPathCarbon\Import-Carbon.ps1"