Quest Migration Manager – Query Switched Mailboxes
Quest migration Manager – SQL Query to ascertain current nuber of ‘switched’ user accounts. Simply replace the ‘#QMM_DB_NAME#’ with the name of the SQL database your QuestMigration tools are using.
USE #QMM_DB_NAME#
GO
SELECT [DISPLAYNAME], [ADSPATH], [STATUS]
FROM MEMBERSOFCOLLECTION
WHERE (STATUS = ‘1’)
ORDER BY [DISPLAYNAME]