Answered by:
How can i find who has CRM for Outlook installed?

Question
-
Hi All,
We are about to deploy CRM for Outlook through out the whole company. But there are already some users who have CRM for Outlook installed. I would like to know if CRM stores anything in the database to show which users have got CRM for Outlook installed and if so which type of installtion (e.g. with or without Offline access).
Any help is much appreciated!
Thanks! :-)
Friday, April 16, 2010 8:22 AM
Answers
-
try this
select systemuserid,MachineName from subscription
SJ- Marked as answer by bshah1985 Monday, April 19, 2010 9:03 AM
Saturday, April 17, 2010 10:09 PM
All replies
-
I'm not aware of any such thing that will prompt you about CRM client installations or centralized management of CRM client for Outlook. I guess the way is one PC at a time.
Best Regards,
Gagandeep Singh
http://mscrmnovice.blogspot.comSaturday, April 17, 2010 9:01 PM -
try this
select systemuserid,MachineName from subscription
SJ- Marked as answer by bshah1985 Monday, April 19, 2010 9:03 AM
Saturday, April 17, 2010 10:09 PM -
Too difficult to figure out !
Monday, April 19, 2010 5:14 AM -
Hi Sean,
Thanks for that - i think it has worked - it's produced me a list which kinda seems right!
Thanks again to all for the help! :-)
Monday, April 19, 2010 9:04 AM -
this query may help you better.
select Subscription.MachineName ,systemuserbase.FirstName,systemuserbase.LastName ,systemuserbase.FullName from Subscription , systemuserbase where
Subscription.SystemUserId = systemuserbase.SystemUserId
order by firstname
SJTuesday, April 20, 2010 12:43 PM