This simple SQL query will return the MOM Server user names and the time stamp when the account(s) was created.
SQL Query:
Select
Name 'User Name',
Convert(VarChar(30), TimeAdded, 109) 'Account Created'
From [User]
Where Name <> 'N/A'
Order By 'User Name'
No Comments