Chris86 Posted August 2, 2008 Share Posted August 2, 2008 Hi, How can i block the taskmanager or Ctrl alt del? im working on a script that locks the computer if someone uses the mouse or keyboard. Many of u maybe think that i would make a "virus" of this, but no i wouldn't At school when we have lunch, people start screwing around with others pc's and im getting sick of having people deleting my music and other stuff :S Link to comment Share on other sites More sharing options...
Andreik Posted August 2, 2008 Share Posted August 2, 2008 Hi, How can i block the taskmanager or Ctrl alt del? im working on a script that locks the computer if someone uses the mouse or keyboard.Many of u maybe think that i would make a "virus" of this, but no i wouldn't At school when we have lunch, people start screwing around with others pc's and im getting sick of having people deleting my music and other stuff :SYou have more options:1. Create a GUI with $TOP_MOST ex-style and minimize Task Manager2. Disable from registry CTRL key or other keyAnd probably more options. afeen 1 When the words fail... music speaks. Link to comment Share on other sites More sharing options...
BigDod Posted August 2, 2008 Share Posted August 2, 2008 Hi, How can i block the taskmanager or Ctrl alt del? im working on a script that locks the computer if someone uses the mouse or keyboard.Many of u maybe think that i would make a "virus" of this, but no i wouldn't At school when we have lunch, people start screwing around with others pc's and im getting sick of having people deleting my music and other stuff :SSimple answer, put a password on it. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother Link to comment Share on other sites More sharing options...
Chris86 Posted August 2, 2008 Author Share Posted August 2, 2008 Simple answer, put a password on it.I have, but i cant lock my computer, so i want to make this script Link to comment Share on other sites More sharing options...
AdmiralAlkex Posted August 3, 2008 Share Posted August 3, 2008 I have, but i cant lock my computer, so i want to make this scriptWhy not? Pressing Win+L will lock WinXP and Vista (not sure about the others) .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface Link to comment Share on other sites More sharing options...
Dampe Posted August 3, 2008 Share Posted August 3, 2008 While 1 If ProcessExists ("taskmgr.exe") Then ProcessClose ("taskmgr.exe") EndIf WEnd Link to comment Share on other sites More sharing options...
d4rk Posted August 3, 2008 Share Posted August 3, 2008 (edited) Simply run this line : ;lock taskmanager , 1 = lock, delete this key or change to 0 to back to default RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system","DisableTaskMgr","REG_DWORD",1) Edited August 3, 2008 by d4rk [quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys Link to comment Share on other sites More sharing options...
rasim Posted August 3, 2008 Share Posted August 3, 2008 (edited) Hi, How can i block the taskmanager or Ctrl alt del? im working on a script that locks the computer if someone uses the mouse or keyboard. Many of u maybe think that i would make a "virus" of this, but no i wouldn't At school when we have lunch, people start screwing around with others pc's and im getting sick of having people deleting my music and other stuff :S Example: $hDll = DllOpen("WinLockDll.dll") DllCall ($hDll, "int", "CtrlAltDel_Enable_Disable", "int", 0) MsgBox(48, "Message", "Ctrl+Alt+Del Disabled," & @CRLF & "Press OK for enable") DllCall ($hDll, "int", "CtrlAltDel_Enable_Disable", "int", 1) More infoWinLockDll.zip Edited August 3, 2008 by rasim Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now