devxlogo

Lock Windows 2000 Instantly

Lock Windows 2000 Instantly

Locking an NT workstation has never been easy. Windows 2000 has a new function, LockWorkStation, that can lock the machine instantly with a single API call:

 Private Declare Function LockWorkStation Lib _	"user32.dll" () As LongCall LockWorkStation

In fact, because this function requires no parameters, you can reduce the code to a single line, as well as make it callable from 16-bit code, by invoking it through rundll32:

 Call Shell("rundll32 user32.dll,LockWorkStation", _	vbNormalFocus)

The workstation locks instantly when this line is executed. Here

See also  Does It Make Sense to Splurge on a Laptop?
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist