在PowerShell中运行EXE

时间:2017-07-18 14:15:31

标签: powershell

我如何执行'来自PowerShell控制台的exe文件?

我知道在CMD中我可以输入exe的名称然后运行,但这并不适用于PowerShell。

在目录中,我想运行一个名为id的exe。

我想要运行的示例命令:

  • b2c get-user
  • b2c help
  • b2c update-user a80a99a7-b018-423f-90fc-d9a30e5dc7ea ...... \ usertemplate-update-org-id.json

cmd提示符中的工作示例以及来自PowerShell的错误消息:

error details

working example in cmd prompt

2 个答案:

答案 0 :(得分:4)

我不认为powershell在其搜索路径中包含当前文件夹,请尝试:

.\b2c

答案 1 :(得分:1)

请参阅call operator

& "C:\path\to\b2c.exe" get-user
& "C:\path\to\b2c.exe" help
& "C:\path\to\b2c.exe" update-user a80a99a7-b018-42...