We chose to setup two custom scans, and have a simple report to view the results
Scans (for 32 and 64 bit installs):%windir%\System32\CCM\CcmExec.exe
%windir%\SysWOW64\CCM\CcmExec.exe
Report (includes servers and workstations):Select Top 1000000 tblAssets.AssetID,
tsysOS.Image As icon,
tblAssets.AssetUnique,
tblAssets.Username,
tblAssets.IPAddress,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblFileVersions.FilePathfull,
tblFileVersions.FileVersion,
tblADComputers.OU
From tblAssets
Inner Join tblFileVersions On tblAssets.AssetID = tblFileVersions.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblADComputers On tblAssets.AssetID = tblADComputers.AssetID
Where tblFileVersions.FilePathfull Like '%CcmExec.exe' And
tblFileVersions.Found = 'True' And tblAssetCustom.State = 1
Order By tblAssets.AssetUnique,
tblFileVersions.FilePathfull