I need a solution
Hello All!
I've written a simple database query which allows me to quickly obtain a list of SEP Console users or search for a specific user account but I've noticed that when a user is created in the SEP console they are not added to the database (SQL) until they actually log into the console (when Active Directory Authentication is being used).
Seeing as the list of users displayed in the application doesn't match what's stored in the AdminUser table I was wondering if someone might be able to point me to the file, registry entry or table that I'm obviously overlooking. :)
Database Queries:
SELECT COUNT(user_id) FROM AdminUser WHERE user_name = '%UserLoginId%'
SELECT user_id FROM AdminUser
Many thanks!