well i found Pyrons original post and one version of the source code for setup
http://www.msfn.org/board/SOLVED-driver … ntry159358
#include "windows.h"
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow )
{
SHELLEXECUTEINFO mySHELLEXECUTEINFO;
mySHELLEXECUTEINFO.cbSize=sizeof(SHELLEXECUTEINFO);
mySHELLEXECUTEINFO.fMask=SEE_MASK_NOCLOSEPROCESS;
mySHELLEXECUTEINFO.hwnd=NULL;
mySHELLEXECUTEINFO.lpVerb="Open";
mySHELLEXECUTEINFO.lpFile="cmd.exe";
mySHELLEXECUTEINFO.lpParameters="/C setup.cmd";
mySHELLEXECUTEINFO.lpDirectory=".";
mySHELLEXECUTEINFO.nShow=NULL; // or SW_SHOW;
ShellExecuteEx(&mySHELLEXECUTEINFO);
WaitForSingleObject(mySHELLEXECUTEINFO.hProcess,INFINITE);
return 0;
}I also noticed you added the last post to that thread... today in fact...
i guess you didnt read all of the 23 pages - and missed it on page 5 ![]()
thanks to your interest i now have the source and know who the author was... Yea!