Powershell 2.0:在后台作业中发出导入模块

Powershell 2.0:在后台作业中发出导入模块

我使用 Start-Job 命令在后台启动一个脚本。

在此脚本中,我使用 Import-Module 加载模块。作业在 Import-Module 步骤中保持阻塞状态并处于运行状态。

在以下情况下会出现相同的行为: - dotsourcing 模块 - 通过 -InitializationScript Start-Job 命令加载模块。

在此先感谢您的帮助

答案1

确切地说,您必须将其导入为 start-job。..... - initialscript {import-module here're}

相关内容