繁体   English   中英

将多个参数发送到使用Start-Process打开的Powershell

[英]Sending multiple arguments to a Powershell opened with Start-Process

所以我正在使用命令

Start-Process powershell -Verb runas -ArgumentList $cmds

$ cmds在哪里

$cmds = "cd C:\", "dir"

我只希望打开的新Powershell在自动关闭之前运行多个命令。

$cmds更改为:

$cmds = {"cd C:\\"; "dir";}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM