#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
////////////////////////////////////////
//Author :- p0is0n(Indetectables)
////////////////////////////////////////
////////////////////////////////////////////////////////////////////////

char sExecute(char* sPath) //c0d3d p0is0n
{
if(sPath==NULL)
{
MessageBox(0,”Ruta Invalida”,”sExecute Function C”,MB_OK);
}
ShellExecute(0,”open”,sPath,0,0,1);
}
/////////////////////////////////////////////////////////////////////////

//Ejemplo de Uso……..
int main(int argc, char *argv[])
{
sExecute(“prueb.exe”); //Works Fine =)
getch();
}