Forum
Merhaba Arkadaşlar;
SCCM 2007 içinde Office 2003 SP3 yüklü olan bilgisayarların sorgusunu nasıl çekerim ?
Merhaba
" Computers with a specific product name and version " rapor template ini kullanabilirsiniz.
Microsoft Office 2003 yüklü olan bilgisayarları çekebildim.Burada service pack 3 lü olanları nasıl çekerim veya product versionlarından nasıl çekebilirim böyle bir syntax var mı?
Merhaba,
Hızlıca bir örnek oluşturmaya çalıştım. Umarım işinize yarar veya örnek olur.
Queries'den New > Query diyerek deneyebilirsiniz.
select SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName, SMS_R_System.NetbiosName from SMS_R_System inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "%office 2003%SP3%" group by SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName, SMS_R_System.NetbiosName
Kolay gelsin.
Merhaba,
Alternatif olarak kullanabileceğin query ise;Ama burada şirket içinde kullandığın office versiyon ve servis paketinin sürüm numarasına yinede kontrol etmelisiniz.
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 = "outlook.exe"
and SMS_G_System_SoftwareFile.FileVersion >= "11.0.8173.0"
Saygılar,