Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个 PowerShell 模块,我想从加载模块时解析的主脚本中获取命令行参数。
关于如何做到这一点的任何想法?我检查了 $args 在主脚本上有值,但在模块上没有。
您可以使用 ArgumentList 参数(导入模块)将参数传递给模块并检查 psm1 文件中的 $args
我找到了:使用 -ArgumentList 传递参数
导入模块 .\module.psm1 -ArgumentList $args