我正在尝试编写一个只运行两个可执行文件的小程序。目前它只出于某种原因运行第一个:
#include <windows.h>
#include <iostream>
using namespace std;
main(){
cout << "Running Borderless Window..." << endl;
system("BorderlessWindowed.exe");
cout << "Running Diablo II MultiRes..." << endl;
system("D2MultiResGame.exe.lnk");
}
这只是一个小程序来运行暗黑破坏神II +一个BorderlessWindow程序。
答案 0 :(得分:3)
这将完成任务
#include <windows.h>
#include <iostream>
using namespace std;
main(){
cout << "Running Borderless Window... and Diablo II MultiRes" << endl;
system("cmd /c start BorderlessWindowed.exe&&D2MultiResGame.exe.lnk");
// this is what i have tried
// system("cmd /c start notepad.exe&&mspaint.exe");
// which starts notepad and mspaint one after another
}
答案 1 :(得分:1)
好吧,因为system()
要求在启动第二个进程之前完成第一个进程,我只是创建了一个启动它们的批处理文件,并且.exe启动了批处理文件。