

#include "stdafx.h"
#include <windows.h>
#include <shellapi.h>//ShellExecute 要引用的库
int main(int argc, _TCHAR* argv[])
{
ShellExecute(NULL,NULL,_T("E:\\Projekt1.exe"),NULL,NULL,SW_SHOW);
getchar();
return 0;
}
转载于:https://www.cnblogs.com/zrx401558287/archive/2008/12/11/1352964.html