| View previous topic :: View next topic |
| Author |
Message |
tim6389 Professional Member


Joined: 01 Aug 2002 Posts: 790
|
Posted: Thu Apr 08, 2004 3:42 pm Post subject: ctrl alt delete question |
|
|
hello
I have a question ctrl,alt,delete i know there is a way for 98,me. but i read that you can't disable it on xp mine question is can i have it close that window if its open using window close command if so, does any one know the window id? i don't have xp here to test this
p.s what dll can i uses for windows 98, me to disable those keys? vdssave is that it?
thanks _________________ Have a nice day  |
|
| Back to top |
|
 |
bbelcher Contributor

Joined: 30 Jul 2002 Posts: 172
|
Posted: Thu Apr 08, 2004 4:51 pm Post subject: |
|
|
This might help if your trying to disallow users from logging off or using task manager.
registry WRITE,CURUSER,Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableLockWorkstation,1,DWORD
registry WRITE,CURUSER,Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableTaskMgr,1,DWORD
registry WRITE,CURUSER,Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableChangePassword,1,DWORD
registry WRITE,CURUSER,Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoClose,1,DWORD
registry WRITE,CURUSER,Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoLogoff,1,DWORD |
|
| Back to top |
|
 |
Garrett Moderator Team
Joined: 04 Oct 2001 Posts: 2150 Location: A House
|
Posted: Thu Apr 08, 2004 5:28 pm Post subject: |
|
|
I may be wrong, but I do believe in NT/XP you can get around it. You
do this by remapping the keys for CTRL, ALT and DEL. _________________ 'What you do not want done to yourself, do not do to others.' - Confucius (550 b.c. to 479 b.c.) |
|
| Back to top |
|
 |
tim6389 Professional Member


Joined: 01 Aug 2002 Posts: 790
|
Posted: Thu Apr 08, 2004 7:19 pm Post subject: |
|
|
humm ok i will try thoses ideas you guys are talking about.
but my idea should work right? if i used window close command?
i would like to play with that but i don't know the window title name or id cuase i don't have xp to try it here
thanks _________________ Have a nice day  |
|
| Back to top |
|
 |
tim6389 Professional Member


Joined: 01 Aug 2002 Posts: 790
|
Posted: Thu Apr 08, 2004 9:53 pm Post subject: |
|
|
can someone please that has windows xp check to see what the title of the task window is
also to where to find the dll for windows 98,ME to disable ctrl/alt/delete..
thanks _________________ Have a nice day  |
|
| Back to top |
|
 |
Hooligan VDS Developer


Joined: 28 Oct 2003 Posts: 480 Location: California
|
Posted: Fri Apr 09, 2004 7:46 pm Post subject: |
|
|
When you hit <ctrl><alt><del> the title of the window that comes up is called "Windows Security". From there, if you select task manager, the title of that is "Windows Task Manager". I don't believe you will find any way to control the security window, but you may be able to control the task manager...
Hooligan  _________________ Hooligan
Why be normal? |
|
| Back to top |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
Posted: Sat Apr 10, 2004 9:11 am Post subject: |
|
|
I know a way to disable the Task Manager...
| Code: | #define command,killtaskmanagerxp
info This will 'kill' the Windows XP Task Manager!
killtaskmanagerxp
info Done...
exit
:killtaskmanagerxp
list create,30
list tasklist,30,NI
if @match(30,taskmgr.exe|)
killtask @substr(@item(30),@succ(@pos(|,@item(30))),@len(@item(30)))
end
list close,30
exit |
_________________ [ Add autocomplete functionality to your VDS IDE windows! ]
Voor Nederlandse beginners met VDS: bekijk ook eens deze tutorial! |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Sat Apr 10, 2004 1:40 pm Post subject: |
|
|
I would use bbelcher's solution: this disables the task manager from opening
and also disables the buttons for 'task manager', 'lock computer', and 'log off'.
| bbelcher wrote: | This might help if your trying to disallow users from logging off or using task manager.
registry WRITE,CURUSER,Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableLockWorkstation,1,DWORD
registry WRITE,CURUSER,Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableTaskMgr,1,DWORD
registry WRITE,CURUSER,Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableChangePassword,1,DWORD
registry WRITE,CURUSER,Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoClose,1,DWORD
registry WRITE,CURUSER,Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoLogoff,1,DWORD |
_________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
tim6389 Professional Member


Joined: 01 Aug 2002 Posts: 790
|
Posted: Sat Apr 10, 2004 3:12 pm Post subject: |
|
|
cooool
thanks guys
question tho what about windows 98 and ME i tried to uses the window close BUT that don't work cuase as you know when you have task manger up it halts the script
thanks _________________ Have a nice day  |
|
| Back to top |
|
 |
tim6389 Professional Member


Joined: 01 Aug 2002 Posts: 790
|
Posted: Sun Apr 11, 2004 2:25 pm Post subject: |
|
|
Skit3000
what is the best way to added that to the evloop so that its alway checking to see if the task manger is open?
FreezingFire - does windows 98 have that setting?
thanks _________________ Have a nice day  |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Sun Apr 11, 2004 2:30 pm Post subject: |
|
|
| tim6389 wrote: | | FreezingFire - does windows 98 have that setting? |
Nope, only Windows 2000 and XP, but that's what your original question
was I think... If you want to disable the keys on Win 98 then you can either
use vdssave.dll, or also vdsprot.dll  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
tim6389 Professional Member


Joined: 01 Aug 2002 Posts: 790
|
Posted: Sun Apr 11, 2004 2:42 pm Post subject: |
|
|
ok
where can i get vdssave.dll or vdsprot.dll at? and will thoses dll work with vds 5 or no?
thanks _________________ Have a nice day  |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Sun Apr 11, 2004 2:58 pm Post subject: |
|
|
Just search 'vdssave' or 'vdsprot' at www.vdsworld.com and the pictures
next to the title will be indicative of their compatibility. _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
tim6389 Professional Member


Joined: 01 Aug 2002 Posts: 790
|
Posted: Sun Apr 11, 2004 3:12 pm Post subject: |
|
|
hummm
vdsprot don't show up there
i did find the other one
thanks _________________ Have a nice day  |
|
| Back to top |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
Posted: Sun Apr 11, 2004 3:56 pm Post subject: |
|
|
| tim6389 wrote: | | what is the best way to added that to the evloop so that its alway checking to see if the task manger is open? |
I think you should just use an Evloop like this one, to check if the Task Manager is open. One downside of this code is that the Task Manager will be visible a little while if people try to open it, since the script can't pretent the future...
| Code: | :Evloop
wait event,0.0001
goto @event()
:Timer
killtaskmanagerxp
goto Evloop |
_________________ [ Add autocomplete functionality to your VDS IDE windows! ]
Voor Nederlandse beginners met VDS: bekijk ook eens deze tutorial! |
|
| Back to top |
|
 |
|