0

我正在尝试通过 bat 文件调用 powershell 脚本,如下所示;

Bat 文件名为 Script .bat ,其当前文件如下;

Powershell -sta -Windowstyle Hidden Script.Ps1

我正在将一个参数传递给 bat 文件,如何将它传递给 bat 文件中的 powershell 脚本?

如果需要任何问题或确认,请告诉我。

4

1 回答 1

3

在您的 shell 脚本(批处理文件)中,您可以编写:

powershell -file script.ps1 %1

%1 将替换为 shell 脚本的第一个命令行参数,它将作为第一个参数传递给 script.ps1。

账单

于 2013-03-01T15:50:45.140 回答