You don't like the formatting? Check out SourceCoder then!
Comments:
2006-05-07, 05:55:17
chandrans_paris@yahoo.com from France
i want to know how to disable CTRL-ATL-DEL
waiting for your reply
kind regards,
chandran
2006-06-20, 18:57:30
ncaparas@yahoo.com from Philippines
i want to know how to disable CTRL-ATL-DEL in Win2k / WinXP?
i found a shareware component called dWinLock. the component can disable it and other winkey combination even the 'winkey' on the keyboard. the problem is its a shareware
waiting for you kind reply
thanks in advance
norman
2006-06-20, 19:25:51
anonymus from Philippines
Sorry wrong click....
2007-04-11, 03:49:30
anonymous from Germany
disable CTRL-ATL-DEL in Win2k / WinXP:
uses
registry;
Procedure TaskManager(Const status:Boolean);
var
Reg: TRegistry;
begin
Reg := TRegistry.Create;
try
Reg.RootKey := HKEY_CURRENT_USER;
if
. OpenKey('\Software\Microsoft\Windows\CurrentVersion\Policiesies\System',True)
then
Reg.WriteInteger('DisableTaskMgr',Integer(Status));
finally
Reg.CloseKey;
Reg.Free;
end;
end;