-7

我在 .net 中创建了一个 Windows 应用程序。我需要使用 powershell 执行应用程序生成的 exe。

4

1 回答 1

2

我通常会使用呼叫运算符 (&):

$args = @('arg1', 'arg2', 'arg3')
& app.exe $args

此处详细列出了可用选项的完整列表。

于 2012-12-03T08:38:05.613 回答