View Single Post
  #2 (permalink)  
Old 02-04-2009, 03:28 PM
ronster76 ronster76 is offline
BES Activated
 
Join Date: Feb 2009
Location: Houston, TX
Posts: 4
Default

You can use the following SQL script to return the names of the users who have VZNavigator installed.

Code:
SELECT     U.DisplayName
FROM         UserConfig U INNER JOIN
                      SyncDeviceMgmt S ON U.Id = S.UserConfigId
WHERE     (S.ModuleName = 'VZNavigator')
Reply With Quote