Click here to Skip to main content
15,891,905 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

How to do "Switch user" operation of the windows using an MFC application.I was searching for the same in the google but didnt get any idea.I got the below function to logoff.

ExitWindowsEx(EWX_LOGOFF,0);
(With this function iam able to logoff the system)

#define EWX_LOGOFF 0
#define EWX_SHUTDOWN 0x00000001
#define EWX_REBOOT 0x00000002
#define EWX_FORCE 0x00000004
#define EWX_POWEROFF 0x00000008
#if(_WIN32_WINNT >= 0x0500)
#define EWX_FORCEIFHUNG 0x00000010
#endif /* _WIN32_WINNT >= 0x0500 */
#define EWX_QUICKRESOLVE 0x00000020
#if(_WIN32_WINNT >= 0x0600)
#define EWX_RESTARTAPPS 0x00000040

So is there any thing such kind APIs to do window Switch user.Thanks in Advance.
Posted

 
Share this answer
 
Can you please describe the problem you are trying to solve? There are a rich set of API functions that allow windows to impersonate or create a logged on session. If your problem is that you need to access parts of the file system requiring user credentials then you should investigate these API's.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900