forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


ctrl alt delete question
Goto page 1, 2  Next
 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help
View previous topic :: View next topic  
Author Message
tim6389
Professional Member
Professional Member


Joined: 01 Aug 2002
Posts: 790

PostPosted: Thu Apr 08, 2004 3:42 pm    Post subject: ctrl alt delete question Reply with quote

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 Sad

p.s what dll can i uses for windows 98, me to disable those keys? vdssave is that it?

thanks

_________________
Have a nice day Smile
Back to top
View user's profile Send private message
bbelcher
Contributor
Contributor


Joined: 30 Jul 2002
Posts: 172

PostPosted: Thu Apr 08, 2004 4:51 pm    Post subject: Reply with quote

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
View user's profile Send private message
Garrett
Moderator Team


Joined: 04 Oct 2001
Posts: 2150
Location: A House

PostPosted: Thu Apr 08, 2004 5:28 pm    Post subject: Reply with quote

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
View user's profile Send private message
tim6389
Professional Member
Professional Member


Joined: 01 Aug 2002
Posts: 790

PostPosted: Thu Apr 08, 2004 7:19 pm    Post subject: Reply with quote

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 Sad


thanks

_________________
Have a nice day Smile
Back to top
View user's profile Send private message
tim6389
Professional Member
Professional Member


Joined: 01 Aug 2002
Posts: 790

PostPosted: Thu Apr 08, 2004 9:53 pm    Post subject: Reply with quote

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 Smile
Back to top
View user's profile Send private message
Hooligan
VDS Developer
VDS Developer


Joined: 28 Oct 2003
Posts: 480
Location: California

PostPosted: Fri Apr 09, 2004 7:46 pm    Post subject: Reply with quote

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 Cool

_________________
Hooligan

Why be normal?
Back to top
View user's profile Send private message
Skit3000
Admin Team


Joined: 11 May 2002
Posts: 2166
Location: The Netherlands

PostPosted: Sat Apr 10, 2004 9:11 am    Post subject: Reply with quote

I know a way to disable the Task Manager... Smile

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
View user's profile Send private message
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Sat Apr 10, 2004 1:40 pm    Post subject: Reply with quote

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'. Smile

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
View user's profile Send private message Visit poster's website
tim6389
Professional Member
Professional Member


Joined: 01 Aug 2002
Posts: 790

PostPosted: Sat Apr 10, 2004 3:12 pm    Post subject: Reply with quote

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 Sad


thanks

_________________
Have a nice day Smile
Back to top
View user's profile Send private message
tim6389
Professional Member
Professional Member


Joined: 01 Aug 2002
Posts: 790

PostPosted: Sun Apr 11, 2004 2:25 pm    Post subject: Reply with quote

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 Smile
Back to top
View user's profile Send private message
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Sun Apr 11, 2004 2:30 pm    Post subject: Reply with quote

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 Smile

_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
tim6389
Professional Member
Professional Member


Joined: 01 Aug 2002
Posts: 790

PostPosted: Sun Apr 11, 2004 2:42 pm    Post subject: Reply with quote

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 Smile
Back to top
View user's profile Send private message
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Sun Apr 11, 2004 2:58 pm    Post subject: Reply with quote

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
View user's profile Send private message Visit poster's website
tim6389
Professional Member
Professional Member


Joined: 01 Aug 2002
Posts: 790

PostPosted: Sun Apr 11, 2004 3:12 pm    Post subject: Reply with quote

hummm

vdsprot don't show up there Sad

i did find the other one


thanks

_________________
Have a nice day Smile
Back to top
View user's profile Send private message
Skit3000
Admin Team


Joined: 11 May 2002
Posts: 2166
Location: The Netherlands

PostPosted: Sun Apr 11, 2004 3:56 pm    Post subject: Reply with quote

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... Smile

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
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group