View Single Post
  #11 (permalink)  
Old 08-02-2010, 10:12 PM
Burnsie Burnsie is offline
BES Activated
 
Join Date: Feb 2009
Location: Sydney, Australia
Posts: 5
Default

I use the following SQL query on the besmgmt database to get a list of all applications installed, ordered by user.

Quote:
SELECT U.DisplayName, U.MailboxSMTPAddr, S.ModuleName, S.ModuleVersion
FROM UserConfig U INNER JOIN
SyncDeviceMgmt S ON U.Id = S.UserConfigId
WHERE S.ModuleName NOT LIKE 'net_rim_%'
ORDER BY U.DisplayName
Reply With Quote