我在cpp中通过系统命令从一个进程调用Powershell脚本。 Powershell脚本从系统命令正确调用,但在脚本执行后,Powershell进程没有结束。
如果cpp中的系统命令启动了进程,有没有办法杀死PowerShell进程?
int rc = system(("powershell -NonInteractive -ExecutionPolicy RemoteSigned " + filePath + " > " + filePathOut).c_str());
当这段代码执行时,它启动了powershell但是PowerShell 代码执行后进程不会被终止。