Hi All,

I am trying to use kixtart to force users to accept an acceptable use policy at logon. I am able to bring up the message box and if they say no they are logged off. Problem is that if they just do not answer it they can still use the computer.

How can I make it so they have to answer before they can do anything else on the PC.

Here is what I have now:

$Selection = MessageBox("You must agree or you cannot use this computer. Do you agree?", "Acceptable Use Policy", 4372)

IF $Selection = 7
BEEP
SLEEP 1
Logoff(1)
Exit
ENDIF


Thanks for any help