gpt4 book ai didi

powershell - 使用批处理脚本中的参数运行PowerShell脚本

转载 作者:行者123 更新时间:2023-12-03 00:50:25 25 4
gpt4 key购买 nike

我正在使用批处理脚本来读取一些参数并启动PowerShell脚本,该脚本需要输入参数。

到目前为止,我所做的是:

Set /p arg1 = Type in a name for the  data: 

Set /p arg2 = Type in the directory of the project:

Set /p arg3 = Type in the programming language :

Set /p arg4 = Type in a version for the metric data:

SET ThisScriptsDirectory=%~dp0
SET PowerShellScriptPath=%ThisScriptsDirectory%Metrics.ps1

PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& '%PowerShellScriptPath%' 'arg1' 'arg2' 'arg3' 'arg4'";

不幸的是,PowerShell脚本不接受参数。

最佳答案

PowerShell -NoProfile -ExecutionPolicy Bypass -file "%PowerShellScriptPath%" %arg1% %arg2% ....

关于powershell - 使用批处理脚本中的参数运行PowerShell脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29914271/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com