Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 .net 中创建了一个 Windows 应用程序。我需要使用 powershell 执行应用程序生成的 exe。
我通常会使用呼叫运算符 (&):
$args = @('arg1', 'arg2', 'arg3') & app.exe $args
此处详细列出了可用选项的完整列表。