标签: powershell prompt
我有以下代码
Start-Process -windowstyle minimized "C:/xampp/xampp-control.exe"
有一种方法可以知道进程是否已在运行?
答案 0 :(得分:3)
执行此操作的一种方法是获取进程的进程ID(使用-PassThru的{{1}}参数),然后您可以通过ID查看进程是否存在。例如:
-PassThru
Start-Process