标签: powershell
您好我想从powershell脚本执行exe。我在做什么:
[Diagnostics.Process]::Start("$Exepath")
但是在执行后cmd窗口没有关闭,关闭cmd窗口并执行其余脚本怎么办?
答案 0 :(得分:3)
使用它:
start-process $exepath
如果你想运行流程表格CMD,请使用:
Start-Process cmd "/c start calc"