Click here to Skip to main content
Click here to Skip to main content

Lock workstation

By , 5 Jun 2005
 

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralLogging inmemberJAQ224 Feb '07 - 5:31 
AnswerRe: Logging inmemberDalibor Drzik24 Feb '07 - 23:57 
Questionwin 2Ksusslevsky17 Oct '05 - 5:16 
AnswerRe: win 2KmemberDalibor Drzik17 Oct '05 - 6:54 
NewsRe: win 2Ksusslevsky17 Oct '05 - 7:14 
GeneralAlso known as..memberAlexander M.6 Jun '05 - 10:22 
GeneralRe: Also known as..memberDalibor Drzik7 Jun '05 - 2:37 
Yes, of course. There are many possibilities. E.g. WinKey + L in Windows XP.
 
This article (or code example) is an introduction for my next two articles.

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

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