You might want to look into seeing if there is a DLL that will remove the [X] from the top right of the screen, and use an alias like..

Code:
alias exit {
  if ($input(User Input:,e,Type in your password.) && $! === $readini(test.ini,exit,password)) { 
    ;do stuff 
    ;exit
  }
  else { ;exit }
}


And to set a password /writeini test.ini exit password <Some Pass> it is also case sensitive. It seems to work find but again thats only if they type /exit, not including the clicking of the [X] as I mentioned earlier.

-Andy