使用sw_hide执行外部exe

时间:2018-03-28 18:56:24

标签: c++ execute dev-c++ shellexecute

如何在没有cmd.exe控制台的情况下使用模式(系统)和参数sh_hide执行外部exe?



#include <stdio.h> // C library to perform Input/Output operations 
#include <tchar.h>
#include <stddef.h> // C Standard definitions 
#include <iostream> // Input/Output
#include <fstream>
#include <cstdlib>
#include <windows.h>

int main()
{
    system("C:\\Users\\%USERNAME%\\AppData\\Roaming\\Microsoft\\mmd.exe"); 
}
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

使用ShellExecuteExShellExecute Win32 API,而不是system()