Sample
Scripts

Restricting
Logon to a Particular workstation(s) and group of users.
if @wksta = "kioskcomp"
if ingroup("kioskusers") goto kioskend
endif
messagebox("You are Not permitted to logon to this workstation. This
workstation must be restarted. Click OK ->
ctrl+alt+delete -> Shutdown.","User Logon Not Permitted",16)
$ret=shutdown("","shutdown",3,1,1)
endif
:kioskend