int main()
{
STARTUPINFO testi = {0};
PROCESS_INFORMATION proci;
int argc;
wchar_t ** argv = CommandLineToArgvW(GetCommandLineW(), &argc);
if (argc < 2)
ExitProcess(0);
testi.cb = sizeof(testi);
testi.dwFlags = STARTF_USESHOWWINDOW;
testi.wShowWindow = SW_HIDE;
CreateProcess(argv[1], NULL, NULL, NULL, FALSE, 0,NULL, NULL, &testi, &proci);
ExitProcess(0);
}