Originally Posted By: apronk
Hmmm, I know kix doesn't support True and False statements, but this seems to work for me as well:
 Code:
$usr.AccountDisabled = False

It works by accident of the way that the interpreter deals with unknowns, so don't rely on it.

KiXtart supports the right types for TRUE / FALSE, so you just need to declare them:
 Code:
Global $TRUE   $TRUE=Not 0
Global $FALSE  $FALSE=Not $TRUE
...
$usr.AccountDisabled = $FALSE