Click here to Skip to main content
15,892,059 members

Comments by videepmishraa (Top 18 by date)

videepmishraa 13-Feb-13 3:36am View    
Dave,
I have a program which is used for rendering in 3d. What I found was that services can run programs in their specified logins...BUT HOW to make the service start at boot?
videepmishraa 12-Feb-13 8:16am View    
Dave,
I actually want to start computers by sending magic packets...then after boot, I want to run an application which will do a specific task. Hope now you understand why I am doing this.
videepmishraa 12-Feb-13 5:27am View    
Thank You Matthew,
First Case:
Is it possible for the service to run programs without bypassing the logon screen?

Second Case:
I tried the following which returned an error:
[Code]
DWORD dwLogonType=LOGON32_LOGON_INTERACTIVE;
DWORD dwLogonProvider=LOGON32_PROVIDER_DEFAULT;
PHANDLE phToken = NULL;
LogonUser(L"xyz",L"xyz",L"xyz",dwLogonType,dwLogonProvider,phToken);

[/Code]

The error it threw was UNHANDLED Exception at 0x76B2C1BC (advapi32.dll)
0xC0000005: Access Violation writing location 0x00000000
videepmishraa 14-Oct-12 22:07pm View    
Thank You for providing the link, but the examples provided are not of much help!!!
The red book shows images but no corresponding code and the tess.c shows code but no intersections like the one I have in the images!!!

So I need someone to personally look into the code if possible.
Thanks
videepmishraa 19-Sep-12 8:14am View    
Thank You