Click here to Skip to main content
Licence 
First Posted 5 Jun 2005
Views 32,167
Bookmarked 18 times

Lock workstation

By | 5 Jun 2005 | Article
Lock workstation without downloading the Platform SDK.

Introduction

The LockWorkStation function submits a request to lock the workstation's display. Locking a workstation protects it from unauthorized use.

Code explanation

The following example locks the workstation using the LockWorkStation function. The function requires version Windows 2000 Professional or later.

This example also illustrates load-time dynamic linking. If the DLL is not available, the application using load-time dynamic linking must simply terminate. The run-time dynamic linking example, however, can respond to the error. This is a good way to prevent forced termination. You can use this technique in the applications which should be runnable at all Windows platforms but with delimited functionality following the currently running version of the system.

#include <windows.h>

#define IsWin2000Plus() ((DWORD)(LOBYTE(LOWORD(GetVersion()))) >= 5)

int (__stdcall * MyLockWorkStation)();

int __stdcall WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, 
                                     LPSTR lpCmdLine, int nCmdShow)
{
    HINSTANCE hinstLib;

    if (IsWin2000Plus())
    {
        hinstLib = LoadLibrary("USER32.DLL");

        if (hinstLib)
        {
            MyLockWorkStation = (int (__stdcall *)()) 
                  GetProcAddress(hinstLib, "LockWorkStation");

            if (MyLockWorkStation != NULL)
                (MyLockWorkStation) ();
        }

        FreeLibrary(hinstLib);
    }
    else
        MessageBox(NULL, "This application requires" 
           " Windows 2000 Professional or higher!", 
           "Lock Workstation", MB_OK);

    return 0;
}

This application has the same result as pressing Ctrl+Alt+Del and clicking Lock Workstation.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Dalibor Drzik

Web Developer

Slovakia Slovakia

Member

Wink | ;-)

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralLogging in PinmemberJAQ25:31 24 Feb '07  
AnswerRe: Logging in PinmemberDalibor Drzik23:57 24 Feb '07  
Questionwin 2K Pinsusslevsky5:16 17 Oct '05  
AnswerRe: win 2K PinmemberDalibor Drzik6:54 17 Oct '05  
NewsRe: win 2K Pinsusslevsky7:14 17 Oct '05  
GeneralAlso known as.. PinmemberAlexander M.10:22 6 Jun '05  
GeneralRe: Also known as.. PinmemberDalibor Drzik2:37 7 Jun '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 6 Jun 2005
Article Copyright 2005 by Dalibor Drzik
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid