Hello,
I'm trying to make an inventory to determine the number of PC which are using a mailbox with Outlook. I have a device collection about Outlook installed PCs but I'd like to determine how much of them are using a mailbox account.
My idea was to create a query based device collection to check if ost files exist on each Outlook equiped computer. Unfortunately, the ost files are stored in c:\Users\%username%\appdata\local\microsoft\Outlook folder, it seems that SCCM cannot query the %username%appdata folder. Can you please confirm me that there are problems for making requests in this folder ?
If there's no solution to make this query based device collection, does anyone have an alternative to create a listing of active mail for Outllok equiped PCs ?
If it can help, I give you the query that I created therefore :
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SoftwareFile on SMS_G_System_SoftwareFile.ResourceID = SMS_R_System.ResourceId where SMS_G_System_SoftwareFile.FileName like "%.ost" and SMS_G_System_SoftwareFile.FilePath like "C:\\Users%Appdata\\Local\\Microsoft\\Outlook\\"
Thanks for your answers