1

我尝试了以下方法:

#import "shell32.dll" 
int ShellExecuteW(int hwnd,string operation,string file,string parameters,string directory,int showCmd); 
#import
string strParameters = "/c python c:\\createFiles.py ";
int result = ShellExecuteW(0, "open", "cmd.exe", strParameters, NULL, 1);
if (result <= 32) Print("Shell Execute Failed: ", result); 

上面的命令正在创建命令提示符以打开然后在其上执行相应的命令。同时,如果我单击某些东西并突然执行,那么整个窗口将被挂起,并且在我在 cmd 提示符之外重新单击之前不会执行任何操作。

请让我知道如何在不打开屏幕上的 cmd 提示符的情况下静默运行命令。

4

0 回答 0