im activating some program via:
CreateProcess( NULL,
"App.exe",
NULL,
NULL,
FALSE,
0 ,
NULL,
NULL,
&si,
&pi ) )
Stts = GetLastError();
***and its working fine witout any problems***
but when im activating this process via :
CreateProcessAsUser(HToken ,
NULL,
"App.exe",
NULL,
NULL,
FALSE,
0 ,
NULL,
NULL,
&si,
&pi ) )
Stts = GetLastError();
***and in this case im getting "ABNORMAL PROGRAM TERMINATION"
is any one can suggest???
Thanks
if someone has a suggestion ill be glad to hear it