Howard, it also seems that the "No Mailboxes Found" part of your ADOQueryAssocNTAccount function isn't working properly. If I query an NT account without a mailbox it still runs the GetMailBoxProperties function. This returns a "Script Error : unknown command !" error.

I think if you check the value of the property for a nul value you can get around this (in the GetMailBoxProperties function):

code:
if $objMailBox.get("rdn") <> ""
? "You have a mailbox"
else
? "You don't have a mailbox"
endif