Client Management Suite

 View Only

SQL Query Report to Display Outlook Profiles Information on a Given Machine 

Dec 03, 2008 12:25 PM

The following are the SQL query based reports to fetch Outlook Profiles information from Altiris Inventory based on machine name.

--------------------------------------------------------Query 1:

SELECT [Profile],[Default Profile],[Exchange Display Name] as [Name],[Office Telephone] as [Telephone],[Custom Attribute 2] as [Site Code]
FROM [Inv_AeX_EU_Contact_Detail] AEC
JOIN [Inv_Aex_AC_Identification] ACI ON ACI.[_ResourceGuid] = AEC.[_ResourceGuid]
WHERE ACI.[Name] = 'Enter Machine name here'
--------------------------------------------------------Query 2:

SELECT [Profile],[Item],[Source],[Service]
FROM [Inv_Mon_Eu_Mail_Profile] AEM
JOIN [Inv_Aex_AC_Identification] ACI ON ACI.[_ResourceGuid] = AEM.[_ResourceGuid]
WHERE ACI.[Name] = 'Enter machine name here'

--------------------------------------------------------
If don't know the machine name and you know the user name, here the query to get machine name based on user name:

SELECT DISTINCT(vComputer.[Name]) AS 'Machine Name', PU.[User], ACI.[Domain] AS 'Domain'      
FROM vComputer        
INNER JOIN inv_aex_ac_primary_user PU ON PU._ResourceGuid = vComputer.Guid        
JOIN [Inv_AeX_AC_Identification] ACI ON ACI.[_ResourceGuid] = vComputer.Guid   
JOIN [Inv_Mon_SM_Machine_Locale] OU ON OU.[_ResourceGuid] = ACI.[_ResourceGuid]   
JOIN [Inv_Global_Active_Directory_Details] AD ON AD.[_ResourceGuid] = ACI.[_ResourceGuid]    
JOIN Inv_AeX_AC_TCPIP IP    
ON IP._ResourceGuid = ACI._ResourceGuid   
WHERE PU.[Month] = datename(month, getdate())   
AND UPPER(PU.[User]) IN ('Enter user name here') 
ORDER BY PU.[User]
--------------------------------------------------------

See below image for sample report result:

License:AJSL
By clicking the download link below, you agree to the terms and conditions in the Altiris Juice Software License
Support:User-contributed tools on the Juice are not supported by Altiris Technical Support. If you have questions about a tool, please communicate directly with the author by visiting their profile page and clicking the 'contact' tab.

Statistics
0 Favorited
0 Views
2 Files
0 Shares
0 Downloads
Attachment(s)
jpg file
6435.jpg   3 KB   1 version
Uploaded - Feb 25, 2020
txt file
Outlook_Profiles.txt   1 KB   1 version
Uploaded - Feb 25, 2020

Tags and Keywords

Related Entries and Links

No Related Resource entered.