我的目录结构如下所示:
C:\TFS\MasterScript\Script1.ps1
C:\TFS\ChildScript\Script2.ps1
我想要做的是在 Script2.ps1 中指定相对路径以在目录hirearchy 中查找 Script1.ps1。
这是我在 Script2.ps1 中尝试过的:
Import-Module ../MasterScript/Script1.ps1
但它不起作用,并说它找不到模块。
如果我说Import-Module C:\TFS\MasterScript\Script1.ps1
,它工作正常。我在这里想念什么?