comp.os.mswindows.programmer.win32
  Home FAQ Contact Sign in
comp.os.mswindows.programmer.win32 only
 
Advanced search
July 2008
motuwethfrsasuw
 123456 27
78910111213 28
14151617181920 29
21222324252627 30
28293031    31
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007    
total
comp.os ... win32 Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Google desktop         


Author: Manish
Date: Jul 8, 2008 23:44

Hi,
I am creating a win32 application in which i have to communicate
with google desktop.
First , i have to found whetehr the google desktop is installed or
not. i can do this with the help of regestry value.
Is there any other way exists instead of regestry value to found
whethr the google desktop is already installed or not? and in case of
regestry value , if google desktop is successfully running then is it
necessary the HEKY_LOCALO_MACHINE\SOFTWARE\GOOGLE\GOOGLE DESKTOP value
always exist.

My second doubt is how to communicate or send a query to google
desktop through socket?
1 Comment
  Google desktop         


Author: Manish
Date: Jul 8, 2008 23:09

Hi,
I am writing an application in which i have to coomunicate with
google desktop by using ssl socket.
i am able to implement the ssl based socket communication with my own
server. The problem is how to find whether google desktop is installed
or not. and how to send request to google desktop??

Any pointer will be very helpful.
no comments
  LogonUser fails with ERROR_PRIVILEGE_NOT_HELD         


Author: tsgd84
Date: Jul 8, 2008 07:04

I am reposting this forum since i could not post reply to my previous
thread

Hi Everyone,

I am writing a small application to spawn a particular app with
different user credentials,
I am getting the error "ERROR_PRIVILEGE_NOT_HELD" from the LogonUser
method,

I have attached my code snippet here,

DWORD dwSize;
HANDLE hToken;
LPVOID lpvEnv;
PROCESS_INFORMATION pi = {0};
STARTUPINFO si = {0};
WCHAR szUserProfile[1024] = L"";

si.cb = sizeof(STARTUPINFO);
Show full article (3.56Kb)
1 Comment
  In windows 2000 LogonUser returned ERROR_PRIVILEGE_NOT_HELD         


Author: tsgd84
Date: Jul 8, 2008 06:56

I am reposting this question, since i cannot reply in my previous
thread.

Hi Everyone,

I am writing a small application to spawn a particular app with
different user credentials,

I have attached my code snippet here, I am getting the error "The
system cannot find the file specified." from the
GetUserProfileDirectory method,

DWORD dwSize;
HANDLE hToken;
LPVOID lpvEnv;
PROCESS_INFORMATION pi = {0};
STARTUPINFO si = {0};
WCHAR szUserProfile[1024] = L"";

si.cb = sizeof(STARTUPINFO);
Show full article (3.56Kb)
no comments
  Query information on system process         


Author: Sarath
Date: Jul 8, 2008 04:12

Dear All,

How can I query information of system process? OpenProcess to query
information on system process has been failed with me.
1 Comment