I'm not sure if a connected Windows client could actually do this. In any case, on Red Hat family distros, to disable Ctrl + Alt + Delete reboots change the following in /etc/inittab:
Code:
# Trap CTRL-ALT-DELETE
ca::ctrlaltdel:/sbin/shutdown -t3 -r now
to:
Code:
# Trap CTRL-ALT-DELETE
#ca::ctrlaltdel:/sbin/shutdown -t3 -r now
(There are probably more elegant ways to accomplish this, but IIRC that should do it.)