Hello everyone,
I just want to confirm how to handle assigning accounts to employees that are purposely disabled. If they are disabled, I would need for them to stay disabled upon assignment. I put the case statement together for this:
IfNotCBool(Variables("FULLSYNC")) Then
SelectCase($ManageLevel:Int$)
Case3: 'XYZ Domain
'If already disabled, leave disabled
If$AccountDisabled:Bool$ AndAlso $AccountDisabled[o]:Bool$Then
Value = True
Else
Value = False
EndIf
I just want to confirm whether or not this is correct. Last time, accounts that were assigned to employees became enabled...and I would like to prevent this from happening in the live environment. Thank you!
Kenny