标签: powershell
我在.net中创建了一个Windows应用程序。我需要使用powershell执行应用程序生成的exe。
答案 0 :(得分:2)
我通常会使用呼叫运算符(&):
$args = @('arg1', 'arg2', 'arg3') & app.exe $args
详细列出了here。