Hi All
I installed my exe file of an application in autoexec.bat which pops up a login form after booting.My requirment is that user cant access any other applications until log in.
Can any body help me out.
regards
Atul
Hi All
I installed my exe file of an application in autoexec.bat which pops up a login form after booting.My requirment is that user cant access any other applications until log in.
Can any body help me out.
regards
Atul
Window locking
Xiaobo Gu
it went something like:
for each (IntPtr ^handle in GetHandles()) // GetHandles isn't the correct name
{
if (Handle != this->Handle)
{
EnableWindow(1, Handle); // Disable the handle
}
}
The only thing it doesn't do is disable the Windows Key or Start menu from coming up. You can even hide the taskbar using the ShowWindow API.
JustinA1
thinkfreeto
I think you can make an screem saver program,if user want to get back to use other windows function,he has to enter username and password .
Shan McArthur
ctsand
Is there a good reason why you're not using built-in Windows security policy functions to do this That's what they're there for and they'll be a lot more reliable and easier to maintain than any kludge to work without them. It just seems like an odd requirement. Perhaps the requestor of this feature (someone not in an IT role ) isn't familiar with these features.