如果在c ++中使用system命令启动,如何杀死Powershell实例?

时间:2016-06-13 08:46:16

标签: c++ powershell

我在cpp中通过系统命令从一个进程调用Powershell脚本。 Powershell脚本从系统命令正确调用,但在脚本执行后,Powershell进程没有结束。

如果cpp中的系统命令启动了进程,有没有办法杀死PowerShell进程?

int rc = system(("powershell -NonInteractive -ExecutionPolicy RemoteSigned "      + filePath + " > " + filePathOut).c_str());

当这段代码执行时,它启动了powershell但是PowerShell 代码执行后进程不会被终止。

0 个答案:

没有答案