Powershell:打开cmd.exe,然后在cmd上运行命令

时间:2017-05-18 12:17:44

标签: powershell

我正在尝试使用powershell打开命令提示符,然后运行带参数的exe文件。

Start-Process cmd.exe -Credential $credential

一旦cmd打开,我想远程运行一个exe,例如:

abc.exe -a arg1 -h arg2

如何使用相同的凭据使用Powershell执行第二部分?

1 个答案:

答案 0 :(得分:2)

你不能把它分成两个单独的步骤;但是,如果您将Start-Process调用为

Start-Process cmd.exe -Credential $Credential -ArgumentList "/C abc.exe -a arg1 -h arg2"

你将完成你似乎需要的东西。