Search found 5 matches
- Mon Jul 13, 2015 5:39 pm
- Forum: Windows
- Topic: Prevent users on using ctrl+alt+del to crash master stack
- Replies: 14
- Views: 10049
Re: Prevent users on using ctrl+alt+del to crash master stac
I would not trust any exe that prevents the user from hitting Ctrl-Alt-Del! I would think this is some kind of malware and delete it. 8) I dont really understand why I have given a task for this (-_-;), I am on my OJT training now so I might lose my job if cant get it sir and thats what Im afraid o...
- Mon Jul 13, 2015 5:13 pm
- Forum: Windows
- Topic: Prevent users on using ctrl+alt+del to crash master stack
- Replies: 14
- Views: 10049
Re: Prevent users on using ctrl+alt+del to crash master stac
That may work somehow, but will not actually PREVENT this inconvenience! True :/, the only alternative is to hide the process from task manager, whitch is possible but requires some work to be done, if you are interested in this i can guide you through. Please guide me through this , im very intere...
- Mon Jul 13, 2015 4:52 pm
- Forum: Windows
- Topic: Prevent users on using ctrl+alt+del to crash master stack
- Replies: 14
- Views: 10049
Re: Prevent users on using ctrl+alt+del to crash master stac
on checkKeysLoop local theTasks if the keysDown contain "???" -- you have to find out the code for cntrl+alt+del put shell("tasklist") into theTasks repeat for each line theTask in theTasks if theTask contains "taskmgr.exe" then get shell("taskkill /F /IM taskmgr.exe") answer warning "YOU CAN NOT U...
- Mon Jul 13, 2015 4:48 pm
- Forum: Windows
- Topic: Prevent users on using ctrl+alt+del to crash master stack
- Replies: 14
- Views: 10049
Re: Prevent users on using ctrl+alt+del to crash master stac
Hi Pzychi, 1. welcome to the forum! :D 2. I'm afraid this is not possible in LC! At least not with the build-in means. The system (Windows) will receive the shortcut Ctrl-Alt-Del FIRST and not pass it over to LC (or your standalone) in that case! Maybe this is possible with the help on an external,...
- Mon Jul 13, 2015 2:57 pm
- Forum: Windows
- Topic: Prevent users on using ctrl+alt+del to crash master stack
- Replies: 14
- Views: 10049
Prevent users on using ctrl+alt+del to crash master stack
I really need your help . I really dont know how to do this The objective of this task is to prevent users from using Ctrl-Alt-Del to crash the master stack program. One way to do this is to intercept all keystrokes looking for a control sequence before the key is passed along to the operating syste...